mirror of
https://gitee.com/dcloud/uni-preset-vue
synced 2025-04-03 20:41:52 +08:00
feat: 支持安装自定义模板 npm 依赖 close #24
This commit is contained in:
parent
71a22a1dd8
commit
44f4744ee2
17
generator.js
17
generator.js
@ -115,6 +115,23 @@ module.exports = (api, options, rootOptions) => {
|
||||
})
|
||||
})
|
||||
|
||||
// 合并模板依赖
|
||||
const jsonPath = path.join(tmp, './package.json')
|
||||
if (fs.existsSync(jsonPath)) {
|
||||
try {
|
||||
const json = fs.readFileSync(jsonPath, { encoding: 'utf-8' })
|
||||
content = JSON.parse(json)
|
||||
api.extendPackage(pkg => {
|
||||
return {
|
||||
dependencies: Object.assign({}, content.dependencies),
|
||||
devDependencies: Object.assign({}, content.devDependencies)
|
||||
}
|
||||
})
|
||||
} catch (error) {
|
||||
console.warn('package.json merge failed')
|
||||
}
|
||||
}
|
||||
|
||||
const dirNames = ['cloudfunctions-aliyun', 'cloudfunctions-tcb']
|
||||
dirNames.forEach(dirName => {
|
||||
const dirPath = path.join(tmp, './', dirName)
|
||||
|
Loading…
x
Reference in New Issue
Block a user