Sign in
chromium
/
external
/
github.com
/
protocolbuffers
/
protobuf-javascript
/
refs/heads/main
/
.
/
protoc_plugin
/
cli.js
blob: 004ec8e2ffe42ac7086ae0e526e40d8705ec3f96 [
file
] [
log
] [
blame
] [
edit
]
#!
/usr/
bin
/
env node
const
child_process
=
require
(
"child_process"
);
const
PLUGIN
=
require
(
"./"
);
child_process
.
spawn
(
PLUGIN
,
process
.
argv
.
slice
(
2
),
{
stdio
:
"inherit"
})
.
on
(
"exit"
,
(
code
)
=>
process
.
exit
(
code
));