-
-
Notifications
You must be signed in to change notification settings - Fork 337
/
Copy pathupdate-version.ts
47 lines (39 loc) · 1.31 KB
/
update-version.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* @Author: zouyaoji@https://github.com/zouyaoji
* @Date: 2021-12-03 16:56:11
* @LastEditTime: 2021-12-05 09:48:10
* @LastEditors: zouyaoji
* @Description:
* @FilePath: \vue-cesium@next\scripts\update-version.ts
*/
import fs from 'fs'
import { vcPackage } 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 vue-cesium`)
const json: Record<string, any> = getPackageManifest(vcPackage)
json.version = tagVersion
json.gitHead = gitHead
if (!(process.argv.includes('-d') || process.argv.includes('--dry-run'))) {
try {
await fs.promises.writeFile(vcPackage, JSON.stringify(json, null, 2), {
encoding: 'utf-8'
})
} catch (e) {
process.exit(1)
}
} else {
console.log(json)
}
green(`Version updated to ${tagVersion}`)
green(`Git head updated to ${gitHead}`)
})()