Compare commits
14 Commits
Author | SHA1 | Date | |
---|---|---|---|
1898db5472 | |||
1f01bee204 | |||
851653a6ae | |||
9229cd79dd | |||
86fb639c82 | |||
d536e6aa8c | |||
c91ff6ef4a | |||
2c88c889bf | |||
d3f8ea0433 | |||
d57b05c6d0 | |||
e1ce5f2d5b | |||
7c960649bc | |||
71588595e6 | |||
b31994f163 |
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,4 +1,6 @@
|
|||||||
node_modules/
|
node_modules/
|
||||||
test/
|
test/
|
||||||
pages/
|
pages/
|
||||||
|
public/
|
||||||
|
npm-debug/
|
||||||
.DS_Store
|
.DS_Store
|
10
README.md
10
README.md
@ -5,7 +5,7 @@ Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.
|
|||||||
[](https://www.npmjs.com/package/npmts)
|
[](https://www.npmjs.com/package/npmts)
|
||||||
[](https://gitlab.com/pushrocks/npmts)
|
[](https://gitlab.com/pushrocks/npmts)
|
||||||
[](https://github.com/pushrocks/npmts)
|
[](https://github.com/pushrocks/npmts)
|
||||||
[](https://pushrocks.gitlab.io/npmts/gitbook)
|
[](https://pushrocks.gitlab.io/npmts/)
|
||||||
|
|
||||||
## Status for master
|
## Status for master
|
||||||
[](https://gitlab.com/pushrocks/npmts/commits/master)
|
[](https://gitlab.com/pushrocks/npmts/commits/master)
|
||||||
@ -31,6 +31,12 @@ npmts will
|
|||||||
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 docs.
|
For further information read the docs:
|
||||||
|
1. [Intro](https://pushrocks.gitlab.io/npmts/index.html)
|
||||||
|
2. [Install](https://pushrocks.gitlab.io/npmts/install.html)
|
||||||
|
3. [Default Behaviour](https://pushrocks.gitlab.io/npmts/default.html)
|
||||||
|
4. [Configuration](https://pushrocks.gitlab.io/npmts/config.html)
|
||||||
|
5. [Examples](https://pushrocks.gitlab.io/npmts/examples.html)
|
||||||
|
6. [Info](https://pushrocks.gitlab.io/npmts/info.html)
|
||||||
|
|
||||||
[](https://push.rocks)
|
[](https://push.rocks)
|
||||||
|
18
dist/npmts.clean.js
vendored
18
dist/npmts.clean.js
vendored
@ -3,10 +3,27 @@ require("typings-global");
|
|||||||
const plugins = require("./npmts.plugins");
|
const plugins = require("./npmts.plugins");
|
||||||
const paths = require("./npmts.paths");
|
const paths = require("./npmts.paths");
|
||||||
const npmts_promisechain_1 = require("./npmts.promisechain");
|
const npmts_promisechain_1 = require("./npmts.promisechain");
|
||||||
|
/**
|
||||||
|
* removes the dist directory which will be entirely rebuild
|
||||||
|
*/
|
||||||
let removeDist = function () {
|
let removeDist = function () {
|
||||||
npmts_promisechain_1.npmtsOra.text('cleaning dist folder');
|
npmts_promisechain_1.npmtsOra.text('cleaning dist folder');
|
||||||
return plugins.smartfile.fs.remove(paths.distDir);
|
return plugins.smartfile.fs.remove(paths.distDir);
|
||||||
};
|
};
|
||||||
|
/**
|
||||||
|
* remove .d.ts files from testDirctory
|
||||||
|
*/
|
||||||
|
let removeTestDeclarations = function () {
|
||||||
|
let done = plugins.q.defer();
|
||||||
|
plugins.smartfile.fs.listFileTree('./test/', '**/*.d.ts').then(fileArray => {
|
||||||
|
let fileArrayToRemove = plugins.smartpath.transform.toAbsolute(fileArray, process.cwd() + '//test/');
|
||||||
|
plugins.smartfile.fs.removeManySync(fileArrayToRemove);
|
||||||
|
done.resolve();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
/**
|
||||||
|
* remove old pages
|
||||||
|
*/
|
||||||
let removePages = function () {
|
let removePages = function () {
|
||||||
npmts_promisechain_1.npmtsOra.text('cleaning pages folder');
|
npmts_promisechain_1.npmtsOra.text('cleaning pages folder');
|
||||||
return plugins.smartfile.fs.remove(paths.pagesDir);
|
return plugins.smartfile.fs.remove(paths.pagesDir);
|
||||||
@ -15,6 +32,7 @@ exports.run = function (configArg) {
|
|||||||
npmts_promisechain_1.npmtsOra.text('cleaning up from previous builds...');
|
npmts_promisechain_1.npmtsOra.text('cleaning up from previous builds...');
|
||||||
let done = plugins.q.defer();
|
let done = plugins.q.defer();
|
||||||
removeDist()
|
removeDist()
|
||||||
|
.then(removeTestDeclarations)
|
||||||
.then(removePages)
|
.then(removePages)
|
||||||
.then(function () {
|
.then(function () {
|
||||||
plugins.beautylog.ok('Cleaned up from previous builds!');
|
plugins.beautylog.ok('Cleaned up from previous builds!');
|
||||||
|
4
dist/npmts.compile.js
vendored
4
dist/npmts.compile.js
vendored
@ -11,11 +11,11 @@ exports.run = function (configArg) {
|
|||||||
.then(() => {
|
.then(() => {
|
||||||
plugins.beautylog.ok('compiled main TypeScript!');
|
plugins.beautylog.ok('compiled main TypeScript!');
|
||||||
plugins.beautylog.log('now compiling tests!');
|
plugins.beautylog.log('now compiling tests!');
|
||||||
return plugins.tsn.compileGlobStringObject(config.testTs);
|
return plugins.tsn.compileGlobStringObject(config.testTs, config.tsOptions, paths.cwd);
|
||||||
})
|
})
|
||||||
.then(function () {
|
.then(function () {
|
||||||
plugins.beautylog.ok('compiled all TypeScript!');
|
plugins.beautylog.ok('compiled all TypeScript!');
|
||||||
done.resolve(config);
|
done.resolve(config);
|
||||||
});
|
}).catch(err => { console.log(err); });
|
||||||
return done.promise;
|
return done.promise;
|
||||||
};
|
};
|
||||||
|
13
dist/npmts.options.js
vendored
13
dist/npmts.options.js
vendored
@ -18,12 +18,9 @@ exports.run = function (argvArg) {
|
|||||||
watch: false
|
watch: false
|
||||||
};
|
};
|
||||||
// mix with configfile
|
// mix with configfile
|
||||||
npmts_promisechain_1.npmtsOra.text('looking for npmextra.json');
|
npmts_promisechain_1.npmtsOra.text('running npmextra');
|
||||||
let config = plugins.npmextra.dataFor({
|
let localNpmextra = new plugins.npmextra.Npmextra(paths.cwd);
|
||||||
toolName: 'npmts',
|
let config = localNpmextra.dataFor('npmts', defaultConfig);
|
||||||
defaultSettings: defaultConfig,
|
|
||||||
cwd: paths.cwd
|
|
||||||
});
|
|
||||||
// add argv
|
// add argv
|
||||||
config.argv = argvArg;
|
config.argv = argvArg;
|
||||||
// check mode
|
// check mode
|
||||||
@ -41,10 +38,10 @@ exports.run = function (argvArg) {
|
|||||||
// handle default mode
|
// handle default mode
|
||||||
if (config.mode === 'default') {
|
if (config.mode === 'default') {
|
||||||
config.ts = {
|
config.ts = {
|
||||||
['./ts/**/*.ts']: './dist/'
|
'./ts/**/*.ts': './dist/'
|
||||||
};
|
};
|
||||||
config.testTs = {
|
config.testTs = {
|
||||||
['./test/test.ts']: './test/'
|
'./test/**/*.ts': './test/'
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
1
dist/npmts.plugins.d.ts
vendored
1
dist/npmts.plugins.d.ts
vendored
@ -23,6 +23,7 @@ export import smartcov = require('smartcov');
|
|||||||
export import smartenv = require('smartenv');
|
export import smartenv = require('smartenv');
|
||||||
export import smartfile = require('smartfile');
|
export import smartfile = require('smartfile');
|
||||||
export import smartpath = require('smartpath');
|
export import smartpath = require('smartpath');
|
||||||
|
export import smartstream = require('smartstream');
|
||||||
export import smartstring = require('smartstring');
|
export import smartstring = require('smartstring');
|
||||||
export declare let sourceMapSupport: any;
|
export declare let sourceMapSupport: any;
|
||||||
export import tsn = require('tsn');
|
export import tsn = require('tsn');
|
||||||
|
1
dist/npmts.plugins.js
vendored
1
dist/npmts.plugins.js
vendored
@ -24,6 +24,7 @@ exports.smartcov = require("smartcov");
|
|||||||
exports.smartenv = require("smartenv");
|
exports.smartenv = require("smartenv");
|
||||||
exports.smartfile = require("smartfile");
|
exports.smartfile = require("smartfile");
|
||||||
exports.smartpath = require("smartpath");
|
exports.smartpath = require("smartpath");
|
||||||
|
exports.smartstream = require("smartstream");
|
||||||
exports.smartstring = require("smartstring");
|
exports.smartstring = require("smartstring");
|
||||||
exports.sourceMapSupport = require('source-map-support').install(); // display errors correctly during testing
|
exports.sourceMapSupport = require('source-map-support').install(); // display errors correctly during testing
|
||||||
exports.tsn = require("tsn");
|
exports.tsn = require("tsn");
|
||||||
|
3
dist/npmts.tests.d.ts
vendored
3
dist/npmts.tests.d.ts
vendored
@ -1,4 +1,5 @@
|
|||||||
/// <reference types="q" />
|
/// <reference types="q" />
|
||||||
import 'typings-global';
|
import 'typings-global';
|
||||||
import plugins = require('./npmts.plugins');
|
import plugins = require('./npmts.plugins');
|
||||||
export declare let run: (configArg: any) => plugins.q.Promise<{}>;
|
import { INpmtsConfig } from './npmts.options';
|
||||||
|
export declare let run: (configArg: INpmtsConfig) => plugins.q.Promise<{}>;
|
||||||
|
48
dist/npmts.tests.js
vendored
48
dist/npmts.tests.js
vendored
@ -4,8 +4,8 @@ const plugins = require("./npmts.plugins");
|
|||||||
const paths = require("./npmts.paths");
|
const paths = require("./npmts.paths");
|
||||||
const npmts_promisechain_1 = require("./npmts.promisechain");
|
const npmts_promisechain_1 = require("./npmts.promisechain");
|
||||||
/**
|
/**
|
||||||
*
|
* runs mocha
|
||||||
* @returns {*}
|
* @returns INpmtsConfig
|
||||||
*/
|
*/
|
||||||
let mocha = function (configArg) {
|
let mocha = function (configArg) {
|
||||||
npmts_promisechain_1.npmtsOra.text('Instrumentalizing and testing transpiled JS');
|
npmts_promisechain_1.npmtsOra.text('Instrumentalizing and testing transpiled JS');
|
||||||
@ -22,22 +22,30 @@ let mocha = function (configArg) {
|
|||||||
.pipe(plugins.g.sourcemaps.write())
|
.pipe(plugins.g.sourcemaps.write())
|
||||||
.pipe(plugins.g.injectModules())
|
.pipe(plugins.g.injectModules())
|
||||||
.on('finish', function () {
|
.on('finish', function () {
|
||||||
plugins.gulp.src([plugins.path.join(paths.cwd, 'test/test.js')])
|
let localSmartstream = new plugins.smartstream.Smartstream([
|
||||||
.pipe(plugins.g.babel({
|
plugins.gulp.src([plugins.path.join(paths.cwd, 'test/test.js')]),
|
||||||
presets: [
|
plugins.g.babel({
|
||||||
require.resolve('babel-preset-es2015')
|
presets: [
|
||||||
]
|
require.resolve('babel-preset-es2015')
|
||||||
}))
|
]
|
||||||
.pipe(plugins.g.injectModules())
|
}),
|
||||||
.pipe(plugins.g.mocha())
|
plugins.g.injectModules(),
|
||||||
.pipe(plugins.g.istanbul.writeReports({
|
plugins.g.mocha(),
|
||||||
dir: plugins.path.join(paths.cwd, './coverage'),
|
plugins.g.istanbul.writeReports({
|
||||||
reporters: ['lcovonly', 'json', 'text', 'text-summary']
|
dir: plugins.path.join(paths.cwd, './coverage'),
|
||||||
}))
|
reporters: ['lcovonly', 'json', 'text', 'text-summary']
|
||||||
.pipe(plugins.g.gFunction(function () {
|
})
|
||||||
plugins.beautylog.ok('Tested!');
|
]);
|
||||||
done.resolve(configArg);
|
localSmartstream.run()
|
||||||
}, 'atEnd'));
|
.then(() => { done.resolve(configArg); }, (err) => {
|
||||||
|
plugins.beautylog.error('Tests failed!');
|
||||||
|
if (configArg.watch) {
|
||||||
|
done.resolve(configArg);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
return done.promise;
|
return done.promise;
|
||||||
};
|
};
|
||||||
@ -55,7 +63,9 @@ let coverage = function (configArg) {
|
|||||||
+ `coverage fails your treshold of `
|
+ `coverage fails your treshold of `
|
||||||
+ `${configArg.coverageTreshold.toString()}%`);
|
+ `${configArg.coverageTreshold.toString()}%`);
|
||||||
plugins.beautylog.error('exiting due to coverage failure');
|
plugins.beautylog.error('exiting due to coverage failure');
|
||||||
process.exit(1);
|
if (!configArg.watch) {
|
||||||
|
process.exit(1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
done.resolve(configArg);
|
done.resolve(configArg);
|
||||||
});
|
});
|
||||||
|
3
dist/npmts.watch.d.ts
vendored
3
dist/npmts.watch.d.ts
vendored
@ -1,3 +1,4 @@
|
|||||||
/// <reference types="q" />
|
/// <reference types="q" />
|
||||||
import * as plugins from './npmts.plugins';
|
import * as plugins from './npmts.plugins';
|
||||||
export declare let run: (configArg: any) => plugins.q.Promise<{}>;
|
import { INpmtsConfig } from './npmts.options';
|
||||||
|
export declare let run: (configArg: INpmtsConfig) => plugins.q.Promise<{}>;
|
||||||
|
3
dist/npmts.watch.js
vendored
3
dist/npmts.watch.js
vendored
@ -9,6 +9,9 @@ exports.run = (configArg) => {
|
|||||||
for (let key in configArg.ts) {
|
for (let key in configArg.ts) {
|
||||||
pathsToWatch.push(key);
|
pathsToWatch.push(key);
|
||||||
}
|
}
|
||||||
|
for (let key in configArg.testTs) {
|
||||||
|
pathsToWatch.push(key);
|
||||||
|
}
|
||||||
npmtsSmartchok = new plugins.smartchok.Smartchok(pathsToWatch);
|
npmtsSmartchok = new plugins.smartchok.Smartchok(pathsToWatch);
|
||||||
npmtsSmartchok.getObservableFor('change').then((changeObservableArg) => {
|
npmtsSmartchok.getObservableFor('change').then((changeObservableArg) => {
|
||||||
plugins.beautylog.info('now watching...');
|
plugins.beautylog.info('now watching...');
|
||||||
|
@ -5,7 +5,7 @@ Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.
|
|||||||
[](https://www.npmjs.com/package/npmts)
|
[](https://www.npmjs.com/package/npmts)
|
||||||
[](https://gitlab.com/pushrocks/npmts)
|
[](https://gitlab.com/pushrocks/npmts)
|
||||||
[](https://github.com/pushrocks/npmts)
|
[](https://github.com/pushrocks/npmts)
|
||||||
[](https://pushrocks.gitlab.io/npmts/docs)
|
[](https://pushrocks.gitlab.io/npmts/gitbook)
|
||||||
|
|
||||||
## Status for master
|
## Status for master
|
||||||
[](https://gitlab.com/pushrocks/npmts/commits/master)
|
[](https://gitlab.com/pushrocks/npmts/commits/master)
|
||||||
@ -31,6 +31,12 @@ npmts will
|
|||||||
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 docs.
|
For further information read the docs:
|
||||||
|
* [1. Intro](https://pushrocks.gitlab.io/npmts/gitbook/index.md)
|
||||||
|
* [2. Install](https://pushrocks.gitlab.io/npmts/gitbook/install.md)
|
||||||
|
* [3. Default Behaviour](https://pushrocks.gitlab.io/npmts/gitbook/default.md)
|
||||||
|
* [4. Configuration](https://pushrocks.gitlab.io/npmts/gitbook/config.md)
|
||||||
|
* [5. Examples](https://pushrocks.gitlab.io/npmts/gitbook/examples.md)
|
||||||
|
* [6. Info](https://pushrocks.gitlab.io/npmts/gitbook/info.md)
|
||||||
|
|
||||||
[](https://push.rocks)
|
[](https://push.rocks)
|
@ -1,15 +0,0 @@
|
|||||||
{
|
|
||||||
"structure": {
|
|
||||||
"readme": "index.md"
|
|
||||||
},
|
|
||||||
"plugins": [
|
|
||||||
"tonic",
|
|
||||||
"edit-link"
|
|
||||||
],
|
|
||||||
"pluginsConfig": {
|
|
||||||
"edit-link": {
|
|
||||||
"base": "https://gitlab.com/pushrocks/npmts/edit/master/docs/",
|
|
||||||
"label": "Edit on GitLab"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
15
package.json
15
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "npmts",
|
"name": "npmts",
|
||||||
"version": "5.4.36",
|
"version": "5.4.43",
|
||||||
"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": {
|
||||||
@ -38,7 +38,7 @@
|
|||||||
"@types/minimatch": "^2.0.29",
|
"@types/minimatch": "^2.0.29",
|
||||||
"@types/q": "^0.x.x",
|
"@types/q": "^0.x.x",
|
||||||
"@types/shelljs": "^0.3.31",
|
"@types/shelljs": "^0.3.31",
|
||||||
"babel-preset-es2015": "^6.14.0",
|
"babel-preset-es2015": "^6.16.0",
|
||||||
"beautylog": "5.0.23",
|
"beautylog": "5.0.23",
|
||||||
"depcheck": "^0.6.4",
|
"depcheck": "^0.6.4",
|
||||||
"early": "^2.0.35",
|
"early": "^2.0.35",
|
||||||
@ -50,8 +50,8 @@
|
|||||||
"gulp-mocha": "^3.0.1",
|
"gulp-mocha": "^3.0.1",
|
||||||
"gulp-sourcemaps": "^1.6.0",
|
"gulp-sourcemaps": "^1.6.0",
|
||||||
"gulp-typedoc": "^2.0.0",
|
"gulp-typedoc": "^2.0.0",
|
||||||
"lodash": "^4.16.1",
|
"lodash": "^4.16.2",
|
||||||
"npmextra": "^1.0.12",
|
"npmextra": "^2.0.3",
|
||||||
"projectinfo": "1.0.3",
|
"projectinfo": "1.0.3",
|
||||||
"q": "^1.4.1",
|
"q": "^1.4.1",
|
||||||
"shelljs": "^0.7.4",
|
"shelljs": "^0.7.4",
|
||||||
@ -59,11 +59,12 @@
|
|||||||
"smartcli": "1.0.9",
|
"smartcli": "1.0.9",
|
||||||
"smartcov": "1.0.0",
|
"smartcov": "1.0.0",
|
||||||
"smartenv": "1.2.5",
|
"smartenv": "1.2.5",
|
||||||
"smartfile": "4.0.20",
|
"smartfile": "4.0.22",
|
||||||
"smartpath": "3.2.2",
|
"smartpath": "3.2.2",
|
||||||
|
"smartstream": "^1.0.5",
|
||||||
"smartstring": "^2.0.17",
|
"smartstring": "^2.0.17",
|
||||||
"source-map-support": "^0.4.2",
|
"source-map-support": "^0.4.3",
|
||||||
"tsn": "^2.0.3",
|
"tsn": "^2.0.4",
|
||||||
"typedoc": "^0.4.5",
|
"typedoc": "^0.4.5",
|
||||||
"typescript": "next",
|
"typescript": "next",
|
||||||
"typings-global": "^1.0.14"
|
"typings-global": "^1.0.14"
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
import 'typings-global'
|
import 'typings-global'
|
||||||
import plugins = require('./npmts.plugins')
|
import plugins = require('./npmts.plugins')
|
||||||
import paths = require('./npmts.paths')
|
import paths = require('./npmts.paths')
|
||||||
import {npmtsOra} from './npmts.promisechain'
|
import { npmtsOra } from './npmts.promisechain'
|
||||||
|
|
||||||
let removeDist = function(){
|
/**
|
||||||
|
* removes the dist directory which will be entirely rebuild
|
||||||
|
*/
|
||||||
|
let removeDist = function () {
|
||||||
npmtsOra.text('cleaning dist folder')
|
npmtsOra.text('cleaning dist folder')
|
||||||
return plugins.smartfile.fs.remove(paths.distDir)
|
return plugins.smartfile.fs.remove(paths.distDir)
|
||||||
}
|
}
|
||||||
|
|
||||||
let removePages = function(){
|
/**
|
||||||
|
* remove .d.ts files from testDirctory
|
||||||
|
*/
|
||||||
|
let removeTestDeclarations = function () {
|
||||||
|
let done = plugins.q.defer()
|
||||||
|
plugins.smartfile.fs.listFileTree('./test/', '**/*.d.ts').then(fileArray => {
|
||||||
|
let fileArrayToRemove = plugins.smartpath.transform.toAbsolute(fileArray, process.cwd() + '//test/')
|
||||||
|
plugins.smartfile.fs.removeManySync(fileArrayToRemove)
|
||||||
|
done.resolve()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* remove old pages
|
||||||
|
*/
|
||||||
|
let removePages = function () {
|
||||||
npmtsOra.text('cleaning pages folder')
|
npmtsOra.text('cleaning pages folder')
|
||||||
return plugins.smartfile.fs.remove(paths.pagesDir)
|
return plugins.smartfile.fs.remove(paths.pagesDir)
|
||||||
}
|
}
|
||||||
|
|
||||||
export let run = function(configArg){
|
export let run = function (configArg) {
|
||||||
npmtsOra.text('cleaning up from previous builds...')
|
npmtsOra.text('cleaning up from previous builds...')
|
||||||
let done = plugins.q.defer()
|
let done = plugins.q.defer()
|
||||||
removeDist()
|
removeDist()
|
||||||
|
.then(removeTestDeclarations)
|
||||||
.then(removePages)
|
.then(removePages)
|
||||||
.then(function(){
|
.then(function () {
|
||||||
plugins.beautylog.ok('Cleaned up from previous builds!')
|
plugins.beautylog.ok('Cleaned up from previous builds!')
|
||||||
done.resolve(configArg)
|
done.resolve(configArg)
|
||||||
})
|
})
|
||||||
|
@ -11,11 +11,11 @@ export let run = function (configArg) {
|
|||||||
.then(() => {
|
.then(() => {
|
||||||
plugins.beautylog.ok('compiled main TypeScript!')
|
plugins.beautylog.ok('compiled main TypeScript!')
|
||||||
plugins.beautylog.log('now compiling tests!')
|
plugins.beautylog.log('now compiling tests!')
|
||||||
return plugins.tsn.compileGlobStringObject(config.testTs)
|
return plugins.tsn.compileGlobStringObject(config.testTs,config.tsOptions,paths.cwd)
|
||||||
})
|
})
|
||||||
.then(function () {
|
.then(function () {
|
||||||
plugins.beautylog.ok('compiled all TypeScript!')
|
plugins.beautylog.ok('compiled all TypeScript!')
|
||||||
done.resolve(config)
|
done.resolve(config)
|
||||||
})
|
}).catch(err => { console.log(err) })
|
||||||
return done.promise
|
return done.promise
|
||||||
}
|
}
|
||||||
|
@ -33,12 +33,13 @@ export var run = function (argvArg) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// mix with configfile
|
// mix with configfile
|
||||||
npmtsOra.text('looking for npmextra.json')
|
npmtsOra.text('running npmextra')
|
||||||
let config: INpmtsConfig = plugins.npmextra.dataFor<INpmtsConfig>({
|
|
||||||
toolName: 'npmts',
|
let localNpmextra = new plugins.npmextra.Npmextra(paths.cwd)
|
||||||
defaultSettings: defaultConfig,
|
let config: INpmtsConfig = localNpmextra.dataFor<INpmtsConfig>(
|
||||||
cwd: paths.cwd
|
'npmts',
|
||||||
})
|
defaultConfig
|
||||||
|
)
|
||||||
|
|
||||||
// add argv
|
// add argv
|
||||||
config.argv = argvArg
|
config.argv = argvArg
|
||||||
@ -58,10 +59,10 @@ export var run = function (argvArg) {
|
|||||||
// handle default mode
|
// handle default mode
|
||||||
if (config.mode === 'default') {
|
if (config.mode === 'default') {
|
||||||
config.ts = {
|
config.ts = {
|
||||||
['./ts/**/*.ts']: './dist/'
|
'./ts/**/*.ts': './dist/'
|
||||||
}
|
}
|
||||||
config.testTs = {
|
config.testTs = {
|
||||||
['./test/test.ts']: './test/'
|
'./test/**/*.ts': './test/'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -23,6 +23,7 @@ export import smartcov = require('smartcov')
|
|||||||
export import smartenv = require('smartenv')
|
export import smartenv = require('smartenv')
|
||||||
export import smartfile = require('smartfile')
|
export import smartfile = require('smartfile')
|
||||||
export import smartpath = require('smartpath')
|
export import smartpath = require('smartpath')
|
||||||
|
export import smartstream = require('smartstream')
|
||||||
export import smartstring = require('smartstring')
|
export import smartstring = require('smartstring')
|
||||||
export let sourceMapSupport = require('source-map-support').install() // display errors correctly during testing
|
export let sourceMapSupport = require('source-map-support').install() // display errors correctly during testing
|
||||||
export import tsn = require('tsn')
|
export import tsn = require('tsn')
|
||||||
|
@ -2,12 +2,13 @@ import 'typings-global'
|
|||||||
import plugins = require('./npmts.plugins')
|
import plugins = require('./npmts.plugins')
|
||||||
import paths = require('./npmts.paths')
|
import paths = require('./npmts.paths')
|
||||||
import { npmtsOra } from './npmts.promisechain'
|
import { npmtsOra } from './npmts.promisechain'
|
||||||
|
import { INpmtsConfig } from './npmts.options'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* runs mocha
|
||||||
* @returns {*}
|
* @returns INpmtsConfig
|
||||||
*/
|
*/
|
||||||
let mocha = function (configArg) {
|
let mocha = function (configArg: INpmtsConfig) {
|
||||||
npmtsOra.text('Instrumentalizing and testing transpiled JS')
|
npmtsOra.text('Instrumentalizing and testing transpiled JS')
|
||||||
npmtsOra.end() // end npmtsOra for tests.
|
npmtsOra.end() // end npmtsOra for tests.
|
||||||
let done = plugins.q.defer()
|
let done = plugins.q.defer()
|
||||||
@ -23,30 +24,34 @@ let mocha = function (configArg) {
|
|||||||
.pipe(plugins.g.sourcemaps.write())
|
.pipe(plugins.g.sourcemaps.write())
|
||||||
.pipe(plugins.g.injectModules())
|
.pipe(plugins.g.injectModules())
|
||||||
.on('finish', function () {
|
.on('finish', function () {
|
||||||
plugins.gulp.src([plugins.path.join(paths.cwd, 'test/test.js')])
|
let localSmartstream = new plugins.smartstream.Smartstream([
|
||||||
.pipe(plugins.g.babel({
|
plugins.gulp.src([plugins.path.join(paths.cwd, 'test/test.js')]),
|
||||||
|
plugins.g.babel({
|
||||||
presets: [
|
presets: [
|
||||||
require.resolve('babel-preset-es2015')
|
require.resolve('babel-preset-es2015')
|
||||||
]
|
]
|
||||||
}))
|
}),
|
||||||
.pipe(plugins.g.injectModules())
|
plugins.g.injectModules(),
|
||||||
.pipe(plugins.g.mocha())
|
plugins.g.mocha(),
|
||||||
.pipe(plugins.g.istanbul.writeReports({
|
plugins.g.istanbul.writeReports({
|
||||||
dir: plugins.path.join(paths.cwd, './coverage'),
|
dir: plugins.path.join(paths.cwd, './coverage'),
|
||||||
reporters: ['lcovonly', 'json', 'text', 'text-summary']
|
reporters: ['lcovonly', 'json', 'text', 'text-summary']
|
||||||
}))
|
})
|
||||||
.pipe(plugins.g.gFunction(
|
])
|
||||||
function () {
|
localSmartstream.run()
|
||||||
plugins.beautylog.ok('Tested!')
|
.then(() => { done.resolve(configArg) }, (err) => {
|
||||||
|
plugins.beautylog.error('Tests failed!')
|
||||||
|
if (configArg.watch) {
|
||||||
done.resolve(configArg)
|
done.resolve(configArg)
|
||||||
},
|
} else {
|
||||||
'atEnd'
|
process.exit(1)
|
||||||
))
|
}
|
||||||
|
})
|
||||||
})
|
})
|
||||||
return done.promise
|
return done.promise
|
||||||
}
|
}
|
||||||
|
|
||||||
let coverage = function (configArg) {
|
let coverage = function (configArg: INpmtsConfig) {
|
||||||
let done = plugins.q.defer()
|
let done = plugins.q.defer()
|
||||||
plugins.smartcov.get.percentage(plugins.path.join(paths.coverageDir, 'lcov.info'), 2)
|
plugins.smartcov.get.percentage(plugins.path.join(paths.coverageDir, 'lcov.info'), 2)
|
||||||
.then(function (percentageArg) {
|
.then(function (percentageArg) {
|
||||||
@ -63,14 +68,14 @@ let coverage = function (configArg) {
|
|||||||
+ `${configArg.coverageTreshold.toString()}%`
|
+ `${configArg.coverageTreshold.toString()}%`
|
||||||
)
|
)
|
||||||
plugins.beautylog.error('exiting due to coverage failure')
|
plugins.beautylog.error('exiting due to coverage failure')
|
||||||
process.exit(1)
|
if (!configArg.watch) { process.exit(1) }
|
||||||
}
|
}
|
||||||
done.resolve(configArg)
|
done.resolve(configArg)
|
||||||
})
|
})
|
||||||
return done.promise
|
return done.promise
|
||||||
}
|
}
|
||||||
|
|
||||||
export let run = function (configArg) {
|
export let run = function (configArg: INpmtsConfig) {
|
||||||
let done = plugins.q.defer()
|
let done = plugins.q.defer()
|
||||||
let config = configArg
|
let config = configArg
|
||||||
if (config.test === true) {
|
if (config.test === true) {
|
||||||
|
@ -1,14 +1,18 @@
|
|||||||
import * as plugins from './npmts.plugins'
|
import * as plugins from './npmts.plugins'
|
||||||
import * as promisechain from './npmts.promisechain'
|
import * as promisechain from './npmts.promisechain'
|
||||||
let npmtsSmartchok: plugins.smartchok.Smartchok = null
|
let npmtsSmartchok: plugins.smartchok.Smartchok = null
|
||||||
|
import { INpmtsConfig } from './npmts.options'
|
||||||
|
|
||||||
export let run = (configArg) => {
|
export let run = (configArg: INpmtsConfig) => {
|
||||||
let done = plugins.q.defer()
|
let done = plugins.q.defer()
|
||||||
if (configArg.watch && npmtsSmartchok === null) {
|
if (configArg.watch && npmtsSmartchok === null) {
|
||||||
let pathsToWatch: string[] = []
|
let pathsToWatch: string[] = []
|
||||||
for (let key in configArg.ts) {
|
for (let key in configArg.ts) {
|
||||||
pathsToWatch.push(key)
|
pathsToWatch.push(key)
|
||||||
}
|
}
|
||||||
|
for (let key in configArg.testTs) {
|
||||||
|
pathsToWatch.push(key)
|
||||||
|
}
|
||||||
npmtsSmartchok = new plugins.smartchok.Smartchok(pathsToWatch)
|
npmtsSmartchok = new plugins.smartchok.Smartchok(pathsToWatch)
|
||||||
npmtsSmartchok.getObservableFor('change').then((changeObservableArg) => {
|
npmtsSmartchok.getObservableFor('change').then((changeObservableArg) => {
|
||||||
plugins.beautylog.info('now watching...')
|
plugins.beautylog.info('now watching...')
|
||||||
|
Reference in New Issue
Block a user