Compare commits
47 Commits
Author | SHA1 | Date | |
---|---|---|---|
22de2c784f | |||
e8fe4f1720 | |||
d7443bbf17 | |||
c4668bc0a6 | |||
bc489b6bf3 | |||
e2d0a7a939 | |||
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 | |||
ed156e6de8 | |||
d889a20572 | |||
da1ec0329f | |||
95e3f9cb10 | |||
def19f76e9 | |||
455c89d68d | |||
2bd187b704 | |||
29dff4c0e3 |
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>;
|
||||||
|
31
dist/mod00/mod00.check.js
vendored
31
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,14 +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: ...');
|
||||||
checkProjectTypings(configArg)
|
if (configArg.checkDependencies) {
|
||||||
.then(checkDependencies)
|
configArg = yield checkProjectTypings(configArg);
|
||||||
.then(checkDevDependencies)
|
configArg = yield checkDependencies(configArg);
|
||||||
.then(checkNodeVersion)
|
configArg = yield checkDevDependencies(configArg);
|
||||||
.then(done.resolve)
|
configArg = yield checkNodeVersion(configArg);
|
||||||
.catch((err) => { console.log(err); });
|
return configArg;
|
||||||
return done.promise;
|
}
|
||||||
};
|
else {
|
||||||
|
configArg = yield checkProjectTypings(configArg);
|
||||||
|
return configArg;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
22
dist/mod02/index.js
vendored
22
dist/mod02/index.js
vendored
@ -24,6 +24,7 @@ let tap = function (configArg) {
|
|||||||
* the TabBuffer for npmts
|
* the TabBuffer for npmts
|
||||||
*/
|
*/
|
||||||
let npmtsTapBuffer = new plugins.tapbuffer.TabBuffer();
|
let npmtsTapBuffer = new plugins.tapbuffer.TabBuffer();
|
||||||
|
npmtsTapBuffer.setConfig(configArg.testConfig);
|
||||||
/**
|
/**
|
||||||
* handle the testable files
|
* handle the testable files
|
||||||
*/
|
*/
|
||||||
@ -36,9 +37,6 @@ let tap = function (configArg) {
|
|||||||
experimentalDecorators: true,
|
experimentalDecorators: true,
|
||||||
lib: ['DOM', 'ES5', 'ES2015.Promise', 'ES2015.Generator', 'ES2015.Iterable']
|
lib: ['DOM', 'ES5', 'ES2015.Promise', 'ES2015.Generator', 'ES2015.Iterable']
|
||||||
}),
|
}),
|
||||||
plugins.gulpFunction.forEach((file) => __awaiter(this, void 0, void 0, function* () {
|
|
||||||
file.path = file.path.replace(paths.tsDir, paths.distDir);
|
|
||||||
})),
|
|
||||||
plugins.gulpSourcemaps.write(),
|
plugins.gulpSourcemaps.write(),
|
||||||
npmtsTapBuffer.pipeTestableFiles(),
|
npmtsTapBuffer.pipeTestableFiles(),
|
||||||
plugins.smartstream.cleanPipe()
|
plugins.smartstream.cleanPipe()
|
||||||
@ -109,11 +107,19 @@ 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:');
|
||||||
tap(config)
|
if (configArg.testConfig.coverage) {
|
||||||
.then(handleCoverageData)
|
tap(config)
|
||||||
.then(() => {
|
.then(handleCoverageData)
|
||||||
done.resolve(config);
|
.then(() => {
|
||||||
}).catch(err => { console.log(err); });
|
done.resolve(config);
|
||||||
|
}).catch(err => { console.log(err); });
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
tap(config)
|
||||||
|
.then(() => {
|
||||||
|
done.resolve(config);
|
||||||
|
}).catch(err => { console.log(err); });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
plugins.beautylog.ora.end();
|
plugins.beautylog.ora.end();
|
||||||
|
11
dist/npmts.config.d.ts
vendored
11
dist/npmts.config.d.ts
vendored
@ -1,10 +1,19 @@
|
|||||||
export declare type npmtsMode = 'default' | 'custom';
|
import { ITapbufferConfig } from 'tapbuffer';
|
||||||
|
/**
|
||||||
|
* specifies the different modes available
|
||||||
|
* default -> uses default options no matterm what
|
||||||
|
* merge -> uses merged default + custom options
|
||||||
|
* custom -> only uses specified options
|
||||||
|
*/
|
||||||
|
export declare type npmtsMode = 'default' | 'custom' | 'merge';
|
||||||
export interface INpmtsConfig {
|
export interface INpmtsConfig {
|
||||||
argv: any;
|
argv: any;
|
||||||
coverageTreshold: number;
|
coverageTreshold: number;
|
||||||
|
checkDependencies: boolean;
|
||||||
mode: npmtsMode;
|
mode: npmtsMode;
|
||||||
test: boolean;
|
test: boolean;
|
||||||
testTs: any;
|
testTs: any;
|
||||||
|
testConfig: ITapbufferConfig;
|
||||||
ts: any;
|
ts: any;
|
||||||
tsOptions: any;
|
tsOptions: any;
|
||||||
watch: boolean;
|
watch: boolean;
|
||||||
|
21
dist/npmts.config.js
vendored
21
dist/npmts.config.js
vendored
@ -3,15 +3,19 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|||||||
const plugins = require("./npmts.plugins");
|
const plugins = require("./npmts.plugins");
|
||||||
const paths = require("./npmts.paths");
|
const paths = require("./npmts.paths");
|
||||||
const q = require("smartq");
|
const q = require("smartq");
|
||||||
;
|
|
||||||
exports.run = function (argvArg) {
|
exports.run = function (argvArg) {
|
||||||
let done = q.defer();
|
let done = q.defer();
|
||||||
let defaultConfig = {
|
let defaultConfig = {
|
||||||
argv: undefined,
|
argv: undefined,
|
||||||
coverageTreshold: 70,
|
coverageTreshold: 70,
|
||||||
|
checkDependencies: true,
|
||||||
mode: 'default',
|
mode: 'default',
|
||||||
test: true,
|
test: true,
|
||||||
testTs: {},
|
testTs: {},
|
||||||
|
testConfig: {
|
||||||
|
parallel: true,
|
||||||
|
coverage: true
|
||||||
|
},
|
||||||
ts: {},
|
ts: {},
|
||||||
tsOptions: {},
|
tsOptions: {},
|
||||||
watch: false,
|
watch: false,
|
||||||
@ -27,16 +31,16 @@ exports.run = function (argvArg) {
|
|||||||
switch (config.mode) {
|
switch (config.mode) {
|
||||||
case 'default':
|
case 'default':
|
||||||
case 'custom':
|
case 'custom':
|
||||||
|
case 'merge':
|
||||||
plugins.beautylog.ok('mode is ' + config.mode);
|
plugins.beautylog.ok('mode is ' + config.mode);
|
||||||
done.resolve(config);
|
done.resolve(config);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
plugins.beautylog.error(`mode not recognised!`);
|
plugins.beautylog.error(`mode not recognised! Can be default or custom`);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
}
|
}
|
||||||
;
|
|
||||||
// handle default mode
|
// handle default mode
|
||||||
if (config.mode === 'default') {
|
if (config.mode === 'default' || config.mode === 'merge') {
|
||||||
config.ts = {
|
config.ts = {
|
||||||
'./ts/**/*.ts': './dist/'
|
'./ts/**/*.ts': './dist/'
|
||||||
};
|
};
|
||||||
@ -44,16 +48,19 @@ exports.run = function (argvArg) {
|
|||||||
'./test/**/*.ts': './test/'
|
'./test/**/*.ts': './test/'
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
;
|
|
||||||
// mix with commandline
|
// mix with commandline
|
||||||
if (config.argv.notest) {
|
if (config.argv.notest) {
|
||||||
config.test = false;
|
config.test = false;
|
||||||
}
|
}
|
||||||
;
|
if (config.argv.nocoverage) {
|
||||||
|
config.testConfig.coverage = false;
|
||||||
|
}
|
||||||
|
if (config.argv.nochecks) {
|
||||||
|
config.checkDependencies = false;
|
||||||
|
}
|
||||||
if (config.argv.watch) {
|
if (config.argv.watch) {
|
||||||
config.watch = true;
|
config.watch = true;
|
||||||
}
|
}
|
||||||
;
|
|
||||||
plugins.beautylog.ok('build options are ready!');
|
plugins.beautylog.ok('build options are ready!');
|
||||||
done.resolve(config);
|
done.resolve(config);
|
||||||
return done.promise;
|
return done.promise;
|
||||||
|
9
docs/changelog.md
Normal file
9
docs/changelog.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
## 2017-07-30: Version 7.x.x -> 8.x.x
|
||||||
|
Testfiles in ./test/ can now import files directly from the ts dir:
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
// ./test/test.ts
|
||||||
|
import * as myModule from '../ts/index
|
||||||
|
```
|
@ -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
|
||||||
|
38
docs/getstarted.md
Normal file
38
docs/getstarted.md
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
---
|
||||||
|
name: Get Started
|
||||||
|
description: learn how to quickly write npm TypeScript modules
|
||||||
|
---
|
||||||
|
# Get Started with NPMTS
|
||||||
|
and learn how to quickly write npm TypeScript modules
|
||||||
|
|
||||||
|
## Step1: Install the tools
|
||||||
|
|
||||||
|
To use npmts install it using npm or yarn:
|
||||||
|
|
||||||
|
```shell
|
||||||
|
npm install -g npmts # install with npm
|
||||||
|
yarn global add npmts # install with yarn
|
||||||
|
```
|
||||||
|
|
||||||
|
For the puspose of getting started quickly also install **gitzone**.
|
||||||
|
It'll proovide awesome scaffolding for new npmts npm modules and also updates them later on.
|
||||||
|
|
||||||
|
```shell
|
||||||
|
npm install -g gitzone # install with npm
|
||||||
|
yarn global add gitzone # install with yarn
|
||||||
|
```
|
||||||
|
|
||||||
|
You can make sure npmts and gitzone are installed correctly by typing `npmts -v && gitzone -v`.
|
||||||
|
|
||||||
|
## Scaffold a new module
|
||||||
|
|
||||||
|
To scaffold a new module type
|
||||||
|
|
||||||
|
```shell
|
||||||
|
gitzone template npm
|
||||||
|
```
|
||||||
|
|
||||||
|
This will run you through a series of question to get gitzone to know the specifics of your module.
|
||||||
|
Enter all information accordingly.
|
||||||
|
|
||||||
|
## Run NPMTS for the first time
|
@ -1,8 +1,9 @@
|
|||||||
---
|
---
|
||||||
name: Start
|
name: Index
|
||||||
|
description: best practice npm TypeScript modules
|
||||||
---
|
---
|
||||||
# npmts
|
# npmts
|
||||||
Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.
|
best practice npm TypeScript modules
|
||||||
|
|
||||||
## Availabililty
|
## Availabililty
|
||||||
[](https://www.npmjs.com/package/npmts)
|
[](https://www.npmjs.com/package/npmts)
|
||||||
|
4911
package-lock.json
generated
Normal file
4911
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
26
package.json
26
package.json
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "npmts",
|
"name": "npmts",
|
||||||
"version": "7.1.2",
|
"version": "8.0.2",
|
||||||
"description": "Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.",
|
"description": "best practice npm TypeScript modules",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
"npmts": "assets/cliNpmts.js"
|
"npmts": "assets/cliNpmts.js"
|
||||||
@ -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.13",
|
"tapbuffer": "^1.0.29",
|
||||||
"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.16"
|
"typings-global": "^1.0.20"
|
||||||
},
|
},
|
||||||
"devDependencies": {}
|
"devDependencies": {}
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# npmts
|
# npmts
|
||||||
Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.
|
best practice npm TypeScript modules
|
||||||
|
|
||||||
## Availabililty
|
## Availabililty
|
||||||
[](https://www.npmjs.com/package/npmts)
|
[](https://www.npmjs.com/package/npmts)
|
||||||
@ -33,9 +33,14 @@ 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/)
|
||||||
|
|
||||||
|
## Changelog
|
||||||
|
For breaking changes please see the [changelog](https://gitzone.gitlab.io/npmts/changelog.html).
|
||||||
|
|
||||||
For further information read the linked docs at the top of this README.
|
For further information read the linked docs at the top of this README.
|
||||||
|
|
||||||
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||||
|
@ -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,21 +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: ...')
|
||||||
checkProjectTypings(configArg)
|
|
||||||
.then(checkDependencies)
|
if (configArg.checkDependencies) {
|
||||||
.then(checkDevDependencies)
|
configArg = await checkProjectTypings(configArg)
|
||||||
.then(checkNodeVersion)
|
configArg = await checkDependencies(configArg)
|
||||||
.then(done.resolve)
|
configArg = await checkDevDependencies(configArg)
|
||||||
.catch((err) => { console.log(err) })
|
configArg = await checkNodeVersion(configArg)
|
||||||
return done.promise
|
return configArg
|
||||||
|
} else {
|
||||||
|
configArg = await checkProjectTypings(configArg)
|
||||||
|
return configArg
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -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
|
||||||
@ -20,6 +22,8 @@ let tap = function (configArg: INpmtsConfig) {
|
|||||||
*/
|
*/
|
||||||
let npmtsTapBuffer = new plugins.tapbuffer.TabBuffer()
|
let npmtsTapBuffer = new plugins.tapbuffer.TabBuffer()
|
||||||
|
|
||||||
|
npmtsTapBuffer.setConfig(configArg.testConfig)
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* handle the testable files
|
* handle the testable files
|
||||||
*/
|
*/
|
||||||
@ -32,9 +36,6 @@ let tap = function (configArg: INpmtsConfig) {
|
|||||||
experimentalDecorators: true,
|
experimentalDecorators: true,
|
||||||
lib: [ 'DOM', 'ES5', 'ES2015.Promise', 'ES2015.Generator', 'ES2015.Iterable' ]
|
lib: [ 'DOM', 'ES5', 'ES2015.Promise', 'ES2015.Generator', 'ES2015.Iterable' ]
|
||||||
}),
|
}),
|
||||||
plugins.gulpFunction.forEach(async file => {
|
|
||||||
file.path = file.path.replace(paths.tsDir, paths.distDir)
|
|
||||||
}),
|
|
||||||
plugins.gulpSourcemaps.write(),
|
plugins.gulpSourcemaps.write(),
|
||||||
npmtsTapBuffer.pipeTestableFiles(),
|
npmtsTapBuffer.pipeTestableFiles(),
|
||||||
plugins.smartstream.cleanPipe()
|
plugins.smartstream.cleanPipe()
|
||||||
@ -114,12 +115,19 @@ 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.testConfig.coverage) {
|
||||||
|
tap(config)
|
||||||
|
.then(handleCoverageData)
|
||||||
|
.then(() => {
|
||||||
|
done.resolve(config)
|
||||||
|
}).catch(err => { console.log(err) })
|
||||||
|
} else {
|
||||||
|
tap(config)
|
||||||
|
.then(() => {
|
||||||
|
done.resolve(config)
|
||||||
|
}).catch(err => { console.log(err) })
|
||||||
|
}
|
||||||
|
|
||||||
tap(config)
|
|
||||||
.then(handleCoverageData)
|
|
||||||
.then(() => {
|
|
||||||
done.resolve(config)
|
|
||||||
}).catch(err => { console.log(err) })
|
|
||||||
} else {
|
} else {
|
||||||
plugins.beautylog.ora.end()
|
plugins.beautylog.ora.end()
|
||||||
done.resolve(config)
|
done.resolve(config)
|
||||||
|
@ -3,31 +3,47 @@ import paths = require('./npmts.paths')
|
|||||||
|
|
||||||
import * as q from 'smartq'
|
import * as q from 'smartq'
|
||||||
|
|
||||||
export type npmtsMode = 'default' | 'custom'
|
// interfaces
|
||||||
|
import { ITapbufferConfig } from 'tapbuffer'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* specifies the different modes available
|
||||||
|
* default -> uses default options no matterm what
|
||||||
|
* merge -> uses merged default + custom options
|
||||||
|
* custom -> only uses specified options
|
||||||
|
*/
|
||||||
|
export type npmtsMode = 'default' | 'custom' | 'merge'
|
||||||
|
|
||||||
export interface INpmtsConfig {
|
export interface INpmtsConfig {
|
||||||
argv: any,
|
argv: any
|
||||||
coverageTreshold: number,
|
coverageTreshold: number
|
||||||
mode: npmtsMode,
|
checkDependencies: boolean
|
||||||
test: boolean,
|
mode: npmtsMode
|
||||||
testTs: any,
|
test: boolean
|
||||||
ts: any,
|
testTs: any
|
||||||
tsOptions: any,
|
testConfig: ITapbufferConfig
|
||||||
|
ts: any
|
||||||
|
tsOptions: any
|
||||||
watch: boolean
|
watch: boolean
|
||||||
runData: {
|
runData: {
|
||||||
coverageLcovInfo?: string,
|
coverageLcovInfo?: string
|
||||||
coverageResult?: number
|
coverageResult?: number
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
export let run = function (argvArg) {
|
export let run = function (argvArg) {
|
||||||
let done = q.defer()
|
let done = q.defer()
|
||||||
let defaultConfig: INpmtsConfig = {
|
let defaultConfig: INpmtsConfig = {
|
||||||
argv: undefined,
|
argv: undefined,
|
||||||
coverageTreshold: 70,
|
coverageTreshold: 70,
|
||||||
|
checkDependencies: true,
|
||||||
mode: 'default',
|
mode: 'default',
|
||||||
test: true,
|
test: true,
|
||||||
testTs: {},
|
testTs: {},
|
||||||
|
testConfig: {
|
||||||
|
parallel: true,
|
||||||
|
coverage: true
|
||||||
|
},
|
||||||
ts: {},
|
ts: {},
|
||||||
tsOptions: {},
|
tsOptions: {},
|
||||||
watch: false,
|
watch: false,
|
||||||
@ -50,31 +66,41 @@ export let run = function (argvArg) {
|
|||||||
switch (config.mode) {
|
switch (config.mode) {
|
||||||
case 'default':
|
case 'default':
|
||||||
case 'custom':
|
case 'custom':
|
||||||
|
case 'merge':
|
||||||
plugins.beautylog.ok('mode is ' + config.mode)
|
plugins.beautylog.ok('mode is ' + config.mode)
|
||||||
done.resolve(config)
|
done.resolve(config)
|
||||||
break
|
break
|
||||||
default:
|
default:
|
||||||
plugins.beautylog.error(`mode not recognised!`)
|
plugins.beautylog.error(`mode not recognised! Can be default or custom`)
|
||||||
process.exit(1)
|
process.exit(1)
|
||||||
};
|
}
|
||||||
|
|
||||||
// handle default mode
|
// handle default mode
|
||||||
if (config.mode === 'default') {
|
if (config.mode === 'default' || config.mode === 'merge') {
|
||||||
config.ts = {
|
config.ts = {
|
||||||
'./ts/**/*.ts': './dist/'
|
'./ts/**/*.ts': './dist/'
|
||||||
}
|
}
|
||||||
config.testTs = {
|
config.testTs = {
|
||||||
'./test/**/*.ts': './test/'
|
'./test/**/*.ts': './test/'
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
// mix with commandline
|
// mix with commandline
|
||||||
if (config.argv.notest) {
|
if (config.argv.notest) {
|
||||||
config.test = false
|
config.test = false
|
||||||
};
|
}
|
||||||
|
|
||||||
|
if (config.argv.nocoverage) {
|
||||||
|
config.testConfig.coverage = false
|
||||||
|
}
|
||||||
|
|
||||||
|
if (config.argv.nochecks) {
|
||||||
|
config.checkDependencies = false
|
||||||
|
}
|
||||||
|
|
||||||
if (config.argv.watch) {
|
if (config.argv.watch) {
|
||||||
config.watch = true
|
config.watch = true
|
||||||
};
|
}
|
||||||
|
|
||||||
plugins.beautylog.ok('build options are ready!')
|
plugins.beautylog.ok('build options are ready!')
|
||||||
done.resolve(config)
|
done.resolve(config)
|
||||||
|
Reference in New Issue
Block a user