Compare commits
21 Commits
Author | SHA1 | Date | |
---|---|---|---|
9b595e75cd | |||
4e85589dea | |||
2b44f61ace | |||
0928a6d9d2 | |||
e464afd544 | |||
468d07f5f3 | |||
ae68ddfaf8 | |||
ad275d2113 | |||
f99605da8f | |||
508aa23e59 | |||
ce7f28404a | |||
237b084411 | |||
bc6a7ae1da | |||
31fdd4c0a7 | |||
c820350bb6 | |||
92bf6d7bab | |||
e77bece3fc | |||
df96486d2f | |||
980db3eb28 | |||
34d3d4d963 | |||
a3c02cad4e |
@ -2,4 +2,10 @@ Please view this file on the master branch, on stable branches it's out of date.
|
|||||||
|
|
||||||
v 6.0.0 (released)
|
v 6.0.0 (released)
|
||||||
- remove TypeDoc, please look at npmpage
|
- remove TypeDoc, please look at npmpage
|
||||||
- check package.json
|
- check package.json
|
||||||
|
|
||||||
|
v 7.0.0
|
||||||
|
- switch from mocha to tap
|
||||||
|
- run tests in SubProcesses with coverage
|
||||||
|
- improve ES6 handling
|
||||||
|
- add smartanalytics
|
32
README.md
32
README.md
@ -2,38 +2,38 @@
|
|||||||
Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.
|
Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.
|
||||||
|
|
||||||
## Availabililty
|
## Availabililty
|
||||||
[](https://www.npmjs.com/package/npmts)
|
[](https://www.npmjs.com/package/npmts)
|
||||||
[](https://gitlab.com/pushrocks/npmts)
|
[](https://GitLab.com/gitzone/npmts)
|
||||||
[](https://github.com/pushrocks/npmts)
|
[](https://github.com/gitzone/npmts)
|
||||||
[](https://pushrocks.gitlab.io/npmts/)
|
[](https://gitzone.gitlab.io/npmts/)
|
||||||
|
|
||||||
## Status for master
|
## Status for master
|
||||||
[](https://gitlab.com/pushrocks/npmts/commits/master)
|
[](https://GitLab.com/gitzone/npmts/commits/master)
|
||||||
[](https://gitlab.com/pushrocks/npmts/commits/master)
|
[](https://GitLab.com/gitzone/npmts/commits/master)
|
||||||
[](https://www.npmjs.com/package/npmts)
|
[](https://www.npmjs.com/package/npmts)
|
||||||
[](https://hub.docker.com/r/hosttoday/ht-docker-node/)
|
[](https://david-dm.org/gitzone/npmts)
|
||||||
[](https://david-dm.org/pushrocks/npmts)
|
[](https://www.bithound.io/github/gitzone/npmts/master/dependencies/npm)
|
||||||
[](https://www.bithound.io/github/pushrocks/npmts/master/dependencies/npm)
|
[](https://www.bithound.io/github/gitzone/npmts)
|
||||||
[](https://www.bithound.io/github/pushrocks/npmts)
|
|
||||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
||||||
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
[](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
||||||
[](http://standardjs.com/)
|
[](http://standardjs.com/)
|
||||||
|
|
||||||
## Introduction
|
## Usage
|
||||||
NPMTS is your friend when writing, testing, publishing and documenting npm modules written in TypeScript.
|
NPMTS is your friend when writing, testing, publishing and documenting npm modules written in TypeScript.
|
||||||
|
|
||||||
npmts will
|
npmts will
|
||||||
|
|
||||||
1. check your dependencies and package.json (unused, missing, updates, security)
|
1. check your dependencies and package.json (unused, missing, updates, security)
|
||||||
1. transpile your code with tsc,
|
1. transpile your code with tsc,
|
||||||
1. test your code with mocha (supports the fancy stuff like Promises, Generators, async/await, sourcemaps)
|
1. test your code with tap (supports the fancy stuff like Promises, Generators, async/await, sourcemaps, parallel test execution in child processes)
|
||||||
1. create coverage with istanbul (supports tracing of the originating TypeScript)
|
1. create coverage with istanbul (supports tracing of the originating TypeScript)
|
||||||
|
|
||||||
|
For more information on how tests are run check out the [tapbuffer module](https://www.npmjs.com/package/tapbuffer).
|
||||||
|
|
||||||
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/)
|
||||||
|
|
||||||
For further information read the linked docs at the top of this README.
|
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
|
||||||
|
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy.html)
|
||||||
|
|
||||||
> MIT licensed | **©** 2016 - 2017 [Lossless GmbH](https://lossless.gmbh)
|
[](https://push.rocks)
|
||||||
|
|
||||||
[](https://push.rocks)
|
|
||||||
|
1
dist/index.js
vendored
1
dist/index.js
vendored
@ -3,6 +3,7 @@
|
|||||||
Fabulous TypeScript development
|
Fabulous TypeScript development
|
||||||
* ================================================== */
|
* ================================================== */
|
||||||
"use strict";
|
"use strict";
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const early = require("early");
|
const early = require("early");
|
||||||
early.start('NPMTS');
|
early.start('NPMTS');
|
||||||
const plugins = require("./npmts.plugins");
|
const plugins = require("./npmts.plugins");
|
||||||
|
4
dist/mod00/index.js
vendored
4
dist/mod00/index.js
vendored
@ -1,6 +1,8 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
/* ------------------------------------------
|
/* ------------------------------------------
|
||||||
* This module compiles TypeScript files
|
* This module compiles the module's TypeScript files
|
||||||
|
* Note: Test files are only compiled in memory
|
||||||
* -------------------------------------------- */
|
* -------------------------------------------- */
|
||||||
const q = require("smartq");
|
const q = require("smartq");
|
||||||
const plugins = require("./mod00.plugins");
|
const plugins = require("./mod00.plugins");
|
||||||
|
1
dist/mod00/mod00.assets.js
vendored
1
dist/mod00/mod00.assets.js
vendored
@ -1,4 +1,5 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const q = require("smartq");
|
const q = require("smartq");
|
||||||
const paths = require("../npmts.paths");
|
const paths = require("../npmts.paths");
|
||||||
const plugins = require("./mod00.plugins");
|
const plugins = require("./mod00.plugins");
|
||||||
|
1
dist/mod00/mod00.check.js
vendored
1
dist/mod00/mod00.check.js
vendored
@ -1,4 +1,5 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const q = require("smartq");
|
const q = require("smartq");
|
||||||
const projectinfo_1 = require("projectinfo");
|
const projectinfo_1 = require("projectinfo");
|
||||||
const paths = require("../npmts.paths");
|
const paths = require("../npmts.paths");
|
||||||
|
1
dist/mod00/mod00.clean.js
vendored
1
dist/mod00/mod00.clean.js
vendored
@ -1,4 +1,5 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const q = require("smartq");
|
const q = require("smartq");
|
||||||
const paths = require("../npmts.paths");
|
const paths = require("../npmts.paths");
|
||||||
const plugins = require("./mod00.plugins");
|
const plugins = require("./mod00.plugins");
|
||||||
|
8
dist/mod00/mod00.compile.js
vendored
8
dist/mod00/mod00.compile.js
vendored
@ -1,4 +1,5 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const q = require("smartq");
|
const q = require("smartq");
|
||||||
const paths = require("../npmts.paths");
|
const paths = require("../npmts.paths");
|
||||||
const plugins = require("./mod00.plugins");
|
const plugins = require("./mod00.plugins");
|
||||||
@ -8,12 +9,7 @@ exports.run = function (configArg) {
|
|||||||
plugins.beautylog.ora.text('now compiling ' + 'TypeScript'.yellow);
|
plugins.beautylog.ora.text('now compiling ' + 'TypeScript'.yellow);
|
||||||
plugins.tsn.compileGlobStringObject(config.ts, config.tsOptions, paths.cwd)
|
plugins.tsn.compileGlobStringObject(config.ts, config.tsOptions, paths.cwd)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
plugins.beautylog.ok('compiled main TypeScript!');
|
plugins.beautylog.ok(`compiled the module's TypeScript!`);
|
||||||
plugins.beautylog.log('now compiling tests!');
|
|
||||||
return plugins.tsn.compileGlobStringObject(config.testTs, config.tsOptions, paths.cwd);
|
|
||||||
})
|
|
||||||
.then(function () {
|
|
||||||
plugins.beautylog.ok('compiled all TypeScript!');
|
|
||||||
done.resolve(config);
|
done.resolve(config);
|
||||||
}).catch(err => { console.log(err); });
|
}).catch(err => { console.log(err); });
|
||||||
return done.promise;
|
return done.promise;
|
||||||
|
1
dist/mod00/mod00.plugins.js
vendored
1
dist/mod00/mod00.plugins.js
vendored
@ -2,6 +2,7 @@
|
|||||||
function __export(m) {
|
function __export(m) {
|
||||||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
||||||
}
|
}
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
__export(require("../npmts.plugins"));
|
__export(require("../npmts.plugins"));
|
||||||
const tsn = require("tsn");
|
const tsn = require("tsn");
|
||||||
exports.tsn = tsn;
|
exports.tsn = tsn;
|
||||||
|
1
dist/mod01/index.js
vendored
1
dist/mod01/index.js
vendored
@ -1,4 +1,5 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
/* ------------------------------------------
|
/* ------------------------------------------
|
||||||
* This module creates TypeScript documentation
|
* This module creates TypeScript documentation
|
||||||
* -------------------------------------------- */
|
* -------------------------------------------- */
|
||||||
|
1
dist/mod01/mod01.plugins.js
vendored
1
dist/mod01/mod01.plugins.js
vendored
@ -2,4 +2,5 @@
|
|||||||
function __export(m) {
|
function __export(m) {
|
||||||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
||||||
}
|
}
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
__export(require("../npmts.plugins"));
|
__export(require("../npmts.plugins"));
|
||||||
|
108
dist/mod02/index.js
vendored
108
dist/mod02/index.js
vendored
@ -7,6 +7,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|||||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
/* ------------------------------------------
|
/* ------------------------------------------
|
||||||
* This module tests the compiled TypeScript files
|
* This module tests the compiled TypeScript files
|
||||||
* -------------------------------------------- */
|
* -------------------------------------------- */
|
||||||
@ -17,11 +18,16 @@ const q = require("smartq");
|
|||||||
* runs mocha
|
* runs mocha
|
||||||
* @returns INpmtsConfig
|
* @returns INpmtsConfig
|
||||||
*/
|
*/
|
||||||
let mocha = function (configArg) {
|
let tap = function (configArg) {
|
||||||
plugins.beautylog.ora.text('Instrumentalizing and testing transpiled JS');
|
|
||||||
plugins.beautylog.ora.end(); // end plugins.beautylog.ora for tests.
|
|
||||||
let done = q.defer();
|
let done = q.defer();
|
||||||
let coverageSmartstream = new plugins.smartstream.Smartstream([
|
/**
|
||||||
|
* the TabBuffer for npmts
|
||||||
|
*/
|
||||||
|
let npmtsTapBuffer = new plugins.tapbuffer.TabBuffer();
|
||||||
|
/**
|
||||||
|
* handle the testable files
|
||||||
|
*/
|
||||||
|
let testableFilesSmartstream = new plugins.smartstream.Smartstream([
|
||||||
plugins.gulp.src([plugins.path.join(paths.cwd, './ts/**/*.ts')]),
|
plugins.gulp.src([plugins.path.join(paths.cwd, './ts/**/*.ts')]),
|
||||||
plugins.gulpSourcemaps.init(),
|
plugins.gulpSourcemaps.init(),
|
||||||
plugins.gulpTypeScript({
|
plugins.gulpTypeScript({
|
||||||
@ -30,19 +36,17 @@ let mocha = 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.gulpIstanbul({}),
|
|
||||||
plugins.gulpSourcemaps.write(),
|
plugins.gulpSourcemaps.write(),
|
||||||
plugins.gulpFunction.forEach((file) => __awaiter(this, void 0, void 0, function* () {
|
plugins.gulpFunction.forEach((file) => __awaiter(this, void 0, void 0, function* () {
|
||||||
file.path = file.path.replace(paths.tsDir, paths.distDir);
|
file.path = file.path.replace(paths.tsDir, paths.distDir);
|
||||||
})),
|
})),
|
||||||
plugins.gulpInjectModules(),
|
npmtsTapBuffer.pipeTestableFiles(),
|
||||||
plugins.through2.obj((file, enc, cb) => {
|
plugins.smartstream.cleanPipe()
|
||||||
cb();
|
|
||||||
}, (cb) => {
|
|
||||||
cb();
|
|
||||||
})
|
|
||||||
]);
|
]);
|
||||||
let localSmartstream = new plugins.smartstream.Smartstream([
|
/**
|
||||||
|
* handle the test files
|
||||||
|
*/
|
||||||
|
let testFilesSmartstream = new plugins.smartstream.Smartstream([
|
||||||
plugins.gulp.src([plugins.path.join(paths.cwd, 'test/test.ts')]),
|
plugins.gulp.src([plugins.path.join(paths.cwd, 'test/test.ts')]),
|
||||||
plugins.gulpTypeScript({
|
plugins.gulpTypeScript({
|
||||||
target: 'ES5',
|
target: 'ES5',
|
||||||
@ -50,52 +54,45 @@ let mocha = 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.gulpInjectModules(),
|
npmtsTapBuffer.pipeTestFiles(),
|
||||||
plugins.gulpMocha(),
|
plugins.smartstream.cleanPipe()
|
||||||
plugins.gulpIstanbul.writeReports({
|
|
||||||
dir: plugins.path.join(paths.cwd, './coverage'),
|
|
||||||
reporters: ['lcovonly', 'json', 'text', 'text-summary']
|
|
||||||
})
|
|
||||||
]);
|
]);
|
||||||
coverageSmartstream.run()
|
// lets run the smartstream
|
||||||
.then(() => {
|
Promise.all([
|
||||||
plugins.beautylog.info('code is now transpiled to ES5, instrumented with istanbul, and injected for mocha!');
|
testableFilesSmartstream.run(),
|
||||||
return localSmartstream.run()
|
testFilesSmartstream.run()
|
||||||
.then(() => { done.resolve(configArg); }, (err) => {
|
]).then(() => __awaiter(this, void 0, void 0, function* () {
|
||||||
plugins.beautylog.error('Tests failed!');
|
yield npmtsTapBuffer.runTests();
|
||||||
console.log(err);
|
done.resolve(configArg);
|
||||||
if (configArg.watch) {
|
}), (err) => {
|
||||||
done.resolve(configArg);
|
plugins.beautylog.error('Tests failed!');
|
||||||
}
|
|
||||||
else {
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}, (err) => {
|
|
||||||
console.log(err);
|
console.log(err);
|
||||||
|
if (configArg.watch) {
|
||||||
|
done.resolve(configArg);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
return done.promise;
|
return done.promise;
|
||||||
};
|
};
|
||||||
let coverage = function (configArg) {
|
let handleCoverageData = function (configArg) {
|
||||||
let done = q.defer();
|
let done = q.defer();
|
||||||
plugins.smartcov.get.percentage(plugins.path.join(paths.coverageDir, 'lcov.info'), 2)
|
if (71 >= configArg.coverageTreshold) {
|
||||||
.then(function (percentageArg) {
|
plugins.beautylog.ok(`${(71).toString()}% `
|
||||||
if (percentageArg >= configArg.coverageTreshold) {
|
+ `coverage exceeds your treshold of `
|
||||||
plugins.beautylog.ok(`${percentageArg.toString()}% `
|
+ `${configArg.coverageTreshold.toString()}%`);
|
||||||
+ `coverage exceeds your treshold of `
|
}
|
||||||
+ `${configArg.coverageTreshold.toString()}%`);
|
else {
|
||||||
|
plugins.beautylog.warn(`${(71).toString()}% `
|
||||||
|
+ `coverage fails your treshold of `
|
||||||
|
+ `${configArg.coverageTreshold.toString()}%`);
|
||||||
|
plugins.beautylog.error('exiting due to coverage failure');
|
||||||
|
if (!configArg.watch) {
|
||||||
|
process.exit(1);
|
||||||
}
|
}
|
||||||
else {
|
}
|
||||||
plugins.beautylog.warn(`${percentageArg.toString()}% `
|
done.resolve(configArg);
|
||||||
+ `coverage fails your treshold of `
|
|
||||||
+ `${configArg.coverageTreshold.toString()}%`);
|
|
||||||
plugins.beautylog.error('exiting due to coverage failure');
|
|
||||||
if (!configArg.watch) {
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
done.resolve(configArg);
|
|
||||||
});
|
|
||||||
return done.promise;
|
return done.promise;
|
||||||
};
|
};
|
||||||
exports.run = function (configArg) {
|
exports.run = function (configArg) {
|
||||||
@ -103,11 +100,10 @@ exports.run = function (configArg) {
|
|||||||
let config = configArg;
|
let config = configArg;
|
||||||
if (config.test === true) {
|
if (config.test === true) {
|
||||||
plugins.beautylog.ora.text('now starting tests');
|
plugins.beautylog.ora.text('now starting tests');
|
||||||
plugins.beautylog.log('------------------------------------------------------\n' +
|
plugins.beautylog.ora.end();
|
||||||
'*************************** TESTS: ***************************\n' +
|
plugins.beautylog.log('ready for tapbuffer:');
|
||||||
'--------------------------------------------------------------');
|
tap(config)
|
||||||
mocha(config)
|
.then(handleCoverageData)
|
||||||
.then(coverage)
|
|
||||||
.then(() => {
|
.then(() => {
|
||||||
done.resolve(config);
|
done.resolve(config);
|
||||||
}).catch(err => { console.log(err); });
|
}).catch(err => { console.log(err); });
|
||||||
|
6
dist/mod02/mod02.plugins.d.ts
vendored
6
dist/mod02/mod02.plugins.d.ts
vendored
@ -1,9 +1,7 @@
|
|||||||
export * from '../npmts.plugins';
|
export * from '../npmts.plugins';
|
||||||
import * as gulp from 'gulp';
|
import * as gulp from 'gulp';
|
||||||
import * as gulpFunction from 'gulp-function';
|
import * as gulpFunction from 'gulp-function';
|
||||||
import * as gulpIstanbul from 'gulp-istanbul';
|
|
||||||
declare let gulpInjectModules: any;
|
|
||||||
import * as gulpMocha from 'gulp-mocha';
|
|
||||||
import * as gulpSourcemaps from 'gulp-sourcemaps';
|
import * as gulpSourcemaps from 'gulp-sourcemaps';
|
||||||
import * as gulpTypeScript from 'gulp-typescript';
|
import * as gulpTypeScript from 'gulp-typescript';
|
||||||
export { gulp, gulpFunction, gulpIstanbul, gulpInjectModules, gulpMocha, gulpSourcemaps, gulpTypeScript };
|
import * as tapbuffer from 'tapbuffer';
|
||||||
|
export { gulp, gulpFunction, gulpSourcemaps, gulpTypeScript, tapbuffer };
|
||||||
|
9
dist/mod02/mod02.plugins.js
vendored
9
dist/mod02/mod02.plugins.js
vendored
@ -2,18 +2,15 @@
|
|||||||
function __export(m) {
|
function __export(m) {
|
||||||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
||||||
}
|
}
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
__export(require("../npmts.plugins"));
|
__export(require("../npmts.plugins"));
|
||||||
const gulp = require("gulp");
|
const gulp = require("gulp");
|
||||||
exports.gulp = gulp;
|
exports.gulp = gulp;
|
||||||
const gulpFunction = require("gulp-function");
|
const gulpFunction = require("gulp-function");
|
||||||
exports.gulpFunction = gulpFunction;
|
exports.gulpFunction = gulpFunction;
|
||||||
const gulpIstanbul = require("gulp-istanbul");
|
|
||||||
exports.gulpIstanbul = gulpIstanbul;
|
|
||||||
let gulpInjectModules = require('gulp-inject-modules');
|
|
||||||
exports.gulpInjectModules = gulpInjectModules;
|
|
||||||
const gulpMocha = require("gulp-mocha");
|
|
||||||
exports.gulpMocha = gulpMocha;
|
|
||||||
const gulpSourcemaps = require("gulp-sourcemaps");
|
const gulpSourcemaps = require("gulp-sourcemaps");
|
||||||
exports.gulpSourcemaps = gulpSourcemaps;
|
exports.gulpSourcemaps = gulpSourcemaps;
|
||||||
const gulpTypeScript = require("gulp-typescript");
|
const gulpTypeScript = require("gulp-typescript");
|
||||||
exports.gulpTypeScript = gulpTypeScript;
|
exports.gulpTypeScript = gulpTypeScript;
|
||||||
|
const tapbuffer = require("tapbuffer");
|
||||||
|
exports.tapbuffer = tapbuffer;
|
||||||
|
3
dist/npmts.cli.js
vendored
3
dist/npmts.cli.js
vendored
@ -1,4 +1,5 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const q = require("smartq");
|
const q = require("smartq");
|
||||||
const plugins = require("./npmts.plugins");
|
const plugins = require("./npmts.plugins");
|
||||||
const paths = require("./npmts.paths");
|
const paths = require("./npmts.paths");
|
||||||
@ -6,6 +7,8 @@ const NpmtsConfig = require("./npmts.config");
|
|||||||
const NpmtsMods = require("./npmts.mods");
|
const NpmtsMods = require("./npmts.mods");
|
||||||
const NpmtsWatch = require("./npmts.watch");
|
const NpmtsWatch = require("./npmts.watch");
|
||||||
const NpmtsShip = require("./npmts.ship");
|
const NpmtsShip = require("./npmts.ship");
|
||||||
|
let npmtsAnalytics = new plugins.smartanalytics.AnalyticsAccount('npmts', 'UA-64087619-2');
|
||||||
|
npmtsAnalytics.sendEvent('npm', 'exec', 'push.rocks');
|
||||||
exports.run = () => {
|
exports.run = () => {
|
||||||
let done = q.defer();
|
let done = q.defer();
|
||||||
let npmtsProjectInfo = new plugins.projectinfo.ProjectinfoNpm(paths.npmtsPackageRoot);
|
let npmtsProjectInfo = new plugins.projectinfo.ProjectinfoNpm(paths.npmtsPackageRoot);
|
||||||
|
1
dist/npmts.config.js
vendored
1
dist/npmts.config.js
vendored
@ -1,4 +1,5 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
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");
|
||||||
|
1
dist/npmts.mods.js
vendored
1
dist/npmts.mods.js
vendored
@ -1,4 +1,5 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const smartsystem_1 = require("smartsystem");
|
const smartsystem_1 = require("smartsystem");
|
||||||
exports.mod00 = new smartsystem_1.LazyModule('./mod00/index', __dirname);
|
exports.mod00 = new smartsystem_1.LazyModule('./mod00/index', __dirname);
|
||||||
exports.mod01 = new smartsystem_1.LazyModule('./mod01/index', __dirname);
|
exports.mod01 = new smartsystem_1.LazyModule('./mod01/index', __dirname);
|
||||||
|
1
dist/npmts.paths.js
vendored
1
dist/npmts.paths.js
vendored
@ -1,4 +1,5 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const plugins = require("./npmts.plugins");
|
const plugins = require("./npmts.plugins");
|
||||||
// NPMTS Paths
|
// NPMTS Paths
|
||||||
exports.npmtsPackageRoot = plugins.path.join(__dirname, '../');
|
exports.npmtsPackageRoot = plugins.path.join(__dirname, '../');
|
||||||
|
4
dist/npmts.plugins.d.ts
vendored
4
dist/npmts.plugins.d.ts
vendored
@ -5,8 +5,8 @@ import * as lodash from 'lodash';
|
|||||||
import * as npmextra from 'npmextra';
|
import * as npmextra from 'npmextra';
|
||||||
import * as projectinfo from 'projectinfo';
|
import * as projectinfo from 'projectinfo';
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
|
import * as smartanalytics from 'smartanalytics';
|
||||||
import * as smartcli from 'smartcli';
|
import * as smartcli from 'smartcli';
|
||||||
import * as smartcov from 'smartcov';
|
|
||||||
import * as smartenv from 'smartenv';
|
import * as smartenv from 'smartenv';
|
||||||
import * as smartfile from 'smartfile';
|
import * as smartfile from 'smartfile';
|
||||||
import * as smartpath from 'smartpath';
|
import * as smartpath from 'smartpath';
|
||||||
@ -15,4 +15,4 @@ import * as smartstring from 'smartstring';
|
|||||||
import * as smartsystem from 'smartsystem';
|
import * as smartsystem from 'smartsystem';
|
||||||
import * as through2 from 'through2';
|
import * as through2 from 'through2';
|
||||||
export declare let sourceMapSupport: any;
|
export declare let sourceMapSupport: any;
|
||||||
export { beautylog, depcheck, lodash, npmextra, projectinfo, path, smartcli, smartcov, smartenv, smartfile, smartpath, smartstream, smartstring, smartsystem, through2 };
|
export { beautylog, depcheck, lodash, npmextra, projectinfo, path, smartanalytics, smartcli, smartenv, smartfile, smartpath, smartstream, smartstring, smartsystem, through2 };
|
||||||
|
5
dist/npmts.plugins.js
vendored
5
dist/npmts.plugins.js
vendored
@ -1,4 +1,5 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
require("typings-global");
|
require("typings-global");
|
||||||
const beautylog = require("beautylog");
|
const beautylog = require("beautylog");
|
||||||
exports.beautylog = beautylog;
|
exports.beautylog = beautylog;
|
||||||
@ -12,10 +13,10 @@ const projectinfo = require("projectinfo");
|
|||||||
exports.projectinfo = projectinfo;
|
exports.projectinfo = projectinfo;
|
||||||
const path = require("path");
|
const path = require("path");
|
||||||
exports.path = path;
|
exports.path = path;
|
||||||
|
const smartanalytics = require("smartanalytics");
|
||||||
|
exports.smartanalytics = smartanalytics;
|
||||||
const smartcli = require("smartcli");
|
const smartcli = require("smartcli");
|
||||||
exports.smartcli = smartcli;
|
exports.smartcli = smartcli;
|
||||||
const smartcov = require("smartcov");
|
|
||||||
exports.smartcov = smartcov;
|
|
||||||
const smartenv = require("smartenv");
|
const smartenv = require("smartenv");
|
||||||
exports.smartenv = smartenv;
|
exports.smartenv = smartenv;
|
||||||
const smartfile = require("smartfile");
|
const smartfile = require("smartfile");
|
||||||
|
1
dist/npmts.ship.js
vendored
1
dist/npmts.ship.js
vendored
@ -1,4 +1,5 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const q = require("smartq");
|
const q = require("smartq");
|
||||||
const plugins = require("./npmts.plugins");
|
const plugins = require("./npmts.plugins");
|
||||||
exports.run = (configArg) => {
|
exports.run = (configArg) => {
|
||||||
|
1
dist/npmts.watch.js
vendored
1
dist/npmts.watch.js
vendored
@ -1,4 +1,5 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const q = require("smartq");
|
const q = require("smartq");
|
||||||
const smartchok = require("smartchok");
|
const smartchok = require("smartchok");
|
||||||
const plugins = require("./npmts.plugins");
|
const plugins = require("./npmts.plugins");
|
||||||
|
49
package.json
49
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "npmts",
|
"name": "npmts",
|
||||||
"version": "6.1.11",
|
"version": "7.0.1",
|
||||||
"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": {
|
||||||
@ -14,14 +14,14 @@
|
|||||||
"setupCheck": "(git clone https://gitlab.com/sandboxzone/sandbox-npmts.git test/)",
|
"setupCheck": "(git clone https://gitlab.com/sandboxzone/sandbox-npmts.git test/)",
|
||||||
"typedoc": "(typedoc --out ./pages/api --target ES6 ./ts/)",
|
"typedoc": "(typedoc --out ./pages/api --target ES6 ./ts/)",
|
||||||
"npmpage": "(npmpage)",
|
"npmpage": "(npmpage)",
|
||||||
"check": "(cd test && npm install && node ../dist/index.js)",
|
"check": "(cd test && yarn install && node ../dist/index.js)",
|
||||||
"checkVersion": "(cd test/ && node ../dist/index.js -v)",
|
"checkVersion": "(cd test/ && node ../dist/index.js -v)",
|
||||||
"checkNoTest": "(cd test && node ../dist/index.js --notest)",
|
"checkNoTest": "(cd test && node ../dist/index.js --notest)",
|
||||||
"checkNoDocs": "(cd test && node ../dist/index.js --nodocs)"
|
"checkNoDocs": "(cd test && node ../dist/index.js --nodocs)"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://gitlab.com/pushrocks/npmts.git"
|
"url": "git+https://gitlab.com/gitzone/npmts.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"TypeScript",
|
"TypeScript",
|
||||||
@ -30,43 +30,40 @@
|
|||||||
"author": "Lossless GmbH",
|
"author": "Lossless GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://gitlab.com/pushrocks/npmts/issues"
|
"url": "https://gitlab.com/gitzone/npmts/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://gitlab.com/pushrocks/npmts#readme",
|
"homepage": "https://gitlab.com/gitzone/npmts#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/gulp": "^3.8.32",
|
"@types/gulp": "^4.0.2",
|
||||||
"@types/gulp-istanbul": "^0.9.30",
|
"@types/gulp-sourcemaps": "0.0.30",
|
||||||
"@types/gulp-mocha": "0.0.29",
|
|
||||||
"@types/gulp-sourcemaps": "0.0.29",
|
|
||||||
"@types/minimatch": "^2.0.29",
|
"@types/minimatch": "^2.0.29",
|
||||||
"@types/through2": "^2.0.32",
|
"@types/through2": "^2.0.32",
|
||||||
"beautylog": "6.1.1",
|
"beautylog": "6.1.5",
|
||||||
"depcheck": "^0.6.7",
|
"depcheck": "^0.6.7",
|
||||||
"early": "^2.0.35",
|
"early": "^2.0.36",
|
||||||
"gulp": "3.9.1",
|
"gulp": "3.9.1",
|
||||||
"gulp-function": "^2.2.3",
|
"gulp-function": "^2.2.3",
|
||||||
"gulp-inject-modules": "^1.0.0",
|
"gulp-sourcemaps": "^2.4.1",
|
||||||
"gulp-istanbul": "^1.1.1",
|
"gulp-typescript": "^3.1.6",
|
||||||
"gulp-mocha": "^3.0.1",
|
|
||||||
"gulp-sourcemaps": "^2.4.0",
|
|
||||||
"gulp-typescript": "^3.1.4",
|
|
||||||
"lodash": "^4.17.4",
|
"lodash": "^4.17.4",
|
||||||
"npmextra": "^2.0.3",
|
"npmextra": "^2.0.5",
|
||||||
"projectinfo": "3.0.1",
|
"projectinfo": "^3.0.2",
|
||||||
"smartchok": "^1.0.4",
|
"smartanalytics": "^1.0.3",
|
||||||
|
"smartchok": "^1.0.5",
|
||||||
"smartcli": "2.0.1",
|
"smartcli": "2.0.1",
|
||||||
"smartcov": "1.0.0",
|
"smartcov": "1.0.0",
|
||||||
"smartenv": "2.0.0",
|
"smartenv": "2.0.0",
|
||||||
"smartfile": "4.1.4",
|
"smartfile": "^4.1.9",
|
||||||
"smartpath": "3.2.7",
|
"smartpath": "^3.2.8",
|
||||||
"smartq": "^1.1.0",
|
"smartq": "^1.1.1",
|
||||||
"smartstream": "^1.0.5",
|
"smartstream": "^1.0.8",
|
||||||
"smartstring": "^2.0.22",
|
"smartstring": "^2.0.24",
|
||||||
"smartsystem": "^1.0.12",
|
"smartsystem": "^1.0.12",
|
||||||
"source-map-support": "^0.4.11",
|
"source-map-support": "^0.4.14",
|
||||||
|
"tapbuffer": "^1.0.9",
|
||||||
"through2": "^2.0.3",
|
"through2": "^2.0.3",
|
||||||
"tsn": "^2.0.15",
|
"tsn": "^2.0.15",
|
||||||
"typescript": "^2.1.5",
|
"typescript": "^2.2.1",
|
||||||
"typings-global": "^1.0.14"
|
"typings-global": "^1.0.14"
|
||||||
},
|
},
|
||||||
"devDependencies": {}
|
"devDependencies": {}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
/* ------------------------------------------
|
/* ------------------------------------------
|
||||||
* This module compiles TypeScript files
|
* This module compiles the module's TypeScript files
|
||||||
|
* Note: Test files are only compiled in memory
|
||||||
* -------------------------------------------- */
|
* -------------------------------------------- */
|
||||||
import * as q from 'smartq'
|
import * as q from 'smartq'
|
||||||
|
|
||||||
|
@ -5,18 +5,13 @@ import * as paths from '../npmts.paths'
|
|||||||
import * as plugins from './mod00.plugins'
|
import * as plugins from './mod00.plugins'
|
||||||
|
|
||||||
export let run = function (configArg) {
|
export let run = function (configArg) {
|
||||||
let done = q.defer()
|
let done = q.defer()
|
||||||
let config = configArg
|
let config = configArg
|
||||||
plugins.beautylog.ora.text('now compiling ' + 'TypeScript'.yellow)
|
plugins.beautylog.ora.text('now compiling ' + 'TypeScript'.yellow)
|
||||||
plugins.tsn.compileGlobStringObject(config.ts,config.tsOptions,paths.cwd)
|
plugins.tsn.compileGlobStringObject(config.ts, config.tsOptions, paths.cwd)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
plugins.beautylog.ok('compiled main TypeScript!')
|
plugins.beautylog.ok(`compiled the module's TypeScript!`)
|
||||||
plugins.beautylog.log('now compiling tests!')
|
done.resolve(config)
|
||||||
return plugins.tsn.compileGlobStringObject(config.testTs,config.tsOptions,paths.cwd)
|
}).catch(err => { console.log(err) })
|
||||||
})
|
return done.promise
|
||||||
.then(function () {
|
|
||||||
plugins.beautylog.ok('compiled all TypeScript!')
|
|
||||||
done.resolve(config)
|
|
||||||
}).catch(err => { console.log(err) })
|
|
||||||
return done.promise
|
|
||||||
}
|
}
|
||||||
|
@ -12,116 +12,107 @@ import { INpmtsConfig } from '../npmts.config'
|
|||||||
* runs mocha
|
* runs mocha
|
||||||
* @returns INpmtsConfig
|
* @returns INpmtsConfig
|
||||||
*/
|
*/
|
||||||
let mocha = function (configArg: INpmtsConfig) {
|
let tap = function (configArg: INpmtsConfig) {
|
||||||
plugins.beautylog.ora.text('Instrumentalizing and testing transpiled JS')
|
let done = q.defer()
|
||||||
plugins.beautylog.ora.end() // end plugins.beautylog.ora for tests.
|
|
||||||
let done = q.defer()
|
|
||||||
|
|
||||||
let coverageSmartstream = new plugins.smartstream.Smartstream([
|
/**
|
||||||
plugins.gulp.src([plugins.path.join(paths.cwd, './ts/**/*.ts')]),
|
* the TabBuffer for npmts
|
||||||
plugins.gulpSourcemaps.init(),
|
*/
|
||||||
plugins.gulpTypeScript({
|
let npmtsTapBuffer = new plugins.tapbuffer.TabBuffer()
|
||||||
target: 'ES5',
|
|
||||||
emitDecoratorMetadata: true,
|
|
||||||
experimentalDecorators: true,
|
|
||||||
lib: ['DOM', 'ES5', 'ES2015.Promise', 'ES2015.Generator', 'ES2015.Iterable']
|
|
||||||
}),
|
|
||||||
plugins.gulpIstanbul({
|
|
||||||
}),
|
|
||||||
plugins.gulpSourcemaps.write(),
|
|
||||||
plugins.gulpFunction.forEach(async file => {
|
|
||||||
file.path = file.path.replace(paths.tsDir, paths.distDir)
|
|
||||||
}),
|
|
||||||
plugins.gulpInjectModules(),
|
|
||||||
plugins.through2.obj(
|
|
||||||
(file, enc, cb) => {
|
|
||||||
cb()
|
|
||||||
},
|
|
||||||
(cb) => {
|
|
||||||
cb()
|
|
||||||
}
|
|
||||||
)
|
|
||||||
])
|
|
||||||
|
|
||||||
let localSmartstream = new plugins.smartstream.Smartstream([
|
/**
|
||||||
plugins.gulp.src([plugins.path.join(paths.cwd, 'test/test.ts')]),
|
* handle the testable files
|
||||||
plugins.gulpTypeScript({
|
*/
|
||||||
target: 'ES5',
|
let testableFilesSmartstream = new plugins.smartstream.Smartstream([
|
||||||
emitDecoratorMetadata: true,
|
plugins.gulp.src([ plugins.path.join(paths.cwd, './ts/**/*.ts') ]),
|
||||||
experimentalDecorators: true,
|
plugins.gulpSourcemaps.init(),
|
||||||
lib: ['DOM', 'ES5', 'ES2015.Promise', 'ES2015.Generator', 'ES2015.Iterable']
|
plugins.gulpTypeScript({
|
||||||
}),
|
target: 'ES5',
|
||||||
plugins.gulpInjectModules(),
|
emitDecoratorMetadata: true,
|
||||||
plugins.gulpMocha(),
|
experimentalDecorators: true,
|
||||||
plugins.gulpIstanbul.writeReports({
|
lib: [ 'DOM', 'ES5', 'ES2015.Promise', 'ES2015.Generator', 'ES2015.Iterable' ]
|
||||||
dir: plugins.path.join(paths.cwd, './coverage'),
|
}),
|
||||||
reporters: ['lcovonly', 'json', 'text', 'text-summary']
|
plugins.gulpSourcemaps.write(),
|
||||||
})
|
plugins.gulpFunction.forEach(async file => {
|
||||||
])
|
file.path = file.path.replace(paths.tsDir, paths.distDir)
|
||||||
coverageSmartstream.run()
|
}),
|
||||||
.then(
|
npmtsTapBuffer.pipeTestableFiles(),
|
||||||
() => {
|
plugins.smartstream.cleanPipe()
|
||||||
plugins.beautylog.info('code is now transpiled to ES5, instrumented with istanbul, and injected for mocha!')
|
])
|
||||||
return localSmartstream.run()
|
|
||||||
.then(() => { done.resolve(configArg) }, (err) => {
|
/**
|
||||||
plugins.beautylog.error('Tests failed!')
|
* handle the test files
|
||||||
console.log(err)
|
*/
|
||||||
if (configArg.watch) {
|
let testFilesSmartstream = new plugins.smartstream.Smartstream([
|
||||||
done.resolve(configArg)
|
plugins.gulp.src([ plugins.path.join(paths.cwd, 'test/test.ts') ]),
|
||||||
} else {
|
plugins.gulpTypeScript({
|
||||||
process.exit(1)
|
target: 'ES5',
|
||||||
}
|
emitDecoratorMetadata: true,
|
||||||
})
|
experimentalDecorators: true,
|
||||||
},
|
lib: [ 'DOM', 'ES5', 'ES2015.Promise', 'ES2015.Generator', 'ES2015.Iterable' ]
|
||||||
(err) => {
|
}),
|
||||||
console.log(err)
|
npmtsTapBuffer.pipeTestFiles(),
|
||||||
})
|
plugins.smartstream.cleanPipe()
|
||||||
return done.promise
|
])
|
||||||
|
|
||||||
|
// lets run the smartstream
|
||||||
|
Promise.all([
|
||||||
|
testableFilesSmartstream.run(),
|
||||||
|
testFilesSmartstream.run()
|
||||||
|
]).then(
|
||||||
|
async () => {
|
||||||
|
await npmtsTapBuffer.runTests()
|
||||||
|
done.resolve(configArg)
|
||||||
|
}, (err) => {
|
||||||
|
plugins.beautylog.error('Tests failed!')
|
||||||
|
console.log(err)
|
||||||
|
if (configArg.watch) {
|
||||||
|
done.resolve(configArg)
|
||||||
|
} else {
|
||||||
|
process.exit(1)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
return done.promise
|
||||||
}
|
}
|
||||||
|
|
||||||
let coverage = function (configArg: INpmtsConfig) {
|
let handleCoverageData = function (configArg: INpmtsConfig) {
|
||||||
let done = q.defer()
|
let done = q.defer()
|
||||||
plugins.smartcov.get.percentage(plugins.path.join(paths.coverageDir, 'lcov.info'), 2)
|
if (71 >= configArg.coverageTreshold) {
|
||||||
.then(function (percentageArg) {
|
plugins.beautylog.ok(
|
||||||
if (percentageArg >= configArg.coverageTreshold) {
|
`${(71).toString()}% `
|
||||||
plugins.beautylog.ok(
|
+ `coverage exceeds your treshold of `
|
||||||
`${percentageArg.toString()}% `
|
+ `${configArg.coverageTreshold.toString()}%`
|
||||||
+ `coverage exceeds your treshold of `
|
)
|
||||||
+ `${configArg.coverageTreshold.toString()}%`
|
} else {
|
||||||
)
|
plugins.beautylog.warn(
|
||||||
} else {
|
`${(71).toString()}% `
|
||||||
plugins.beautylog.warn(
|
+ `coverage fails your treshold of `
|
||||||
`${percentageArg.toString()}% `
|
+ `${configArg.coverageTreshold.toString()}%`
|
||||||
+ `coverage fails your treshold of `
|
)
|
||||||
+ `${configArg.coverageTreshold.toString()}%`
|
plugins.beautylog.error('exiting due to coverage failure')
|
||||||
)
|
if (!configArg.watch) { process.exit(1) }
|
||||||
plugins.beautylog.error('exiting due to coverage failure')
|
}
|
||||||
if (!configArg.watch) { process.exit(1) }
|
done.resolve(configArg)
|
||||||
}
|
return done.promise
|
||||||
done.resolve(configArg)
|
|
||||||
})
|
|
||||||
return done.promise
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export let run = function (configArg: INpmtsConfig) {
|
export let run = function (configArg: INpmtsConfig) {
|
||||||
let done = q.defer<INpmtsConfig>()
|
let done = q.defer<INpmtsConfig>()
|
||||||
let config = configArg
|
let config = configArg
|
||||||
if (config.test === true) {
|
if (config.test === true) {
|
||||||
plugins.beautylog.ora.text('now starting tests')
|
plugins.beautylog.ora.text('now starting tests')
|
||||||
plugins.beautylog.log(
|
plugins.beautylog.ora.end()
|
||||||
'------------------------------------------------------\n' +
|
plugins.beautylog.log('ready for tapbuffer:')
|
||||||
'*************************** TESTS: ***************************\n' +
|
|
||||||
'--------------------------------------------------------------'
|
|
||||||
)
|
|
||||||
|
|
||||||
mocha(config)
|
tap(config)
|
||||||
.then(coverage)
|
.then(handleCoverageData)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
done.resolve(config)
|
|
||||||
}).catch(err => { console.log(err) })
|
|
||||||
} else {
|
|
||||||
plugins.beautylog.ora.end()
|
|
||||||
done.resolve(config)
|
done.resolve(config)
|
||||||
}
|
}).catch(err => { console.log(err) })
|
||||||
return done.promise
|
} else {
|
||||||
|
plugins.beautylog.ora.end()
|
||||||
|
done.resolve(config)
|
||||||
|
}
|
||||||
|
return done.promise
|
||||||
}
|
}
|
||||||
|
@ -2,18 +2,14 @@ export * from '../npmts.plugins'
|
|||||||
|
|
||||||
import * as gulp from 'gulp'
|
import * as gulp from 'gulp'
|
||||||
import * as gulpFunction from 'gulp-function'
|
import * as gulpFunction from 'gulp-function'
|
||||||
import * as gulpIstanbul from 'gulp-istanbul'
|
|
||||||
let gulpInjectModules = require('gulp-inject-modules')
|
|
||||||
import * as gulpMocha from 'gulp-mocha'
|
|
||||||
import * as gulpSourcemaps from 'gulp-sourcemaps'
|
import * as gulpSourcemaps from 'gulp-sourcemaps'
|
||||||
import * as gulpTypeScript from 'gulp-typescript'
|
import * as gulpTypeScript from 'gulp-typescript'
|
||||||
|
import * as tapbuffer from 'tapbuffer'
|
||||||
|
|
||||||
export {
|
export {
|
||||||
gulp,
|
gulp,
|
||||||
gulpFunction,
|
gulpFunction,
|
||||||
gulpIstanbul,
|
|
||||||
gulpInjectModules,
|
|
||||||
gulpMocha,
|
|
||||||
gulpSourcemaps,
|
gulpSourcemaps,
|
||||||
gulpTypeScript
|
gulpTypeScript,
|
||||||
|
tapbuffer
|
||||||
}
|
}
|
||||||
|
@ -7,52 +7,55 @@ import * as NpmtsMods from './npmts.mods'
|
|||||||
import * as NpmtsWatch from './npmts.watch'
|
import * as NpmtsWatch from './npmts.watch'
|
||||||
import * as NpmtsShip from './npmts.ship'
|
import * as NpmtsShip from './npmts.ship'
|
||||||
|
|
||||||
export let run = () => {
|
let npmtsAnalytics = new plugins.smartanalytics.AnalyticsAccount('npmts','UA-64087619-2')
|
||||||
let done = q.defer()
|
npmtsAnalytics.sendEvent('npm','exec','push.rocks')
|
||||||
let npmtsProjectInfo = new plugins.projectinfo.ProjectinfoNpm(paths.npmtsPackageRoot)
|
|
||||||
let npmtsCli = new plugins.smartcli.Smartcli()
|
|
||||||
npmtsCli.standardTask()
|
|
||||||
.then((argvArg) => {
|
|
||||||
plugins.beautylog.figletSync('NPMTS')
|
|
||||||
plugins.beautylog.info('npmts version: ' + npmtsProjectInfo.version)
|
|
||||||
return NpmtsConfig.run(argvArg)
|
|
||||||
})
|
|
||||||
.then((configArg: NpmtsConfig.INpmtsConfig) => {
|
|
||||||
let done = q.defer()
|
|
||||||
plugins.beautylog.ora.start('loading additional modules...')
|
|
||||||
NpmtsMods.mod00.load()
|
|
||||||
.then((mod00) => {
|
|
||||||
return mod00.run(configArg)
|
|
||||||
})
|
|
||||||
.then(configArg => {
|
|
||||||
let done = q.defer<NpmtsConfig.INpmtsConfig>()
|
|
||||||
NpmtsMods.mod01.load()
|
|
||||||
.then(mod01 => {
|
|
||||||
return mod01.run(configArg)
|
|
||||||
})
|
|
||||||
.then(configArg => {
|
|
||||||
done.resolve(configArg)
|
|
||||||
})
|
|
||||||
return done.promise
|
|
||||||
})
|
|
||||||
.then(configArg => {
|
|
||||||
let done = q.defer<NpmtsConfig.INpmtsConfig>()
|
|
||||||
NpmtsMods.mod02.load()
|
|
||||||
.then(mod02 => {
|
|
||||||
return mod02.run(configArg)
|
|
||||||
})
|
|
||||||
.then(configArg => {
|
|
||||||
done.resolve(configArg)
|
|
||||||
})
|
|
||||||
return done.promise
|
|
||||||
})
|
|
||||||
.then(NpmtsWatch.run)
|
|
||||||
.then(NpmtsShip.run)
|
|
||||||
|
|
||||||
return done.promise
|
export let run = () => {
|
||||||
|
let done = q.defer()
|
||||||
|
let npmtsProjectInfo = new plugins.projectinfo.ProjectinfoNpm(paths.npmtsPackageRoot)
|
||||||
|
let npmtsCli = new plugins.smartcli.Smartcli()
|
||||||
|
npmtsCli.standardTask()
|
||||||
|
.then((argvArg) => {
|
||||||
|
plugins.beautylog.figletSync('NPMTS')
|
||||||
|
plugins.beautylog.info('npmts version: ' + npmtsProjectInfo.version)
|
||||||
|
return NpmtsConfig.run(argvArg)
|
||||||
|
})
|
||||||
|
.then((configArg: NpmtsConfig.INpmtsConfig) => {
|
||||||
|
let done = q.defer()
|
||||||
|
plugins.beautylog.ora.start('loading additional modules...')
|
||||||
|
NpmtsMods.mod00.load()
|
||||||
|
.then((mod00) => {
|
||||||
|
return mod00.run(configArg)
|
||||||
})
|
})
|
||||||
.catch((err) => { if (err instanceof Error) { console.log(err) } } )
|
.then(configArg => {
|
||||||
npmtsCli.addVersion(npmtsProjectInfo.version)
|
let done = q.defer<NpmtsConfig.INpmtsConfig>()
|
||||||
npmtsCli.startParse()
|
NpmtsMods.mod01.load()
|
||||||
return done.promise
|
.then(mod01 => {
|
||||||
|
return mod01.run(configArg)
|
||||||
|
})
|
||||||
|
.then(configArg => {
|
||||||
|
done.resolve(configArg)
|
||||||
|
})
|
||||||
|
return done.promise
|
||||||
|
})
|
||||||
|
.then(configArg => {
|
||||||
|
let done = q.defer<NpmtsConfig.INpmtsConfig>()
|
||||||
|
NpmtsMods.mod02.load()
|
||||||
|
.then(mod02 => {
|
||||||
|
return mod02.run(configArg)
|
||||||
|
})
|
||||||
|
.then(configArg => {
|
||||||
|
done.resolve(configArg)
|
||||||
|
})
|
||||||
|
return done.promise
|
||||||
|
})
|
||||||
|
.then(NpmtsWatch.run)
|
||||||
|
.then(NpmtsShip.run)
|
||||||
|
|
||||||
|
return done.promise
|
||||||
|
})
|
||||||
|
.catch((err) => { if (err instanceof Error) { console.log(err) } })
|
||||||
|
npmtsCli.addVersion(npmtsProjectInfo.version)
|
||||||
|
npmtsCli.startParse()
|
||||||
|
return done.promise
|
||||||
}
|
}
|
||||||
|
@ -6,8 +6,8 @@ import * as lodash from 'lodash'
|
|||||||
import * as npmextra from 'npmextra'
|
import * as npmextra from 'npmextra'
|
||||||
import * as projectinfo from 'projectinfo'
|
import * as projectinfo from 'projectinfo'
|
||||||
import * as path from 'path'
|
import * as path from 'path'
|
||||||
|
import * as smartanalytics from 'smartanalytics'
|
||||||
import * as smartcli from 'smartcli'
|
import * as smartcli from 'smartcli'
|
||||||
import * as smartcov from 'smartcov'
|
|
||||||
import * as smartenv from 'smartenv'
|
import * as smartenv from 'smartenv'
|
||||||
import * as smartfile from 'smartfile'
|
import * as smartfile from 'smartfile'
|
||||||
import * as smartpath from 'smartpath'
|
import * as smartpath from 'smartpath'
|
||||||
@ -24,8 +24,8 @@ export {
|
|||||||
npmextra,
|
npmextra,
|
||||||
projectinfo,
|
projectinfo,
|
||||||
path,
|
path,
|
||||||
|
smartanalytics,
|
||||||
smartcli,
|
smartcli,
|
||||||
smartcov,
|
|
||||||
smartenv,
|
smartenv,
|
||||||
smartfile,
|
smartfile,
|
||||||
smartpath,
|
smartpath,
|
||||||
|
Reference in New Issue
Block a user