Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
da1ec0329f | |||
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) {
|
if (config.argv.notest) {
|
||||||
config.test = false;
|
config.test = false;
|
||||||
}
|
}
|
||||||
|
if (config.argv.nocoverage) {
|
||||||
|
config.coverage = false;
|
||||||
|
}
|
||||||
|
if (config.argv.nochecks) {
|
||||||
|
config.checkDependencies = false;
|
||||||
|
}
|
||||||
if (config.argv.watch) {
|
if (config.argv.watch) {
|
||||||
config.watch = true;
|
config.watch = true;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "npmts",
|
"name": "npmts",
|
||||||
"version": "7.1.3",
|
"version": "7.1.4",
|
||||||
"description": "Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.",
|
"description": "Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
@ -83,6 +83,15 @@ export let run = function (argvArg) {
|
|||||||
if (config.argv.notest) {
|
if (config.argv.notest) {
|
||||||
config.test = false
|
config.test = false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (config.argv.nocoverage) {
|
||||||
|
config.coverage = false
|
||||||
|
}
|
||||||
|
|
||||||
|
if (config.argv.nochecks) {
|
||||||
|
config.checkDependencies = false
|
||||||
|
}
|
||||||
|
|
||||||
if (config.argv.watch) {
|
if (config.argv.watch) {
|
||||||
config.watch = true
|
config.watch = true
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user