mirror of
https://github.com/element-plus/element-plus.git
synced 2025-01-06 10:38:31 +08:00
fb94222bb4
* 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
18 lines
418 B
TypeScript
18 lines
418 B
TypeScript
import fs from 'fs'
|
|
import path from 'path'
|
|
import pkg from '../packages/element-plus/package.json' // need to be checked
|
|
const tagVer = process.env.TAG_VERSION
|
|
let version = ''
|
|
|
|
if (tagVer) {
|
|
version = tagVer.startsWith('v') ? tagVer.slice(1) : tagVer
|
|
} else {
|
|
version = pkg.version
|
|
}
|
|
|
|
fs.writeFileSync(
|
|
path.resolve(__dirname, '../packages/element-plus/version.ts'),
|
|
`export const version = '${version}'
|
|
`
|
|
)
|