mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 05:45:15 +00:00
feat(gui-v2): add bumpNcGuiVersion
This commit is contained in:
16
scripts/bumpNcGuiVersion.js
Normal file
16
scripts/bumpNcGuiVersion.js
Normal file
@@ -0,0 +1,16 @@
|
||||
const fs = require('fs')
|
||||
const path = require('path')
|
||||
|
||||
const packageJson = JSON.parse(fs.readFileSync(path.join(__dirname, '..', 'packages', 'nc-lib-gui-2', 'package.json'), 'utf8'))
|
||||
|
||||
if (process.env.targetEnv === 'DEV') {
|
||||
// nightly build
|
||||
// e.g. 0.84.2-20220220-1250
|
||||
// pr build
|
||||
// e.g. 0.84.2-pr-1234-20220220-1250
|
||||
packageJson.version = `${packageJson.version}-${process.env.targetVersion}`
|
||||
packageJson.name += '-daily'
|
||||
} else {
|
||||
packageJson.version = process.env.targetVersion
|
||||
}
|
||||
fs.writeFileSync(path.join(__dirname, '..', 'packages', 'nc-lib-gui-2', 'package.json'), JSON.stringify(packageJson, 0, 2))
|
||||
Reference in New Issue
Block a user