Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
329e0dc101 | |||
da45d002a3 | |||
59e811247f |
3
dist/mod02/index.js
vendored
3
dist/mod02/index.js
vendored
@ -28,7 +28,8 @@ let mocha = function (configArg) {
|
|||||||
plugins.gulpTypeScript({
|
plugins.gulpTypeScript({
|
||||||
target: 'ES5',
|
target: 'ES5',
|
||||||
emitDecoratorMetadata: true,
|
emitDecoratorMetadata: true,
|
||||||
experimentalDecorators: true
|
experimentalDecorators: true,
|
||||||
|
lib: ['es2015.promise', 'es5']
|
||||||
}),
|
}),
|
||||||
plugins.gulpIstanbul({}),
|
plugins.gulpIstanbul({}),
|
||||||
plugins.gulpSourcemaps.write(),
|
plugins.gulpSourcemaps.write(),
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "npmts",
|
"name": "npmts",
|
||||||
"version": "6.1.0",
|
"version": "6.1.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": {
|
||||||
@ -37,7 +37,6 @@
|
|||||||
"@types/gulp": "^3.8.32",
|
"@types/gulp": "^3.8.32",
|
||||||
"@types/gulp-istanbul": "^0.9.30",
|
"@types/gulp-istanbul": "^0.9.30",
|
||||||
"@types/gulp-mocha": "0.0.29",
|
"@types/gulp-mocha": "0.0.29",
|
||||||
"@types/gulp-rename": "0.0.31",
|
|
||||||
"@types/gulp-sourcemaps": "0.0.29",
|
"@types/gulp-sourcemaps": "0.0.29",
|
||||||
"@types/minimatch": "^2.0.29",
|
"@types/minimatch": "^2.0.29",
|
||||||
"@types/q": "^0.x.x",
|
"@types/q": "^0.x.x",
|
||||||
|
@ -24,7 +24,8 @@ let mocha = function (configArg: INpmtsConfig) {
|
|||||||
plugins.gulpTypeScript({
|
plugins.gulpTypeScript({
|
||||||
target: 'ES5',
|
target: 'ES5',
|
||||||
emitDecoratorMetadata: true,
|
emitDecoratorMetadata: true,
|
||||||
experimentalDecorators: true
|
experimentalDecorators: true,
|
||||||
|
lib: ['es2015.promise','es5']
|
||||||
}),
|
}),
|
||||||
plugins.gulpIstanbul({
|
plugins.gulpIstanbul({
|
||||||
}),
|
}),
|
||||||
|
Reference in New Issue
Block a user