mirror of
https://github.com/Eugeny/tabby
synced 2024-11-14 17:07:15 +00:00
1e5cfd1d4b
New standard theme that follows your chosen terminal colors, Bootstrap 5 & Angular 15 upgrade
13 lines
381 B
JavaScript
Executable file
13 lines
381 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
import sh from 'shelljs'
|
|
import * as vars from './vars.mjs'
|
|
import log from 'npmlog'
|
|
import { execSync } from 'child_process'
|
|
|
|
vars.allPackages.forEach(plugin => {
|
|
log.info('bump', plugin)
|
|
sh.cd(plugin)
|
|
sh.exec('npm --no-git-tag-version version ' + vars.version, { fatal: true })
|
|
execSync('npm publish', { stdio: 'inherit' })
|
|
sh.cd('..')
|
|
})
|