actions/github/codeql-action-v2/node_modules/@protobuf-ts/plugin/bin/protoc-gen-ts

9 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);
});