From 42fc79fc887d538835cc6e4a2efbf1264dc1ab38 Mon Sep 17 00:00:00 2001 From: Tine Kondo Date: Sun, 17 Jun 2018 21:42:46 +0200 Subject: [PATCH] fix(publishing): add missing npm option to allow publishing scoped packages --- app/templates/_gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/templates/_gulpfile.js b/app/templates/_gulpfile.js index d62cbed..cab5646 100644 --- a/app/templates/_gulpfile.js +++ b/app/templates/_gulpfile.js @@ -666,7 +666,7 @@ gulp.task('create-new-tag', (cb) => { // Build and then Publish 'dist' folder to NPM gulp.task('npm-publish', ['build'], () => { - return execExternalCmd('npm',`publish ${config.outputDir}`) + return execExternalCmd('npm',`publish ${config.outputDir} --acces public`) }); // Perfom pre-release checks (no actual release)