element-plus/scripts/update-version.ts
三咲智子 b8c38a9fe5
chore: enhance eslint rules (#6476)
* chore: enhance eslint rules

* chore: enhance eslint rules
2022-03-08 14:03:32 +08:00

44 lines
1.1 KiB
TypeScript

import fs from 'fs'
import { epPackage } from '../build/utils/paths'
import { cyan, red, yellow, green } from '../build/utils/log'
import { getPackageManifest } from '../build/utils/pkg'
const tagVersion = process.env.TAG_VERSION
const gitHead = process.env.GIT_HEAD
if (!tagVersion || !gitHead) {
red(
'No tag version or git head were found, make sure that you set the environment variable $TAG_VERSION \n'
)
process.exit(1)
}
cyan('Start updating version')
cyan(
['NOTICE:', `$TAG_VERSION: ${tagVersion}`, `$GIT_HEAD: ${gitHead}`].join('\n')
)
;(async () => {
yellow(`Updating package.json for element-plus`)
const json: Record<string, any> = getPackageManifest(epPackage)
json.version = tagVersion
json.gitHead = gitHead
if (!(process.argv.includes('-d') || process.argv.includes('--dry-run'))) {
try {
await fs.promises.writeFile(epPackage, JSON.stringify(json, null, 2), {
encoding: 'utf-8',
})
} catch {
process.exit(1)
}
} else {
console.log(json)
}
green(`Version updated to ${tagVersion}`)
green(`Git head updated to ${gitHead}`)
})()