Files

10 lines
256 B
JavaScript
Executable File

#!/usr/bin/env node
const {ProtobuftsPlugin} = require("../build/protobufts-plugin");
const pkg = require("../package.json");
new ProtobuftsPlugin(pkg.version).run().catch(_ => {
process.stderr.write('failed to run plugin');
process.exit(1);
});