gulp package makes packages only for current platform

This commit is contained in:
Yuya Ochiai
2015-12-11 21:40:25 +09:00
parent af7d859e39
commit 4559811bf4
3 changed files with 7 additions and 2 deletions

View File

@@ -68,6 +68,10 @@ function makePackage(platform, arch) {
};
gulp.task('package', ['sync-meta'], function() {
makePackage(process.platform, 'all');
});
gulp.task('package:all', ['sync-meta'], function() {
makePackage('all', 'all');
});