From cc16721fd5f3178228778dac414a93a94b15216e Mon Sep 17 00:00:00 2001 From: winixt Date: Fri, 25 Nov 2022 11:20:29 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20windows=20=E5=85=BC?= =?UTF-8?q?=E5=AE=B9=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../fes-compiler/src/service/babelRegister.js | 24 +++++++++++++++-- packages/fes-utils/src/parseRequireDeps.js | 27 ++++++++++--------- 2 files changed, 36 insertions(+), 15 deletions(-) diff --git a/packages/fes-compiler/src/service/babelRegister.js b/packages/fes-compiler/src/service/babelRegister.js index a8e73523..42e8dac0 100644 --- a/packages/fes-compiler/src/service/babelRegister.js +++ b/packages/fes-compiler/src/service/babelRegister.js @@ -26,8 +26,28 @@ export default class BabelRegister { }, ], ], - ignore: [/node_modules/], - only, + plugins: [ + function () { + return { + visitor: { + ExportAllDeclaration(path) { + if (path.node.source.value.startsWith('@@')) { + path.remove(); + } + }, + }, + }; + }, + ], + only: [ + ...only, + function (filepath) { + if (/@fesjs[/\\]+fes/.test(filepath)) { + return true; + } + return false; + }, + ], extensions: ['.jsx', '.js', '.ts', '.tsx'], babelrc: false, cache: false, diff --git a/packages/fes-utils/src/parseRequireDeps.js b/packages/fes-utils/src/parseRequireDeps.js index 09072bc3..e8d32334 100644 --- a/packages/fes-utils/src/parseRequireDeps.js +++ b/packages/fes-utils/src/parseRequireDeps.js @@ -1,23 +1,24 @@ - // @ts-ignore +import { readFileSync } from 'fs'; +import { dirname } from 'path'; import crequire from 'crequire'; import lodash from 'lodash'; import resolve from 'resolve'; -import { readFileSync } from 'fs'; -import { dirname } from 'path'; import winPath from './winPath'; function parse(filePath) { const content = readFileSync(filePath, 'utf-8'); - return (crequire(content)) - .map(o => o.path) - .filter(path => path.charAt(0) === '.') - .map(path => winPath( - resolve.sync(path, { - basedir: dirname(filePath), - extensions: ['.tsx', '.ts', '.jsx', '.js'] - }) - )); + return crequire(content) + .map((o) => o.path) + .filter((path) => path.charAt(0) === '.') + .map((path) => + winPath( + resolve.sync(path, { + basedir: dirname(filePath), + extensions: ['.tsx', '.ts', '.jsx', '.js'], + }), + ), + ); } export default function parseRequireDeps(filePath) { @@ -25,7 +26,7 @@ export default function parseRequireDeps(filePath) { const ret = [winPath(filePath)]; while (paths.length) { - // 避免依赖循环 + // 避免依赖循环 const extraPaths = lodash.pullAll(parse(paths.shift()), ret); if (extraPaths.length) { paths.push(...extraPaths);