Sign in
◑
Theme
pigweed
/
third_party
/
github
/
aspect-build
/
rules_js
/
3d7e060cf200cc4893a13f490004e3fb4c2a51df
/
.
/
npm
/
private
/
npm_publish.mjs
blob: 13b8e8b253b1258408a50fcc42ed4a5b3e6a9646 [
file
]
import
{
spawnSync
}
from
'node:child_process'
const
restArgs
=
process
.
argv
.
slice
(
2
)
const
spawn
=
spawnSync
(
'npm'
,
[
'publish'
,
...
restArgs
],
{
stdio
:
'inherit'
,
})
process
.
exit
(
spawn
.
status
)