Skip to content

Commit 50e1c44

Browse files
author
Umed Khudoiberdiev
committed
removed typings and upgraded dependencies
1 parent 8820841 commit 50e1c44

File tree

4 files changed

+13
-33
lines changed

4 files changed

+13
-33
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
build/
22
node_modules/
3-
typings/
43
coverage/
54
npm-debug.log

gulpfile.ts

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export class Gulpfile {
6161
const tsProject = ts.createProject("tsconfig.json");
6262
const tsResult = gulp.src(["./src/**/*.ts", "./typings/**/*.ts"])
6363
.pipe(sourcemaps.init())
64-
.pipe(ts(tsProject));
64+
.pipe(tsProject());
6565

6666
return [
6767
tsResult.dts.pipe(gulp.dest("./build/package")),
@@ -111,15 +111,6 @@ export class Gulpfile {
111111
.pipe(gulp.dest("./build/package"));
112112
}
113113

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-
123114
/**
124115
* Creates a package that can be published to npm.
125116
*/
@@ -130,7 +121,7 @@ export class Gulpfile {
130121
"packageCompile",
131122
"packageMoveCompiledFiles",
132123
"packageClearCompileDirectory",
133-
["packagePreparePackageFile", "packageReadmeFile", "copyTypingsFile"]
124+
["packagePreparePackageFile", "packageReadmeFile"]
134125
];
135126
}
136127

package.json

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,28 +26,30 @@
2626
],
2727
"dependencies": {},
2828
"devDependencies": {
29+
"@types/es6-shim": "^0.31.32",
30+
"@types/node": "0.0.2",
2931
"chai": "^3.4.1",
30-
"chai-as-promised": "^5.3.0",
32+
"chai-as-promised": "^6.0.0",
3133
"del": "^2.2.1",
3234
"es6-shim": "^0.35.1",
3335
"gulp": "^3.9.1",
3436
"gulp-istanbul": "^1.0.0",
35-
"gulp-mocha": "^2.2.0",
37+
"gulp-mocha": "^3.0.1",
3638
"gulp-replace": "^0.5.4",
3739
"gulp-shell": "^0.5.1",
3840
"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",
4143
"gulpclass": "^0.1.1",
42-
"mocha": "^2.5.3",
44+
"mocha": "^3.2.0",
45+
"moment": "2.14.1",
4346
"reflect-metadata": "^0.1.3",
44-
"remap-istanbul": "^0.6.4",
47+
"remap-istanbul": "^0.7.0",
4548
"sinon": "^1.17.4",
4649
"sinon-chai": "^2.8.0",
47-
"tslint": "^3.13.0",
50+
"tslint": "^4.0.2",
4851
"tslint-stylish": "^2.1.0-beta",
49-
"typescript": "^1.8.10",
50-
"typings": "^1.3.2"
52+
"typescript": "^2.0.10"
5153
},
5254
"scripts": {
5355
"test": "gulp tests"

typings.json

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)