mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
22 lines
456 B
TypeScript
22 lines
456 B
TypeScript
|
import { loadWorkspace } from './_utils'
|
||
|
|
||
|
async function main () {
|
||
|
const workspace = await loadWorkspace(process.cwd())
|
||
|
|
||
|
const newVersion = process.argv[2]
|
||
|
if (!newVersion) {
|
||
|
throw new Error('Please provide version!')
|
||
|
}
|
||
|
|
||
|
for (const pkg of workspace.packages.filter(p => !p.data.private)) {
|
||
|
workspace.setVersion(pkg.data.name, newVersion!)
|
||
|
}
|
||
|
|
||
|
await workspace.save()
|
||
|
}
|
||
|
|
||
|
main().catch((err) => {
|
||
|
console.error(err)
|
||
|
process.exit(1)
|
||
|
})
|