|
|
@@ -2,11 +2,12 @@
|
|
|
const sh = require('shelljs')
|
|
|
const vars = require('./vars')
|
|
|
const log = require('npmlog')
|
|
|
+const { execSync } = require('child_process')
|
|
|
|
|
|
vars.allPackages.forEach(plugin => {
|
|
|
log.info('bump', plugin)
|
|
|
sh.cd(plugin)
|
|
|
sh.exec('npm --no-git-tag-version version ' + vars.version)
|
|
|
- sh.exec('npm publish')
|
|
|
+ execSync('npm publish', { stdio: 'inherit' })
|
|
|
sh.cd('..')
|
|
|
})
|