|
|
@@ -12,13 +12,15 @@ const fileContents = fs.readFileSync(convertPath('dist/config/appconfig.json'),
|
|
|
const appConfig = JSON.parse(fileContents)
|
|
|
const isBeta = process.argv.includes('demo') // 是否测试版
|
|
|
|
|
|
+console.log(isBeta)
|
|
|
+
|
|
|
// 打包之前清空目录
|
|
|
exec('rd/s/q ' + outputDir)
|
|
|
|
|
|
// 打包自动修改版本号
|
|
|
const pkgContents = fs.readFileSync(convertPath('package.json'), 'utf-8')
|
|
|
const pkg = JSON.parse(pkgContents)
|
|
|
-pkg.name = pkg.name + (isBeta ? '-beta' : '')
|
|
|
+pkg.name = isBeta ? 'trading-beta' : 'trading'
|
|
|
pkg.version = appConfig.version
|
|
|
fs.writeFileSync(convertPath('package.json'), JSON.stringify(pkg, null, 2))
|
|
|
|