add command line options --nochecks and --nocoverage
This commit is contained in:
parent
def19f76e9
commit
95e3f9cb10
6
dist/npmts.config.js
vendored
6
dist/npmts.config.js
vendored
@ -49,6 +49,12 @@ exports.run = function (argvArg) {
|
||||
if (config.argv.notest) {
|
||||
config.test = false;
|
||||
}
|
||||
if (config.argv.nocoverage) {
|
||||
config.coverage = false;
|
||||
}
|
||||
if (config.argv.nochecks) {
|
||||
config.checkDependencies = false;
|
||||
}
|
||||
if (config.argv.watch) {
|
||||
config.watch = true;
|
||||
}
|
||||
|
@ -83,6 +83,15 @@ export let run = function (argvArg) {
|
||||
if (config.argv.notest) {
|
||||
config.test = false
|
||||
}
|
||||
|
||||
if (config.argv.nocoverage) {
|
||||
config.coverage = false
|
||||
}
|
||||
|
||||
if (config.argv.nochecks) {
|
||||
config.checkDependencies = false
|
||||
}
|
||||
|
||||
if (config.argv.watch) {
|
||||
config.watch = true
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user