feat: 支持安装自定义模板 npm 依赖 close #24

This commit is contained in:
qiang 2021-03-12 20:47:42 +08:00
parent 71a22a1dd8
commit 44f4744ee2

View File

@ -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)