Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
57aa38af89 | |||
12cf37f01f |
1
dist/mod02/index.js
vendored
1
dist/mod02/index.js
vendored
@ -42,6 +42,7 @@ let mocha = function (configArg) {
|
|||||||
]);
|
]);
|
||||||
babelCoverageSmartstream.run()
|
babelCoverageSmartstream.run()
|
||||||
.then(() => {
|
.then(() => {
|
||||||
|
plugins.beautylog.info('transpiled code to ES5 for use in mocha');
|
||||||
return localSmartstream.run()
|
return localSmartstream.run()
|
||||||
.then(() => { done.resolve(configArg); }, (err) => {
|
.then(() => { done.resolve(configArg); }, (err) => {
|
||||||
plugins.beautylog.error('Tests failed!');
|
plugins.beautylog.error('Tests failed!');
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "npmts",
|
"name": "npmts",
|
||||||
"version": "5.5.6",
|
"version": "5.5.7",
|
||||||
"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": {
|
||||||
|
@ -48,6 +48,7 @@ let mocha = function (configArg: INpmtsConfig) {
|
|||||||
babelCoverageSmartstream.run()
|
babelCoverageSmartstream.run()
|
||||||
.then(
|
.then(
|
||||||
() => {
|
() => {
|
||||||
|
plugins.beautylog.info('transpiled code to ES5 for use in mocha')
|
||||||
return localSmartstream.run()
|
return localSmartstream.run()
|
||||||
.then(() => { done.resolve(configArg) }, (err) => {
|
.then(() => { done.resolve(configArg) }, (err) => {
|
||||||
plugins.beautylog.error('Tests failed!')
|
plugins.beautylog.error('Tests failed!')
|
||||||
|
Reference in New Issue
Block a user