Files
Viper_VSCode/build/skipBootstrap.js
TermiNexus e9e4693333
Some checks failed
Run mypy_primer on push / Run mypy_primer on push (push) Has been cancelled
Validation / Typecheck (push) Has been cancelled
Validation / Style (push) Has been cancelled
Validation / Test macos-latest (push) Has been cancelled
Validation / Test ubuntu-latest (push) Has been cancelled
Validation / Test windows-latest (push) Has been cancelled
Validation / Build (push) Has been cancelled
Validation / Required (push) Has been cancelled
初始化上传
2026-07-24 17:08:39 +08:00

10 lines
372 B
JavaScript

// This script exits with a "failure" if this SKIP_LERNA_BOOTSTRAP is set.
// This can be used to write npm script like:
// node ./build/skipBootstrap.js || lerna bootstrap
// Which means "skip lerna bootstrap if SKIP_LERNA_BOOTSTRAP is set".
// This prevents spurious bootstraps in nested lerna repos.
if (!process.env.SKIP_LERNA_BOOTSTRAP) {
process.exit(1);
}