Compare commits
33 Commits
Author | SHA1 | Date | |
---|---|---|---|
0f5e451e60 | |||
3595bf3590 | |||
efe73d0fd0 | |||
c52322ec12 | |||
b7cf9949bf | |||
beac49d5d2 | |||
25993bd66f | |||
83b324054a | |||
2c574fe015 | |||
3b50365ea9 | |||
e6f487eeee | |||
07c100ae44 | |||
55888cce89 | |||
d4c66af0d8 | |||
9359b5f7e9 | |||
87c0ec5728 | |||
aeb79f053f | |||
e01ecb9369 | |||
fd29434fa6 | |||
4684b9616c | |||
a2701bc3be | |||
425a86b33c | |||
20631eb0a8 | |||
27287d24fb | |||
1b2393c7ed | |||
330b0527c5 | |||
4485b5bfc6 | |||
cf6f636d3e | |||
37e726a45f | |||
0f0f2dd4ed | |||
9033eede2c | |||
e65e7da26b | |||
ef5c5eb2b8 |
3
dist/mod00/mod00.check.d.ts
vendored
3
dist/mod00/mod00.check.d.ts
vendored
@ -1,3 +1,4 @@
|
|||||||
import { ProjectinfoNpm } from 'projectinfo';
|
import { ProjectinfoNpm } from 'projectinfo';
|
||||||
|
import { INpmtsConfig } from '../npmts.config';
|
||||||
export declare let projectInfo: ProjectinfoNpm;
|
export declare let projectInfo: ProjectinfoNpm;
|
||||||
export declare let run: (configArg: any) => Promise<{}>;
|
export declare let run: (configArg: INpmtsConfig) => Promise<INpmtsConfig>;
|
||||||
|
32
dist/mod00/mod00.check.js
vendored
32
dist/mod00/mod00.check.js
vendored
@ -1,4 +1,12 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||||
|
return new (P || (P = Promise))(function (resolve, reject) {
|
||||||
|
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||||
|
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||||
|
function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); }
|
||||||
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||||
|
});
|
||||||
|
};
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const q = require("smartq");
|
const q = require("smartq");
|
||||||
const projectinfo_1 = require("projectinfo");
|
const projectinfo_1 = require("projectinfo");
|
||||||
@ -107,23 +115,17 @@ let checkNodeVersion = (configArg) => {
|
|||||||
done.resolve(configArg);
|
done.resolve(configArg);
|
||||||
return done.promise;
|
return done.promise;
|
||||||
};
|
};
|
||||||
exports.run = (configArg) => {
|
exports.run = (configArg) => __awaiter(this, void 0, void 0, function* () {
|
||||||
let done = q.defer();
|
|
||||||
plugins.beautylog.ora.text('Check Module: ...');
|
plugins.beautylog.ora.text('Check Module: ...');
|
||||||
// check cli
|
|
||||||
if (configArg.argv.nocheck) {
|
|
||||||
configArg.checkDependencies = false;
|
|
||||||
}
|
|
||||||
if (configArg.checkDependencies) {
|
if (configArg.checkDependencies) {
|
||||||
checkProjectTypings(configArg)
|
configArg = yield checkProjectTypings(configArg);
|
||||||
.then(checkDependencies)
|
configArg = yield checkDependencies(configArg);
|
||||||
.then(checkDevDependencies)
|
configArg = yield checkDevDependencies(configArg);
|
||||||
.then(checkNodeVersion)
|
configArg = yield checkNodeVersion(configArg);
|
||||||
.then(done.resolve)
|
return configArg;
|
||||||
.catch((err) => { console.log(err); });
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
done.resolve(configArg);
|
configArg = yield checkProjectTypings(configArg);
|
||||||
|
return configArg;
|
||||||
}
|
}
|
||||||
return done.promise;
|
});
|
||||||
};
|
|
||||||
|
10
dist/mod02/index.js
vendored
10
dist/mod02/index.js
vendored
@ -49,6 +49,14 @@ let tap = function (configArg) {
|
|||||||
*/
|
*/
|
||||||
let testFilesSmartstream = new plugins.smartstream.Smartstream([
|
let testFilesSmartstream = new plugins.smartstream.Smartstream([
|
||||||
plugins.smartgulp.src([plugins.path.join(paths.cwd, 'test/*.ts')]),
|
plugins.smartgulp.src([plugins.path.join(paths.cwd, 'test/*.ts')]),
|
||||||
|
plugins.gulpFunction.forEach((fileArg) => __awaiter(this, void 0, void 0, function* () {
|
||||||
|
let stringToModify = fileArg.contents.toString();
|
||||||
|
let testRegex = /\/\/\smodule\stestimport\nimport[a-zA-Z0-9\*\s]*\sfrom\s'(..\/ts\/index)'/;
|
||||||
|
let replacer = (match, group1, offset, completeString) => {
|
||||||
|
return match.replace(group1, '../dist/index');
|
||||||
|
};
|
||||||
|
fileArg.contents = Buffer.from(stringToModify.replace(testRegex, replacer));
|
||||||
|
})),
|
||||||
plugins.gulpSourcemaps.init(),
|
plugins.gulpSourcemaps.init(),
|
||||||
plugins.gulpTypeScript({
|
plugins.gulpTypeScript({
|
||||||
target: 'ES5',
|
target: 'ES5',
|
||||||
@ -110,7 +118,7 @@ exports.run = function (configArg) {
|
|||||||
plugins.beautylog.ora.text('now starting tests');
|
plugins.beautylog.ora.text('now starting tests');
|
||||||
plugins.beautylog.ora.end();
|
plugins.beautylog.ora.end();
|
||||||
plugins.beautylog.log('ready for tapbuffer:');
|
plugins.beautylog.log('ready for tapbuffer:');
|
||||||
if (configArg.coverage) {
|
if (configArg.testConfig.coverage) {
|
||||||
tap(config)
|
tap(config)
|
||||||
.then(handleCoverageData)
|
.then(handleCoverageData)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
|
4
dist/npmts.config.d.ts
vendored
4
dist/npmts.config.d.ts
vendored
@ -1,3 +1,4 @@
|
|||||||
|
import { ITapbufferConfig } from 'tapbuffer';
|
||||||
/**
|
/**
|
||||||
* specifies the different modes available
|
* specifies the different modes available
|
||||||
* default -> uses default options no matterm what
|
* default -> uses default options no matterm what
|
||||||
@ -7,13 +8,12 @@
|
|||||||
export declare type npmtsMode = 'default' | 'custom' | 'merge';
|
export declare type npmtsMode = 'default' | 'custom' | 'merge';
|
||||||
export interface INpmtsConfig {
|
export interface INpmtsConfig {
|
||||||
argv: any;
|
argv: any;
|
||||||
coverage: boolean;
|
|
||||||
coverageTreshold: number;
|
coverageTreshold: number;
|
||||||
checkDependencies: boolean;
|
checkDependencies: boolean;
|
||||||
mode: npmtsMode;
|
mode: npmtsMode;
|
||||||
test: boolean;
|
test: boolean;
|
||||||
testTs: any;
|
testTs: any;
|
||||||
testConfig: any;
|
testConfig: ITapbufferConfig;
|
||||||
ts: any;
|
ts: any;
|
||||||
tsOptions: any;
|
tsOptions: any;
|
||||||
watch: boolean;
|
watch: boolean;
|
||||||
|
6
dist/npmts.config.js
vendored
6
dist/npmts.config.js
vendored
@ -7,14 +7,14 @@ exports.run = function (argvArg) {
|
|||||||
let done = q.defer();
|
let done = q.defer();
|
||||||
let defaultConfig = {
|
let defaultConfig = {
|
||||||
argv: undefined,
|
argv: undefined,
|
||||||
coverage: true,
|
|
||||||
coverageTreshold: 70,
|
coverageTreshold: 70,
|
||||||
checkDependencies: true,
|
checkDependencies: true,
|
||||||
mode: 'default',
|
mode: 'default',
|
||||||
test: true,
|
test: true,
|
||||||
testTs: {},
|
testTs: {},
|
||||||
testConfig: {
|
testConfig: {
|
||||||
parallel: true
|
parallel: true,
|
||||||
|
coverage: true
|
||||||
},
|
},
|
||||||
ts: {},
|
ts: {},
|
||||||
tsOptions: {},
|
tsOptions: {},
|
||||||
@ -53,7 +53,7 @@ exports.run = function (argvArg) {
|
|||||||
config.test = false;
|
config.test = false;
|
||||||
}
|
}
|
||||||
if (config.argv.nocoverage) {
|
if (config.argv.nocoverage) {
|
||||||
config.coverage = false;
|
config.testConfig.coverage = false;
|
||||||
}
|
}
|
||||||
if (config.argv.nochecks) {
|
if (config.argv.nochecks) {
|
||||||
config.checkDependencies = false;
|
config.checkDependencies = false;
|
||||||
|
@ -39,11 +39,12 @@ with default behaviour.
|
|||||||
|
|
||||||
| key | default value | description |
|
| key | default value | description |
|
||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| `"mode"` | `"default"` | "default" will do default stuff and override , "custom" only does what you specify |
|
| `"mode"` | `"default"` | "default" will do default stuff and override , "custom" only does what you specify, "merge" will merge default options with whatever you specify on your own |
|
||||||
| `"test"` | `true` | test your module |
|
| `"test"` | `true` | test your module |
|
||||||
| `"ts"` | `{"./ts/*.ts":"./","./test/test.ts":"./test/"}` | allows you to define multiple ts portions |
|
| `"ts"` | `{"./ts/*.ts":"./","./test/test.ts":"./test/"}` | allows you to define multiple ts portions |
|
||||||
| `"tsOptions"` | `{"target":"ES5", "declaration":"true"}` | specify options for tsc |
|
| `"tsOptions"` | `{"target":"ES5", "declaration":"true"}` | specify options for tsc |
|
||||||
| `"cli"` | "false" | some modules are designed to be used from cli. If set to true NPMTS will create a cli.js that wires you dist files up for cli use. |
|
| `"cli"` | `"false"` | some modules are designed to be used from cli. If set to true NPMTS will create a cli.js that wires you dist files up for cli use. |
|
||||||
|
| `"testConfig"` | `{ parallel: true, coverage: true }` | allows you to control test behaviour. `"parallel"` controls wether testfiles are run sequentially or in parallel, and `"coverage` wether to create coverage reports |
|
||||||
|
|
||||||
### TypeScript
|
### TypeScript
|
||||||
by default npmts looks for `./ts/*.ts` and `./test/test.ts` that will compile to
|
by default npmts looks for `./ts/*.ts` and `./test/test.ts` that will compile to
|
||||||
|
2826
package-lock.json
generated
Normal file
2826
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
24
package.json
24
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "npmts",
|
"name": "npmts",
|
||||||
"version": "7.1.5",
|
"version": "7.2.10",
|
||||||
"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": {
|
||||||
@ -34,35 +34,35 @@
|
|||||||
},
|
},
|
||||||
"homepage": "https://gitlab.com/gitzone/npmts#readme",
|
"homepage": "https://gitlab.com/gitzone/npmts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/gulp-sourcemaps": "0.0.30",
|
"@types/gulp-sourcemaps": "0.0.31",
|
||||||
"@types/minimatch": "^2.0.29",
|
"@types/minimatch": "^2.0.29",
|
||||||
"@types/through2": "^2.0.33",
|
"@types/through2": "^2.0.33",
|
||||||
"beautylog": "6.1.10",
|
"beautylog": "^6.1.10",
|
||||||
"depcheck": "^0.6.7",
|
"depcheck": "^0.6.7",
|
||||||
"early": "^2.1.1",
|
"early": "^2.1.1",
|
||||||
"gulp-function": "^2.2.9",
|
"gulp-function": "^2.2.9",
|
||||||
"gulp-sourcemaps": "^2.6.0",
|
"gulp-sourcemaps": "^2.6.0",
|
||||||
"gulp-typescript": "^3.1.7",
|
"gulp-typescript": "^3.2.1",
|
||||||
"lodash": "^4.17.4",
|
"lodash": "^4.17.4",
|
||||||
"npmextra": "^2.0.5",
|
"npmextra": "^2.0.8",
|
||||||
"projectinfo": "^3.0.2",
|
"projectinfo": "^3.0.2",
|
||||||
"smartanalytics": "^1.0.6",
|
"smartanalytics": "^1.0.6",
|
||||||
"smartchok": "^1.0.8",
|
"smartchok": "^1.0.11",
|
||||||
"smartcli": "^2.0.7",
|
"smartcli": "^2.0.7",
|
||||||
"smartcov": "^1.0.2",
|
"smartcov": "^1.0.2",
|
||||||
"smarterror": "^1.0.3",
|
"smarterror": "^1.0.3",
|
||||||
"smartfile": "^4.2.17",
|
"smartfile": "^4.2.17",
|
||||||
"smartgulp": "^1.0.6",
|
"smartgulp": "^1.0.6",
|
||||||
"smartpath": "^3.2.8",
|
"smartpath": "^3.2.8",
|
||||||
"smartq": "^1.1.1",
|
"smartq": "^1.1.6",
|
||||||
"smartstream": "^1.0.8",
|
"smartstream": "^1.0.10",
|
||||||
"smartstring": "^2.0.24",
|
"smartstring": "^2.0.24",
|
||||||
"smartsystem": "^1.0.17",
|
"smartsystem": "^1.0.18",
|
||||||
"tapbuffer": "^1.0.14",
|
"tapbuffer": "^1.0.24",
|
||||||
"through2": "^2.0.3",
|
"through2": "^2.0.3",
|
||||||
"tsn": "^2.0.15",
|
"tsn": "^2.0.15",
|
||||||
"typescript": "^2.3.4",
|
"typescript": "^2.4.2",
|
||||||
"typings-global": "^1.0.17"
|
"typings-global": "^1.0.20"
|
||||||
},
|
},
|
||||||
"devDependencies": {}
|
"devDependencies": {}
|
||||||
}
|
}
|
||||||
|
@ -33,6 +33,8 @@ npmts will
|
|||||||
|
|
||||||
For more information on how tests are run check out the [tapbuffer module](https://www.npmjs.com/package/tapbuffer).
|
For more information on how tests are run check out the [tapbuffer module](https://www.npmjs.com/package/tapbuffer).
|
||||||
|
|
||||||
|
For more information about how to best write tap tests check out the [tapbundle module's linked docs](https://www.npmjs.com/package/tapbundle).
|
||||||
|
|
||||||
This works on your machine and in CI. There is a prebuild docker image available that includes npmts to make CI a breeze:
|
This works on your machine and in CI. There is a prebuild docker image available that includes npmts to make CI a breeze:
|
||||||
[hosttoday/ht-docker-node:npmts on Dockerhub](https://hub.docker.com/r/hosttoday/ht-docker-node/)
|
[hosttoday/ht-docker-node:npmts on Dockerhub](https://hub.docker.com/r/hosttoday/ht-docker-node/)
|
||||||
|
|
||||||
|
@ -1,14 +1,17 @@
|
|||||||
import * as q from 'smartq'
|
import * as q from 'smartq'
|
||||||
import { ProjectinfoNpm } from 'projectinfo'
|
import { ProjectinfoNpm } from 'projectinfo'
|
||||||
|
|
||||||
|
// interfaces
|
||||||
|
import { INpmtsConfig } from '../npmts.config'
|
||||||
|
|
||||||
import * as paths from '../npmts.paths'
|
import * as paths from '../npmts.paths'
|
||||||
|
|
||||||
import * as plugins from './mod00.plugins'
|
import * as plugins from './mod00.plugins'
|
||||||
|
|
||||||
export let projectInfo: ProjectinfoNpm
|
export let projectInfo: ProjectinfoNpm
|
||||||
|
|
||||||
let checkProjectTypings = (configArg) => {
|
let checkProjectTypings = (configArg: INpmtsConfig) => {
|
||||||
let done = q.defer()
|
let done = q.defer<INpmtsConfig>()
|
||||||
plugins.beautylog.ora.text('Check Module: Check Project Typings...')
|
plugins.beautylog.ora.text('Check Module: Check Project Typings...')
|
||||||
projectInfo = new ProjectinfoNpm(paths.cwd)
|
projectInfo = new ProjectinfoNpm(paths.cwd)
|
||||||
if (typeof projectInfo.packageJson.typings === 'undefined') {
|
if (typeof projectInfo.packageJson.typings === 'undefined') {
|
||||||
@ -34,8 +37,8 @@ const depcheckOptions = {
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
let checkDependencies = (configArg) => {
|
let checkDependencies = (configArg: INpmtsConfig) => {
|
||||||
let done = q.defer()
|
let done = q.defer<INpmtsConfig>()
|
||||||
plugins.beautylog.ora.text('Check Module: Check Dependencies...')
|
plugins.beautylog.ora.text('Check Module: Check Dependencies...')
|
||||||
let depcheckOptionsMerged = plugins.lodash.merge(depcheckOptions, {
|
let depcheckOptionsMerged = plugins.lodash.merge(depcheckOptions, {
|
||||||
ignoreDirs: [ // folder with these names will be ignored
|
ignoreDirs: [ // folder with these names will be ignored
|
||||||
@ -70,8 +73,8 @@ let checkDependencies = (configArg) => {
|
|||||||
return done.promise
|
return done.promise
|
||||||
}
|
}
|
||||||
|
|
||||||
let checkDevDependencies = (configArg) => {
|
let checkDevDependencies = (configArg: INpmtsConfig) => {
|
||||||
let done = q.defer()
|
let done = q.defer<INpmtsConfig>()
|
||||||
plugins.beautylog.ora.text('Check Module: Check devDependencies...')
|
plugins.beautylog.ora.text('Check Module: Check devDependencies...')
|
||||||
let depcheckOptionsMerged = plugins.lodash.merge(depcheckOptions, {
|
let depcheckOptionsMerged = plugins.lodash.merge(depcheckOptions, {
|
||||||
ignoreDirs: [ // folder with these names will be ignored
|
ignoreDirs: [ // folder with these names will be ignored
|
||||||
@ -106,31 +109,24 @@ let checkDevDependencies = (configArg) => {
|
|||||||
return done.promise
|
return done.promise
|
||||||
}
|
}
|
||||||
|
|
||||||
let checkNodeVersion = (configArg) => {
|
let checkNodeVersion = (configArg: INpmtsConfig) => {
|
||||||
let done = q.defer()
|
let done = q.defer<INpmtsConfig>()
|
||||||
plugins.beautylog.ora.text('checking node version')
|
plugins.beautylog.ora.text('checking node version')
|
||||||
done.resolve(configArg)
|
done.resolve(configArg)
|
||||||
return done.promise
|
return done.promise
|
||||||
}
|
}
|
||||||
|
|
||||||
export let run = (configArg) => {
|
export let run = async (configArg: INpmtsConfig) => {
|
||||||
let done = q.defer()
|
|
||||||
plugins.beautylog.ora.text('Check Module: ...')
|
plugins.beautylog.ora.text('Check Module: ...')
|
||||||
|
|
||||||
// check cli
|
|
||||||
if (configArg.argv.nocheck) {
|
|
||||||
configArg.checkDependencies = false
|
|
||||||
}
|
|
||||||
if (configArg.checkDependencies) {
|
if (configArg.checkDependencies) {
|
||||||
checkProjectTypings(configArg)
|
configArg = await checkProjectTypings(configArg)
|
||||||
.then(checkDependencies)
|
configArg = await checkDependencies(configArg)
|
||||||
.then(checkDevDependencies)
|
configArg = await checkDevDependencies(configArg)
|
||||||
.then(checkNodeVersion)
|
configArg = await checkNodeVersion(configArg)
|
||||||
.then(done.resolve)
|
return configArg
|
||||||
.catch((err) => { console.log(err) })
|
|
||||||
} else {
|
} else {
|
||||||
done.resolve(configArg)
|
configArg = await checkProjectTypings(configArg)
|
||||||
|
return configArg
|
||||||
}
|
}
|
||||||
|
|
||||||
return done.promise
|
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,9 @@ import paths = require('../npmts.paths')
|
|||||||
|
|
||||||
import * as q from 'smartq'
|
import * as q from 'smartq'
|
||||||
|
|
||||||
|
// interfaces
|
||||||
import { INpmtsConfig } from '../npmts.config'
|
import { INpmtsConfig } from '../npmts.config'
|
||||||
|
import { Smartfile } from 'smartfile'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* runs mocha
|
* runs mocha
|
||||||
@ -47,6 +49,14 @@ let tap = function (configArg: INpmtsConfig) {
|
|||||||
*/
|
*/
|
||||||
let testFilesSmartstream = new plugins.smartstream.Smartstream([
|
let testFilesSmartstream = new plugins.smartstream.Smartstream([
|
||||||
plugins.smartgulp.src([ plugins.path.join(paths.cwd, 'test/*.ts') ]),
|
plugins.smartgulp.src([ plugins.path.join(paths.cwd, 'test/*.ts') ]),
|
||||||
|
plugins.gulpFunction.forEach(async (fileArg: Smartfile) => {
|
||||||
|
let stringToModify = fileArg.contents.toString()
|
||||||
|
let testRegex = /\/\/\smodule\stestimport\nimport[a-zA-Z0-9\*\s]*\sfrom\s'(..\/ts\/index)'/
|
||||||
|
let replacer = (match: string, group1: string, offset: number, completeString: string) => {
|
||||||
|
return match.replace(group1, '../dist/index')
|
||||||
|
}
|
||||||
|
fileArg.contents = Buffer.from(stringToModify.replace(testRegex, replacer))
|
||||||
|
}),
|
||||||
plugins.gulpSourcemaps.init(),
|
plugins.gulpSourcemaps.init(),
|
||||||
plugins.gulpTypeScript({
|
plugins.gulpTypeScript({
|
||||||
target: 'ES5',
|
target: 'ES5',
|
||||||
@ -116,7 +126,7 @@ export let run = function (configArg: INpmtsConfig) {
|
|||||||
plugins.beautylog.ora.text('now starting tests')
|
plugins.beautylog.ora.text('now starting tests')
|
||||||
plugins.beautylog.ora.end()
|
plugins.beautylog.ora.end()
|
||||||
plugins.beautylog.log('ready for tapbuffer:')
|
plugins.beautylog.log('ready for tapbuffer:')
|
||||||
if (configArg.coverage) {
|
if (configArg.testConfig.coverage) {
|
||||||
tap(config)
|
tap(config)
|
||||||
.then(handleCoverageData)
|
.then(handleCoverageData)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
|
@ -3,6 +3,9 @@ import paths = require('./npmts.paths')
|
|||||||
|
|
||||||
import * as q from 'smartq'
|
import * as q from 'smartq'
|
||||||
|
|
||||||
|
// interfaces
|
||||||
|
import { ITapbufferConfig } from 'tapbuffer'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* specifies the different modes available
|
* specifies the different modes available
|
||||||
* default -> uses default options no matterm what
|
* default -> uses default options no matterm what
|
||||||
@ -13,13 +16,12 @@ export type npmtsMode = 'default' | 'custom' | 'merge'
|
|||||||
|
|
||||||
export interface INpmtsConfig {
|
export interface INpmtsConfig {
|
||||||
argv: any
|
argv: any
|
||||||
coverage: boolean
|
|
||||||
coverageTreshold: number
|
coverageTreshold: number
|
||||||
checkDependencies: boolean
|
checkDependencies: boolean
|
||||||
mode: npmtsMode
|
mode: npmtsMode
|
||||||
test: boolean
|
test: boolean
|
||||||
testTs: any
|
testTs: any
|
||||||
testConfig: any
|
testConfig: ITapbufferConfig
|
||||||
ts: any
|
ts: any
|
||||||
tsOptions: any
|
tsOptions: any
|
||||||
watch: boolean
|
watch: boolean
|
||||||
@ -33,14 +35,14 @@ export let run = function (argvArg) {
|
|||||||
let done = q.defer()
|
let done = q.defer()
|
||||||
let defaultConfig: INpmtsConfig = {
|
let defaultConfig: INpmtsConfig = {
|
||||||
argv: undefined,
|
argv: undefined,
|
||||||
coverage: true,
|
|
||||||
coverageTreshold: 70,
|
coverageTreshold: 70,
|
||||||
checkDependencies: true,
|
checkDependencies: true,
|
||||||
mode: 'default',
|
mode: 'default',
|
||||||
test: true,
|
test: true,
|
||||||
testTs: {},
|
testTs: {},
|
||||||
testConfig: {
|
testConfig: {
|
||||||
parallel: true
|
parallel: true,
|
||||||
|
coverage: true
|
||||||
},
|
},
|
||||||
ts: {},
|
ts: {},
|
||||||
tsOptions: {},
|
tsOptions: {},
|
||||||
@ -89,7 +91,7 @@ export let run = function (argvArg) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (config.argv.nocoverage) {
|
if (config.argv.nocoverage) {
|
||||||
config.coverage = false
|
config.testConfig.coverage = false
|
||||||
}
|
}
|
||||||
|
|
||||||
if (config.argv.nochecks) {
|
if (config.argv.nochecks) {
|
||||||
|
Reference in New Issue
Block a user