mirror of
https://github.com/eugeny/tabby
synced 2025-12-11 18:25:57 +00:00
bumped plugin versions
This commit is contained in:
12
scripts/publish-plugins.js
Executable file
12
scripts/publish-plugins.js
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/usr/bin/env node
|
||||
const sh = require('shelljs')
|
||||
const vars = require('./vars')
|
||||
const log = require('npmlog')
|
||||
|
||||
vars.builtinPlugins.forEach(plugin => {
|
||||
log.info('bump', plugin)
|
||||
sh.cd(plugin)
|
||||
sh.exec('npm --no-git-tag-version version ' + vars.version)
|
||||
sh.exec('npm publish')
|
||||
sh.cd('..')
|
||||
})
|
||||
Reference in New Issue
Block a user