From 40c19edac82daa9938ad3223b23df0bf338fc1a0 Mon Sep 17 00:00:00 2001 From: zhenyuWang <13641039885@163.com> Date: Thu, 2 Jun 2022 15:55:44 +0800 Subject: [PATCH] chore: update and lock @babel/runtime version --- generator.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/generator.js b/generator.js index ab888f8..0f423e5 100644 --- a/generator.js +++ b/generator.js @@ -4,7 +4,7 @@ const fse = require('fs-extra') const isBinary = require('isbinaryfile') -async function generate (dir, files, base = '', rootOptions = {}) { +async function generate(dir, files, base = '', rootOptions = {}) { const glob = require('glob') glob.sync('**/*', { @@ -44,11 +44,14 @@ module.exports = (api, options, rootOptions) => { '@dcloudio/uni-helper-json': '*' }, devDependencies: { - "@babel/runtime": "~7.12.0",// 临时指定版本,7.13.x 会报错 + "@babel/runtime": "~7.17.9",// 临时指定版本,7.13.x 会报错 'postcss-comment': '^2.0.0', '@dcloudio/types': '^2.6.7', 'miniprogram-api-typings': '*', 'mini-types': '*' + }, + resolutions: { + "@babel/runtime": "~7.17.9" } } }) @@ -139,7 +142,7 @@ module.exports = (api, options, rootOptions) => { const dirNames = ['cloudfunctions-aliyun', 'cloudfunctions-tcb'] dirNames.forEach(dirName => { const dirPath = path.join(tmp, './', dirName) - if(fs.existsSync(dirPath)) { + if (fs.existsSync(dirPath)) { fse.moveSync(dirPath, path.join(tmp, '../', dirName), { overwrite: true })