Skip to content

Commit da3342f

Browse files
committed
updated package.json
1 parent d12b963 commit da3342f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

gulpfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var glob = require('glob');
33
var gulp = require("gulp");
44
var shelljs = global.shelljs = global.shelljs || require('shelljs');
55

6-
gulp.task('copy-source', function () {
6+
gulp.task('copy-source', function (done) {
77
var localeJson = glob.sync(__dirname + '/src/app/**/*', {
88
silent: true,
99
ignore: ['/src/app/common/**/*.*', '/src/app/common']
@@ -16,6 +16,7 @@ gulp.task('copy-source', function () {
1616
}
1717
}
1818
}
19+
done();
1920
});
2021

2122
gulp.task('build', function (done) {

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,8 @@
6161
"core-js": "^2.5.4",
6262
"fs": "0.0.1-security",
6363
"fuse.js": "^3.2.0",
64-
"glob": "^7.1.6",
65-
"gulp": "^4.0.2",
6664
"marked": "^0.3.19",
6765
"rxjs": "~6.2.0",
68-
"shelljs": "^0.8.4",
6966
"tributejs": "^3.7.3",
7067
"zone.js": "~0.8.26"
7168
},
@@ -77,6 +74,9 @@
7774
"@types/jasmine": "2.8.9",
7875
"@types/jasminewd2": "~2.0.3",
7976
"@types/node": "~8.9.4",
77+
"glob": "^7.1.6",
78+
"gulp": "^3.9.1",
79+
"shelljs": "^0.8.1",
8080
"codelyzer": "~4.3.0",
8181
"jasmine-core": "~2.99.1",
8282
"jasmine-spec-reporter": "~4.2.1",

0 commit comments

Comments
 (0)