mirror of
https://gitee.com/dcloud/uni-preset-vue
synced 2025-04-05 21:41:53 +08:00
fix: lock vue version
This commit is contained in:
parent
ea3c35d2c6
commit
d6cc358108
18
generator.js
18
generator.js
@ -55,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'
|
||||
@ -98,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)
|
||||
}
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user