first commit
This commit is contained in:
11
node_modules/release-it/bin/release-it.js
generated
vendored
Executable file
11
node_modules/release-it/bin/release-it.js
generated
vendored
Executable file
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env node
|
||||
|
||||
import release from '../lib/cli.js';
|
||||
import { parseCliArguments } from '../lib/args.js';
|
||||
|
||||
const options = parseCliArguments([].slice.call(process.argv, 2));
|
||||
|
||||
release(options).then(
|
||||
() => process.exit(0),
|
||||
({ code }) => process.exit(Number.isInteger(code) ? code : 1)
|
||||
);
|
||||
Reference in New Issue
Block a user