From 7da7a348e219759b69920272d09bffb667620e80 Mon Sep 17 00:00:00 2001 From: winixt Date: Fri, 13 May 2022 16:54:26 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8Dvite=E7=83=AD=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../fes-preset-built-in/src/plugins/registerMethods.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/fes-preset-built-in/src/plugins/registerMethods.js b/packages/fes-preset-built-in/src/plugins/registerMethods.js index cabaa66f..875e08c3 100644 --- a/packages/fes-preset-built-in/src/plugins/registerMethods.js +++ b/packages/fes-preset-built-in/src/plugins/registerMethods.js @@ -36,16 +36,21 @@ export default function (api) { }, }); + const cacheCopyPath = {}; + api.registerMethod({ name: 'copyTmpFiles', fn({ namespace, path, ignore }) { + const base = join(api.paths.absTmpPath, namespace); + // copy 行为只需要执行一次 + if (cacheCopyPath[base]) return; + cacheCopyPath[base] = true; assert(api.stage >= api.ServiceStage.pluginReady, 'api.copyTmpFiles() should not execute in register stage.'); assert(path, 'api.copyTmpFiles() should has param path'); assert(namespace, 'api.copyTmpFiles() should has param namespace'); const files = api.utils.glob.sync('**/*', { cwd: path, }); - const base = join(api.paths.absTmpPath, namespace); files.forEach((file) => { const source = join(path, file); const target = join(base, file);