File tree Expand file tree Collapse file tree 4 files changed +13
-33
lines changed Expand file tree Collapse file tree 4 files changed +13
-33
lines changed Original file line number Diff line number Diff line change 1
1
build /
2
2
node_modules /
3
- typings /
4
3
coverage /
5
4
npm-debug.log
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export class Gulpfile {
61
61
const tsProject = ts . createProject ( "tsconfig.json" ) ;
62
62
const tsResult = gulp . src ( [ "./src/**/*.ts" , "./typings/**/*.ts" ] )
63
63
. pipe ( sourcemaps . init ( ) )
64
- . pipe ( ts ( tsProject ) ) ;
64
+ . pipe ( tsProject ( ) ) ;
65
65
66
66
return [
67
67
tsResult . dts . pipe ( gulp . dest ( "./build/package" ) ) ,
@@ -111,15 +111,6 @@ export class Gulpfile {
111
111
. pipe ( gulp . dest ( "./build/package" ) ) ;
112
112
}
113
113
114
- /**
115
- * This task will copy typings.json file to the build package.
116
- */
117
- @Task ( )
118
- copyTypingsFile ( ) {
119
- return gulp . src ( "./typings.json" )
120
- . pipe ( gulp . dest ( "./build/package" ) ) ;
121
- }
122
-
123
114
/**
124
115
* Creates a package that can be published to npm.
125
116
*/
@@ -130,7 +121,7 @@ export class Gulpfile {
130
121
"packageCompile" ,
131
122
"packageMoveCompiledFiles" ,
132
123
"packageClearCompileDirectory" ,
133
- [ "packagePreparePackageFile" , "packageReadmeFile" , "copyTypingsFile" ]
124
+ [ "packagePreparePackageFile" , "packageReadmeFile" ]
134
125
] ;
135
126
}
136
127
Original file line number Diff line number Diff line change 26
26
],
27
27
"dependencies" : {},
28
28
"devDependencies" : {
29
+ "@types/es6-shim" : " ^0.31.32" ,
30
+ "@types/node" : " 0.0.2" ,
29
31
"chai" : " ^3.4.1" ,
30
- "chai-as-promised" : " ^5.3 .0" ,
32
+ "chai-as-promised" : " ^6.0 .0" ,
31
33
"del" : " ^2.2.1" ,
32
34
"es6-shim" : " ^0.35.1" ,
33
35
"gulp" : " ^3.9.1" ,
34
36
"gulp-istanbul" : " ^1.0.0" ,
35
- "gulp-mocha" : " ^2.2.0 " ,
37
+ "gulp-mocha" : " ^3.0.1 " ,
36
38
"gulp-replace" : " ^0.5.4" ,
37
39
"gulp-shell" : " ^0.5.1" ,
38
40
"gulp-sourcemaps" : " ^1.6.0" ,
39
- "gulp-tslint" : " ^6 .0.1" ,
40
- "gulp-typescript" : " ^2.13.6 " ,
41
+ "gulp-tslint" : " ^7 .0.1" ,
42
+ "gulp-typescript" : " ^3.1.3 " ,
41
43
"gulpclass" : " ^0.1.1" ,
42
- "mocha" : " ^2.5.3" ,
44
+ "mocha" : " ^3.2.0" ,
45
+ "moment" : " 2.14.1" ,
43
46
"reflect-metadata" : " ^0.1.3" ,
44
- "remap-istanbul" : " ^0.6.4 " ,
47
+ "remap-istanbul" : " ^0.7.0 " ,
45
48
"sinon" : " ^1.17.4" ,
46
49
"sinon-chai" : " ^2.8.0" ,
47
- "tslint" : " ^3.13.0 " ,
50
+ "tslint" : " ^4.0.2 " ,
48
51
"tslint-stylish" : " ^2.1.0-beta" ,
49
- "typescript" : " ^1.8.10" ,
50
- "typings" : " ^1.3.2"
52
+ "typescript" : " ^2.0.10"
51
53
},
52
54
"scripts" : {
53
55
"test" : " gulp tests"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments