Skip to content

Commit e009068

Browse files
committed
fixed package-lock location for add-on dependencies
1 parent 10b1138 commit e009068

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

gulpfile.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,11 @@ gulp.task("build-tmp-install",function() {
272272
.pipe(install());
273273
});
274274

275+
gulp.task("build-tmp-copylock",function() {
276+
return gulp.src(prjDir+'/package-lock.json')
277+
.pipe(gulp.dest(buildTmpDir));
278+
});
279+
275280
gulp.task("build-tmp-weh",function() {
276281
return ProcessFiles(gulp.src(__dirname+"/src/**/*"))
277282
.pipe(gulp.dest(buildTmpWehDir));
@@ -332,6 +337,7 @@ gulp.task("build",function(callback) {
332337
return runSequence(
333338
["build-tmp-src","build-tmp-src-mod","build-tmp-weh","build-locales","make-i86n-keys"],
334339
["make-build-manifest"],
340+
["build-tmp-copylock"],
335341
["build-tmp-install"],
336342
["build-final"],
337343
callback);

0 commit comments

Comments
 (0)