mirror of
https://github.com/element-plus/element-plus.git
synced 2024-12-27 03:01:14 +08:00
16f069ebbe
* Revert "build!: simplify build & support native esm import (#3900)"
This reverts commit fb94222bb4
.
* remove module
* Fix linter
* Add @element-plus/icons as dependency
* update pnpm lock file
* temporary lock element-plus at 1.1.0-beta.20
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}'
|
|
`
|
|
)
|