fix: lock vue version

This commit is contained in:
DCloud_LXH 2022-11-04 16:34:00 +08:00
parent 74e178330e
commit f2b0ea5e06

View File

@ -41,9 +41,7 @@ module.exports = (api, options, rootOptions) => {
return {
dependencies: {
'regenerator-runtime': '^0.12.1',// 锁定版本,避免高版本在小程序中出错
'@dcloudio/uni-helper-json': '*',
'vue': '>= 2.6.14 < 2.7',
'vue-template-compiler': '>= 2.6.14 < 2.7',
'@dcloudio/uni-helper-json': '*'
},
devDependencies: {
"@babel/runtime": "~7.17.9",// 临时指定版本7.13.x 会报错
@ -57,6 +55,16 @@ module.exports = (api, options, rootOptions) => {
}
}
})
api.extendPackage(pkg => {
return {
dependencies: {
'vue': '>= 2.6.14 < 2.7'
},
devDependencies: {
'vue-template-compiler': '>= 2.6.14 < 2.7',
}
}
}, { forceOverwrite: true })
if (options.template === 'default-ts') { // 启用 typescript
api.extendPackage(pkg => {
const isV4 = api.cliVersion.split('.')[0] === '4'
@ -100,11 +108,11 @@ module.exports = (api, options, rootOptions) => {
// default-ts 模板删除 jsconfig.json
process.nextTick(() => {
const folderPath = path.resolve(process.cwd(),rootOptions.projectName)
const jsconfigPath = path.resolve(folderPath,'./jsconfig.json')
const tsconfigPath = path.resolve(folderPath,'./tsconfig.json')
const folderPath = path.resolve(process.cwd(), rootOptions.projectName)
const jsconfigPath = path.resolve(folderPath, './jsconfig.json')
const tsconfigPath = path.resolve(folderPath, './tsconfig.json')
if(fs.existsSync(jsconfigPath) && fs.existsSync(tsconfigPath)){
if (fs.existsSync(jsconfigPath) && fs.existsSync(tsconfigPath)) {
fs.unlinkSync(jsconfigPath)
}
})