Compare commits

...

3 Commits

Author SHA1 Message Date
329e0dc101 6.1.1 2017-01-15 20:12:26 +01:00
da45d002a3 some fixes for es5 transpilation 2017-01-15 20:12:12 +01:00
59e811247f remove unused dep 2017-01-15 20:06:07 +01:00
3 changed files with 5 additions and 4 deletions

3
dist/mod02/index.js vendored
View File

@ -28,7 +28,8 @@ let mocha = function (configArg) {
plugins.gulpTypeScript({
target: 'ES5',
emitDecoratorMetadata: true,
experimentalDecorators: true
experimentalDecorators: true,
lib: ['es2015.promise', 'es5']
}),
plugins.gulpIstanbul({}),
plugins.gulpSourcemaps.write(),

View File

@ -1,6 +1,6 @@
{
"name": "npmts",
"version": "6.1.0",
"version": "6.1.1",
"description": "Write npm modules with TypeScript without hassle. TypeScript ready. Fully ES6.",
"main": "dist/index.js",
"bin": {
@ -37,7 +37,6 @@
"@types/gulp": "^3.8.32",
"@types/gulp-istanbul": "^0.9.30",
"@types/gulp-mocha": "0.0.29",
"@types/gulp-rename": "0.0.31",
"@types/gulp-sourcemaps": "0.0.29",
"@types/minimatch": "^2.0.29",
"@types/q": "^0.x.x",

View File

@ -24,7 +24,8 @@ let mocha = function (configArg: INpmtsConfig) {
plugins.gulpTypeScript({
target: 'ES5',
emitDecoratorMetadata: true,
experimentalDecorators: true
experimentalDecorators: true,
lib: ['es2015.promise','es5']
}),
plugins.gulpIstanbul({
}),