fixed packaging issue

This commit is contained in:
Umed Khudoiberdiev 2016-12-06 14:11:58 +05:00
parent 95164dcbbd
commit 2bebb8550f

View File

@ -152,7 +152,7 @@ export class Gulpfile {
*/
@Task()
browserPublish() {
return gulp.src("*.js", { read: false })
return gulp.src("package.json", { read: false })
.pipe(shell([
"cd ./build/browser-package && npm publish"
]));
@ -167,7 +167,7 @@ export class Gulpfile {
*/
@Task()
nodePublish() {
return gulp.src("*.js", { read: false })
return gulp.src("package.json", { read: false })
.pipe(shell([
"cd ./build/package && npm publish"
]));