tabby/scripts/publish-plugins.js

13 lines
309 B
JavaScript
Raw Normal View History

2017-07-01 06:54:55 +08:00
#!/usr/bin/env node
const sh = require('shelljs')
const vars = require('./vars')
const log = require('npmlog')
2021-07-12 04:59:39 +08:00
vars.builtinPlugins.forEach(plugin => {
2021-07-02 04:56:23 +08:00
log.info('bump', plugin)
sh.cd(plugin)
sh.exec('npm --no-git-tag-version version ' + vars.version)
sh.exec('npm publish')
sh.cd('..')
2017-07-01 06:54:55 +08:00
})