mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
4e99d0b5ba
* build!: simplify build & support native esm import * build: refactor build * refactor: reorganize files * refactor: refactor build * build: improve perf * fix: scripts * build: add rollup-plugin-filesize * chore: scripts ignore no-console * build: disable tree-shaking * build: improve code * build: add sourcemap * build: add banner * refactor: remove annotation * build!: improve esm exports (#3871) * build: improve esm import * refactor: change mjs for esm version * chore: improve exports map * fix: add sideEffects * refactor: improve alias * build: upgrade dependencies
44 lines
1.1 KiB
TypeScript
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 (e) {
|
|
process.exit(1)
|
|
}
|
|
} else {
|
|
console.log(json)
|
|
}
|
|
|
|
green(`Version updated to ${tagVersion}`)
|
|
|
|
green(`Git head updated to ${gitHead}`)
|
|
})()
|