1 Star 0 Fork 436

tangwei/element-plus

forked from element-plus/element-plus 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gen-version.ts 616 Bytes
一键复制 编辑 原始数据 按行查看 历史
import { writeFile } from 'fs/promises'
import path from 'path'
import consola from 'consola'
import { epRoot } from '@element-plus/build-utils'
import pkg from '../packages/element-plus/package.json' // need to be checked
function getVersion() {
const tagVer = process.env.TAG_VERSION
if (tagVer) {
return tagVer.startsWith('v') ? tagVer.slice(1) : tagVer
} else {
return pkg.version
}
}
const version = getVersion()
async function main() {
consola.info(`Version: ${version}`)
await writeFile(
path.resolve(epRoot, 'version.ts'),
`export const version = '${version}'\n`
)
}
main()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/dannyiiiiiiiiiiii/element-plus.git
git@gitee.com:dannyiiiiiiiiiiii/element-plus.git
dannyiiiiiiiiiiii
element-plus
element-plus
dev

搜索帮助