mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 09:27:24 +00:00
12 lines
274 B
JavaScript
12 lines
274 B
JavaScript
|
#!/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.cd('..')
|
||
|
})
|