Skip to content

Commit

Permalink
fix(publishing): add missing npm option to allow publishing scoped pa…
Browse files Browse the repository at this point in the history
…ckages
  • Loading branch information
tinesoft committed Jun 17, 2018
1 parent df9321e commit 42fc79f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/templates/_gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 42fc79f

Please sign in to comment.