1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-27 00:50:49 +03:00
tabby/scripts/publish-plugins.js

13 lines
306 B
JavaScript
Raw Normal View History

2017-07-01 01:54:55 +03:00
#!/usr/bin/env node
const sh = require('shelljs')
const vars = require('./vars')
const log = require('npmlog')
2021-07-12 00:03:55 +03:00
vars.allPackages.forEach(plugin => {
2021-07-01 23:56:23 +03: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 01:54:55 +03:00
})