From 97b9e8fa3c2be06c266f5a82faa3cf2e9ec8586b Mon Sep 17 00:00:00 2001 From: winixt Date: Mon, 28 Mar 2022 21:03:13 +0800 Subject: [PATCH 1/2] =?UTF-8?q?refactor:=20=E4=BC=98=E5=8C=96=20resolver?= =?UTF-8?q?=20inner=20dep=20and=20declare=20type=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fes-compiler/src/service/index.js | 136 ++++++++---------- .../src/service/utils/pluginUtils.js | 2 +- packages/fes-plugin-access/src/index.js | 11 +- packages/fes-plugin-layout/src/index.js | 11 +- packages/fes-plugin-locale/src/index.js | 10 +- .../fes-plugin-monaco-editor/src/index.js | 12 +- packages/fes-plugin-qiankun/src/main/index.js | 88 ++++-------- packages/fes-plugin-request/src/index.js | 14 +- packages/fes-plugin-windicss/src/index.js | 4 +- .../src/plugins/generateFiles/genType.js | 36 ++--- .../src/plugins/registerMethods.js | 3 +- packages/fes-template-h5/.fes.js | 2 +- packages/fes-template-h5/tsconfig.json | 10 +- packages/fes-template/tsconfig.json | 3 +- packages/fes-utils/src/index.js | 15 +- packages/fes-utils/src/resolveInnerDep.js | 12 ++ packages/fes/types.d.ts | 4 +- 17 files changed, 177 insertions(+), 196 deletions(-) create mode 100644 packages/fes-utils/src/resolveInnerDep.js diff --git a/packages/fes-compiler/src/service/index.js b/packages/fes-compiler/src/service/index.js index a525ce0f..c04ff916 100644 --- a/packages/fes-compiler/src/service/index.js +++ b/packages/fes-compiler/src/service/index.js @@ -9,18 +9,12 @@ import { AsyncSeriesWaterfallHook } from 'tapable'; import { existsSync } from 'fs'; import { lodash, chalk } from '@fesjs/utils'; import { Command, Option } from 'commander'; -import { resolvePresets, pathToObj, resolvePlugins } from './utils/pluginUtils'; +import { resolvePresets, filterBuilder, pathToObj, resolvePlugins } from './utils/pluginUtils'; import loadDotEnv from './utils/loadDotEnv'; import isPromise from './utils/isPromise'; import BabelRegister from './babelRegister'; import PluginAPI from './pluginAPI'; -import { - ApplyPluginsType, - ConfigChangeType, - EnableBy, - PluginType, - ServiceStage -} from './enums'; +import { ApplyPluginsType, ConfigChangeType, EnableBy, PluginType, ServiceStage } from './enums'; import Config from '../config'; import { getUserConfigWithKey } from '../config/utils/configUtils'; import getPaths from './getPaths'; @@ -95,6 +89,11 @@ export default class Service extends EventEmitter { this.env = opts.env || process.env.NODE_ENV; this.fesPkg = opts.fesPkg || {}; + const builderPkgPath = filterBuilder(this.pkg); + this.builder = { + isVite: (builderPkgPath[0] || '').includes('build-vite'), + innerDepPrefix: '@fesInner', + }; assert(existsSync(this.cwd), `cwd ${this.cwd} does not exist.`); @@ -108,7 +107,7 @@ export default class Service extends EventEmitter { this.configInstance = new Config({ cwd: this.cwd, service: this, - localConfig: this.env === 'development' + localConfig: this.env === 'development', }); this.userConfig = this.configInstance.getUserConfig(); @@ -116,26 +115,25 @@ export default class Service extends EventEmitter { this.paths = getPaths({ cwd: this.cwd, config: this.userConfig, - env: this.env + env: this.env, }); this.program = this.initCommand(); - // setup initial plugins const baseOpts = { pkg: this.pkg, - cwd: this.cwd + cwd: this.cwd, }; this.initialPresets = resolvePresets({ ...baseOpts, presets: opts.presets || [], - userConfigPresets: this.userConfig.presets || [] + userConfigPresets: this.userConfig.presets || [], }); this.initialPlugins = resolvePlugins({ ...baseOpts, plugins: opts.plugins || [], - userConfigPlugins: this.userConfig.plugins || [] + userConfigPlugins: this.userConfig.plugins || [], }); } @@ -182,7 +180,7 @@ export default class Service extends EventEmitter { this.setStage(ServiceStage.pluginReady); await this.applyPlugins({ key: 'onPluginReady', - type: ApplyPluginsType.event + type: ApplyPluginsType.event, }); // get config, including: @@ -200,7 +198,7 @@ export default class Service extends EventEmitter { const paths = await this.applyPlugins({ key: 'modifyPaths', type: ApplyPluginsType.modify, - initialValue: this.paths + initialValue: this.paths, }); Object.keys(paths).forEach((key) => { this.paths[key] = paths[key]; @@ -211,14 +209,14 @@ export default class Service extends EventEmitter { const defaultConfig = await this.applyPlugins({ key: 'modifyDefaultConfig', type: this.ApplyPluginsType.modify, - initialValue: await this.configInstance.getDefaultConfig() + initialValue: await this.configInstance.getDefaultConfig(), }); this.config = await this.applyPlugins({ key: 'modifyConfig', type: this.ApplyPluginsType.modify, initialValue: this.configInstance.getConfig({ - defaultConfig - }) + defaultConfig, + }), }); } @@ -242,16 +240,10 @@ export default class Service extends EventEmitter { const pluginAPI = new PluginAPI(opts); // register built-in methods - [ - 'onPluginReady', - 'modifyPaths', - 'onStart', - 'modifyDefaultConfig', - 'modifyConfig' - ].forEach((name) => { + ['onPluginReady', 'modifyPaths', 'onStart', 'modifyDefaultConfig', 'modifyConfig'].forEach((name) => { pluginAPI.registerMethod({ name, - exitsError: false + exitsError: false, }); }); @@ -279,15 +271,14 @@ export default class Service extends EventEmitter { 'args', 'hasPlugins', 'hasPresets', - 'setConfig' + 'setConfig', + 'builder', ].includes(prop) ) { - return typeof this[prop] === 'function' - ? this[prop].bind(this) - : this[prop]; + return typeof this[prop] === 'function' ? this[prop].bind(this) : this[prop]; } return target[prop]; - } + }, }); } @@ -309,24 +300,23 @@ export default class Service extends EventEmitter { this.registerPlugin(preset); const { presets, plugins } = await this.applyAPI({ api, - apply + apply, }); // register extra presets and plugins if (presets) { - assert( - Array.isArray(presets), - `presets returned from preset ${id} must be Array.` - ); + assert(Array.isArray(presets), `presets returned from preset ${id} must be Array.`); // 插到最前面,下个 while 循环优先执行 this._extraPresets.splice( 0, 0, - ...presets.map(path => pathToObj({ - type: PluginType.preset, - path, - cwd: this.cwd - })) + ...presets.map((path) => + pathToObj({ + type: PluginType.preset, + path, + cwd: this.cwd, + }), + ), ); } @@ -339,42 +329,40 @@ export default class Service extends EventEmitter { } if (plugins) { - assert( - Array.isArray(plugins), - `plugins returned from preset ${id} must be Array.` - ); + assert(Array.isArray(plugins), `plugins returned from preset ${id} must be Array.`); this._extraPlugins.push( - ...plugins.map(path => pathToObj({ - type: PluginType.plugin, - path, - cwd: this.cwd - })) + ...plugins.map((path) => + pathToObj({ + type: PluginType.plugin, + path, + cwd: this.cwd, + }), + ), ); } } - async initPlugin(plugin) { const { id, key, apply } = plugin; const api = this.getPluginAPI({ id, key, - service: this + service: this, }); // register before apply this.registerPlugin(plugin); await this.applyAPI({ api, - apply + apply, }); } getPluginOptsWithKey(key) { return getUserConfigWithKey({ key, - userConfig: this.userConfig + userConfig: this.userConfig, }); } @@ -424,10 +412,7 @@ export default class Service extends EventEmitter { switch (opts.type) { case ApplyPluginsType.add: if ('initialValue' in opts) { - assert( - Array.isArray(opts.initialValue), - 'applyPlugins failed, opts.initialValue must be Array if opts.type is add.' - ); + assert(Array.isArray(opts.initialValue), 'applyPlugins failed, opts.initialValue must be Array if opts.type is add.'); } // eslint-disable-next-line const tAdd = new AsyncSeriesWaterfallHook(["memo"]); @@ -440,12 +425,12 @@ export default class Service extends EventEmitter { name: hook.pluginId, stage: hook.stage || 0, // @ts-ignore - before: hook.before + before: hook.before, }, async (memo) => { const items = await hook.fn(opts.args); return memo.concat(items); - } + }, ); } return tAdd.promise(opts.initialValue || []); @@ -461,9 +446,9 @@ export default class Service extends EventEmitter { name: hook.pluginId, stage: hook.stage || 0, // @ts-ignore - before: hook.before + before: hook.before, }, - async memo => hook.fn(memo, opts.args) + async (memo) => hook.fn(memo, opts.args), ); } return tModify.promise(opts.initialValue); @@ -479,18 +464,16 @@ export default class Service extends EventEmitter { name: hook.pluginId, stage: hook.stage || 0, // @ts-ignore - before: hook.before + before: hook.before, }, async () => { await hook.fn(opts.args); - } + }, ); } return tEvent.promise(); default: - throw new Error( - `applyPlugin failed, type is not defined or is not matched, got ${opts.type}.` - ); + throw new Error(`applyPlugin failed, type is not defined or is not matched, got ${opts.type}.`); } } @@ -511,8 +494,8 @@ export default class Service extends EventEmitter { key: 'onStart', type: ApplyPluginsType.event, args: { - args - } + args, + }, }); return this.runCommand({ rawArgv, args }); @@ -539,7 +522,10 @@ export default class Service extends EventEmitter { if (commandOptionConfig.fn) { c.action(async () => { await commandOptionConfig.fn({ - rawArgv, args, options: c.opts(), program + rawArgv, + args, + options: c.opts(), + program, }); }); } @@ -551,14 +537,10 @@ export default class Service extends EventEmitter { async parseCommand() { this.program.on('--help', () => { console.log(); - console.log( - ` Run ${chalk.cyan( - 'fes --help' - )} for detailed usage of given command.` - ); + console.log(` Run ${chalk.cyan('fes --help')} for detailed usage of given command.`); console.log(); }); - this.program.commands.forEach(c => c.on('--help', () => console.log())); + this.program.commands.forEach((c) => c.on('--help', () => console.log())); return this.program.parseAsync(process.argv); } } diff --git a/packages/fes-compiler/src/service/utils/pluginUtils.js b/packages/fes-compiler/src/service/utils/pluginUtils.js index e834e59c..b650910c 100644 --- a/packages/fes-compiler/src/service/utils/pluginUtils.js +++ b/packages/fes-compiler/src/service/utils/pluginUtils.js @@ -26,7 +26,7 @@ function filterPluginAndPreset(type, pkg) { .filter(isPluginOrPreset.bind(null, type)); } -function filterBuilder(pkg) { +export function filterBuilder(pkg) { const builders = Object.keys(pkg.devDependencies || {}) .concat(Object.keys(pkg.dependencies || {})) .filter((name) => /^@fesjs\/build-/.test(name)); diff --git a/packages/fes-plugin-access/src/index.js b/packages/fes-plugin-access/src/index.js index 3b71c0cd..aeba9527 100644 --- a/packages/fes-plugin-access/src/index.js +++ b/packages/fes-plugin-access/src/index.js @@ -1,6 +1,7 @@ import { readFileSync } from 'fs'; import { join } from 'path'; -import { resolvePkg } from '@fesjs/utils'; +import { resolveInnerDep } from '@fesjs/utils'; +import { name } from '../package.json'; const namespace = 'plugin-access'; @@ -32,7 +33,7 @@ export default (api) => { path: absoluteFilePath, content: Mustache.render(readFileSync(join(__dirname, 'runtime/core.tpl'), 'utf-8'), { REPLACE_ROLES: JSON.stringify(roles), - lodashPath: resolvePkg('lodash-es'), + lodashPath: resolveInnerDep('lodash-es', api.builder), }), }); @@ -53,4 +54,10 @@ export default (api) => { api.addRuntimePluginKey(() => 'access'); api.addRuntimePlugin(() => `@@/${absRuntimeFilePath}`); + + api.addConfigType(() => ({ + source: name, + runtime: ['AccessRuntimeConfig'], + build: ['AccessBuildConfig'], + })); }; diff --git a/packages/fes-plugin-layout/src/index.js b/packages/fes-plugin-layout/src/index.js index 84e943df..8b464115 100644 --- a/packages/fes-plugin-layout/src/index.js +++ b/packages/fes-plugin-layout/src/index.js @@ -1,6 +1,7 @@ import { readFileSync } from 'fs'; import { join } from 'path'; import { winPath } from '@fesjs/utils'; +import { name } from '../package.json'; const namespace = 'plugin-layout'; @@ -28,13 +29,11 @@ export default (api) => { const absRuntimeFilePath = join(namespace, 'runtime.js'); api.onGenerateFiles(async () => { - const { name } = api.pkg; - const HAS_LOCALE = api.hasPlugins(['@fesjs/plugin-locale']); // .fes配置 const userConfig = { - title: name, + title: api.pkg.name, footer: 'Created by Fes.js', ...(api.config.layout || {}), }; @@ -81,4 +80,10 @@ export default (api) => { children: routes, }, ]); + + api.addConfigType(() => ({ + source: name, + runtime: ['LayoutRuntimeConfig'], + build: ['LayoutBuildConfig'], + })); }; diff --git a/packages/fes-plugin-locale/src/index.js b/packages/fes-plugin-locale/src/index.js index fe21c457..b7a9367a 100644 --- a/packages/fes-plugin-locale/src/index.js +++ b/packages/fes-plugin-locale/src/index.js @@ -1,7 +1,8 @@ import { readFileSync } from 'fs'; import { join } from 'path'; -import { resolvePkg } from '@fesjs/utils'; +import { resolveInnerDep } from '@fesjs/utils'; import { getLocalesJSON } from './utils'; +import { name } from '../package.json'; const namespace = 'plugin-locale'; @@ -62,7 +63,7 @@ export default (api) => { 2, ), BASE_NAVIGATOR: userConfig.baseNavigator, - VUE_I18N_PATH: resolvePkg('vue-i18n'), + VUE_I18N_PATH: resolveInnerDep('vue-i18n', api.builder), }), }); @@ -81,4 +82,9 @@ export default (api) => { ]); api.addRuntimePlugin(() => `@@/${absRuntimeFilePath}`); + + api.addConfigType(() => ({ + source: name, + build: ['LocalBuildConfig'], + })); }; diff --git a/packages/fes-plugin-monaco-editor/src/index.js b/packages/fes-plugin-monaco-editor/src/index.js index 0e386b49..55e140ad 100644 --- a/packages/fes-plugin-monaco-editor/src/index.js +++ b/packages/fes-plugin-monaco-editor/src/index.js @@ -1,6 +1,7 @@ import { readFileSync } from 'fs'; import { join } from 'path'; -import { resolvePkg } from '@fesjs/utils'; +import { resolveInnerDep } from '@fesjs/utils'; +import { name } from '../package.json'; const namespace = 'plugin-monaco-editor'; @@ -47,14 +48,14 @@ export default (api) => { api.writeTmpFile({ path: absLoaderFilePath, content: Mustache.render(readFileSync(join(__dirname, 'runtime/loader.tpl'), 'utf-8'), { - MONACO_EDITOR: resolvePkg('monaco-editor'), + MONACO_EDITOR: resolveInnerDep('monaco-editor', api.builder), }), }); api.writeTmpFile({ path: absEditorFilePath, content: Mustache.render(readFileSync(join(__dirname, 'runtime/editor.tpl'), 'utf-8'), { - LODASH_ES: resolvePkg('lodash-es'), + LODASH_ES: resolveInnerDep('lodash-es', api.builder), }), }); @@ -80,4 +81,9 @@ export default (api) => { webpackConfig.plugin('monaco-editor').use(require('monaco-editor-webpack-plugin'), [api.config?.monacoEditor || {}]); return webpackConfig; }); + + api.addConfigType(() => ({ + source: name, + build: ['MonacoEditorBuildConfig'], + })); }; diff --git a/packages/fes-plugin-qiankun/src/main/index.js b/packages/fes-plugin-qiankun/src/main/index.js index d31b70bd..80401c14 100644 --- a/packages/fes-plugin-qiankun/src/main/index.js +++ b/packages/fes-plugin-qiankun/src/main/index.js @@ -1,34 +1,27 @@ import { readFileSync, existsSync } from 'fs'; import { join } from 'path'; -import { resolvePkg } from '@fesjs/utils'; -import { - defaultMainRootId, - defaultHistoryType, - qiankunStateForMicroModelNamespace -} from '../constants'; +import { resolveInnerDep } from '@fesjs/utils'; +import { defaultMainRootId, defaultHistoryType, qiankunStateForMicroModelNamespace } from '../constants'; import modifyRoutes from './modifyRoutes'; const namespace = 'plugin-qiankun/main'; export function isMasterEnable(api) { - return ( - !!api.userConfig?.qiankun?.main - || !!process.env.INITIAL_QIANKUN_MAIN_OPTIONS - ); + return !!api.userConfig?.qiankun?.main || !!process.env.INITIAL_QIANKUN_MAIN_OPTIONS; } export default function (api) { const { - utils: { Mustache, winPath } + utils: { Mustache, winPath }, } = api; api.describe({ - enableBy: () => isMasterEnable(api) + enableBy: () => isMasterEnable(api), }); - api.modifyDefaultConfig(config => ({ + api.modifyDefaultConfig((config) => ({ ...config, - mountElementId: defaultMainRootId + mountElementId: defaultMainRootId, })); modifyRoutes({ api, namespace }); @@ -37,58 +30,33 @@ export default function (api) { const absMicroAppWithMemoHistoryPath = join(namespace, 'MicroAppWithMemoHistory.js'); const absRuntimePath = join(namespace, 'runtime.js'); const absMasterOptionsPath = join(namespace, 'masterOptions.js'); - const absGetMicroAppRouteCompPath = join( - namespace, - 'getMicroAppRouteComponent.js' - ); + const absGetMicroAppRouteCompPath = join(namespace, 'getMicroAppRouteComponent.js'); api.onGenerateFiles(() => { const HAS_PLUGIN_MODEL = api.hasPlugins(['@fesjs/plugin-model']); api.writeTmpFile({ path: absMicroAppPath, - content: Mustache.render( - readFileSync(join(__dirname, 'runtime/MicroApp.tpl'), 'utf-8'), - { - qiankunStateForMicroModelNamespace, - HAS_PLUGIN_MODEL: - HAS_PLUGIN_MODEL - && existsSync( - winPath( - join( - api.paths.absSrcPath, - 'models/qiankunStateForMicro.js' - ) - ) - ), - QIANKUN: resolvePkg('qiankun'), - LODASH_ES: resolvePkg('lodash-es') - } - ) + content: Mustache.render(readFileSync(join(__dirname, 'runtime/MicroApp.tpl'), 'utf-8'), { + qiankunStateForMicroModelNamespace, + HAS_PLUGIN_MODEL: HAS_PLUGIN_MODEL && existsSync(winPath(join(api.paths.absSrcPath, 'models/qiankunStateForMicro.js'))), + QIANKUN: resolveInnerDep('qiankun', api.builder), + LODASH_ES: resolveInnerDep('lodash-es', api.builder), + }), }); api.writeTmpFile({ path: absMicroAppWithMemoHistoryPath, - content: Mustache.render( - readFileSync(join(__dirname, 'runtime/MicroAppWithMemoHistory.tpl'), 'utf-8'), - { - } - ) + content: Mustache.render(readFileSync(join(__dirname, 'runtime/MicroAppWithMemoHistory.tpl'), 'utf-8'), {}), }); api.writeTmpFile({ path: absRuntimePath, - content: readFileSync( - join(__dirname, 'runtime/runtime.tpl'), - 'utf-8' - ) + content: readFileSync(join(__dirname, 'runtime/runtime.tpl'), 'utf-8'), }); api.writeTmpFile({ path: absGetMicroAppRouteCompPath, - content: readFileSync( - join(__dirname, 'runtime/getMicroAppRouteComponent.tpl'), - 'utf-8' - ) + content: readFileSync(join(__dirname, 'runtime/getMicroAppRouteComponent.tpl'), 'utf-8'), }); const { main: options } = api.config?.qiankun || {}; @@ -98,34 +66,34 @@ export default function (api) { path: absMasterOptionsPath, content: ` let options = ${JSON.stringify({ - masterHistoryType, - base, - ...options - })}; + masterHistoryType, + base, + ...options, + })}; export const getMasterOptions = () => options; export const setMasterOptions = (newOpts) => options = ({ ...options, ...newOpts }); - ` + `, }); }); api.addPluginExports(() => [ { specifiers: ['MicroApp'], - source: absMicroAppPath - } + source: absMicroAppPath, + }, ]); api.addPluginExports(() => [ { specifiers: ['MicroAppWithMemoHistory'], - source: absMicroAppWithMemoHistoryPath - } + source: absMicroAppWithMemoHistoryPath, + }, ]); api.addPluginExports(() => [ { specifiers: ['getMicroAppRouteComponent'], - source: absGetMicroAppRouteCompPath - } + source: absGetMicroAppRouteCompPath, + }, ]); } diff --git a/packages/fes-plugin-request/src/index.js b/packages/fes-plugin-request/src/index.js index d1b28326..d6d55f26 100644 --- a/packages/fes-plugin-request/src/index.js +++ b/packages/fes-plugin-request/src/index.js @@ -1,7 +1,7 @@ import { Logger } from '@fesjs/compiler'; import { readFileSync } from 'fs'; import { join } from 'path'; -import { resolvePkg } from '@fesjs/utils'; +import { resolveInnerDep } from '@fesjs/utils'; import { name } from '../package.json'; const logger = new Logger('fes:plugin-request'); @@ -45,7 +45,7 @@ export default (api) => { content: requestTemplate .replace('REPLACE_DATA_FIELD', JSON.stringify(dataField)) .replace('REPLACE_BASE', base || '') - .replace('AXIOS_PATH', resolvePkg('axios')), + .replace('AXIOS_PATH', resolveInnerDep('axios', api.builder)), }); }); @@ -67,13 +67,9 @@ export default (api) => { }, ]); - api.addRuntimeType(() => ({ + api.addConfigType(() => ({ source: name, - specifier: ['RequestRuntimeConfig'], - })); - - api.addBuildType(() => ({ - source: name, - specifier: ['RequestBuildConfig'], + runtime: ['RequestRuntimeConfig'], + build: ['RequestBuildConfig'], })); }; diff --git a/packages/fes-plugin-windicss/src/index.js b/packages/fes-plugin-windicss/src/index.js index 8e2c87b8..004ac82d 100644 --- a/packages/fes-plugin-windicss/src/index.js +++ b/packages/fes-plugin-windicss/src/index.js @@ -49,8 +49,8 @@ export default (api) => { return memo; }); - api.addBuildType(() => ({ + api.addConfigType(() => ({ source: name, - specifier: ['WindicssBuildConfig'], + build: ['WindicssBuildConfig'], })); }; diff --git a/packages/fes-preset-built-in/src/plugins/generateFiles/genType.js b/packages/fes-preset-built-in/src/plugins/generateFiles/genType.js index 7ea90f7a..e21f0eb0 100644 --- a/packages/fes-preset-built-in/src/plugins/generateFiles/genType.js +++ b/packages/fes-preset-built-in/src/plugins/generateFiles/genType.js @@ -1,17 +1,14 @@ function importsToStr(imports) { return imports.map((imp) => { - const { source, specifier } = imp; - if (specifier) { - return `import {${specifier.join(', ')}} from '${source}';`; - } - return ''; + const { source, build = [], runtime = [] } = imp; + return `import {${build.concat(runtime).join(', ')}} from '${source}';`; }); } -function genTypeContent(name, imports) { +function genTypeContent(imports) { return { - TYP_NAME: name, - TYPES: imports.reduce((previousValue, currentValue) => previousValue.concat(currentValue.specifier || []), []).join(' & '), + RUNTIME_TYPES: imports.reduce((previousValue, currentValue) => previousValue.concat(currentValue.runtime || []), []).join(' & '), + BUILD_TYPES: imports.reduce((previousValue, currentValue) => previousValue.concat(currentValue.build || []), []).join(' & '), imports: importsToStr(imports).join('\n'), }; } @@ -22,31 +19,20 @@ export default function (api) { } = api; api.onGenerateFiles(async () => { - const runtimeTypeName = 'PluginRuntimeConfig'; - const buildTypeName = 'PluginBuildConfig'; const typeTpl = ` {{{ imports }}} -export type {{{TYP_NAME}}} = {{{TYPES}}} +export type PluginRuntimeConfig = {{{RUNTIME_TYPES}}}; +export type PluginBuildConfig = {{{BUILD_TYPES}}}; `; - const runtimeImportSources = await api.applyPlugins({ - key: 'addRuntimeType', + const importSources = await api.applyPlugins({ + key: 'addConfigType', type: api.ApplyPluginsType.add, initialValue: [], }); api.writeTmpFile({ - path: 'runtime.d.ts', - content: Mustache.render(typeTpl, genTypeContent(runtimeTypeName, runtimeImportSources)), - }); - - const buildImportSources = await api.applyPlugins({ - key: 'addBuildType', - type: api.ApplyPluginsType.add, - initialValue: [], - }); - api.writeTmpFile({ - path: 'build.d.ts', - content: Mustache.render(typeTpl, genTypeContent(buildTypeName, buildImportSources)), + path: 'configType.d.ts', + content: Mustache.render(typeTpl, genTypeContent(importSources)), }); }); } diff --git a/packages/fes-preset-built-in/src/plugins/registerMethods.js b/packages/fes-preset-built-in/src/plugins/registerMethods.js index c7dc0b6d..cd7de0ad 100644 --- a/packages/fes-preset-built-in/src/plugins/registerMethods.js +++ b/packages/fes-preset-built-in/src/plugins/registerMethods.js @@ -16,8 +16,7 @@ export default function (api) { 'addEntryCode', 'modifyRoutes', - 'addRuntimeType', - 'addBuildType', + 'addConfigType', 'addTmpGenerateWatcherPaths', diff --git a/packages/fes-template-h5/.fes.js b/packages/fes-template-h5/.fes.js index 8beb2da4..bc9f73e9 100644 --- a/packages/fes-template-h5/.fes.js +++ b/packages/fes-template-h5/.fes.js @@ -44,6 +44,6 @@ export default defineBuildConfig({ } } } - } + }, }); diff --git a/packages/fes-template-h5/tsconfig.json b/packages/fes-template-h5/tsconfig.json index e506d82c..f8e8cc7a 100644 --- a/packages/fes-template-h5/tsconfig.json +++ b/packages/fes-template-h5/tsconfig.json @@ -29,19 +29,19 @@ } }, "include": [ + "*.js", + ".fes.js", "src/**/*", - "tests/**/*", - "test/**/*", - "__test__/**/*", "typings/**/*", "config/**/*", - "src/.fes/runtime.d.ts" + "src/.fes/configType.d.ts" ], "exclude": [ "build", "dist", "scripts", "webpack", - "jest" + "jest", + "node_modules" ] } \ No newline at end of file diff --git a/packages/fes-template/tsconfig.json b/packages/fes-template/tsconfig.json index ea930c0b..b7fce5b7 100644 --- a/packages/fes-template/tsconfig.json +++ b/packages/fes-template/tsconfig.json @@ -31,7 +31,8 @@ "config/**/*", ".eslintrc.js", ".stylelintrc.js", - ".prettierrc.js" + ".prettierrc.js", + "src/.fes/configType.d.ts" ], "exclude": ["node_modules", "build", "dist", "scripts", "src/.fes/*", "webpack", "jest"] } diff --git a/packages/fes-utils/src/index.js b/packages/fes-utils/src/index.js index ba739559..dd83f5ca 100644 --- a/packages/fes-utils/src/index.js +++ b/packages/fes-utils/src/index.js @@ -20,6 +20,7 @@ import Generator from './Generator'; import winPath from './winPath'; import delay from './delay'; import resolvePkg from './resolvePkg'; +import resolveInnerDep from './resolveInnerDep'; import compatESModuleRequire from './compatESModuleRequire'; import cleanRequireCache from './cleanRequireCache'; import parseRequireDeps from './parseRequireDeps'; @@ -47,4 +48,16 @@ export { generator, }; -export { Generator, winPath, delay, compatESModuleRequire, cleanRequireCache, parseRequireDeps, mergeConfig, resolvePkg, generateFiles, getAppEntryPath }; +export { + Generator, + winPath, + delay, + compatESModuleRequire, + cleanRequireCache, + parseRequireDeps, + mergeConfig, + resolvePkg, + resolveInnerDep, + generateFiles, + getAppEntryPath, +}; diff --git a/packages/fes-utils/src/resolveInnerDep.js b/packages/fes-utils/src/resolveInnerDep.js new file mode 100644 index 00000000..8142d8d3 --- /dev/null +++ b/packages/fes-utils/src/resolveInnerDep.js @@ -0,0 +1,12 @@ +import { dirname } from 'path'; +import winPath from './winPath'; + +const resolvePkg = (pkgName, builder) => { + const pkgPath = dirname(require.resolve(`${pkgName}/package.json`)); + if (builder.isVite) { + return winPath(pkgPath.replace('/', `${builder.innerDepPrefix}/`)); + } + return winPath(pkgPath); +}; + +export default resolvePkg; diff --git a/packages/fes/types.d.ts b/packages/fes/types.d.ts index cff8ad11..7a42ee55 100644 --- a/packages/fes/types.d.ts +++ b/packages/fes/types.d.ts @@ -1,8 +1,8 @@ import { Component, DefineComponent, App } from 'vue'; import { RouteRecordRaw, Router } from 'vue-router'; import { Plugin } from '@fesjs/runtime'; -import { PluginRuntimeConfig } from '@@/runtime'; -import { PluginBuildConfig } from '@@/build'; +// @ts-ignore +import type { PluginRuntimeConfig, PluginBuildConfig } from '@@/configType'; // @ts-ignore export * from '@@/core/coreExports'; From a366f9694a86ba290c85e0227cbb58cf400add98 Mon Sep 17 00:00:00 2001 From: winixt Date: Mon, 28 Mar 2022 21:18:40 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix:=20=E7=A7=BB=E9=99=A4=20getHostname?= =?UTF-8?q?=E3=80=81getPort=E3=80=81getServer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/fes-build-vite/src/dev.js | 29 ------------------- .../src/plugins/commands/dev/index.js | 27 ----------------- 2 files changed, 56 deletions(-) diff --git a/packages/fes-build-vite/src/dev.js b/packages/fes-build-vite/src/dev.js index e0a48452..1ac5693b 100644 --- a/packages/fes-build-vite/src/dev.js +++ b/packages/fes-build-vite/src/dev.js @@ -3,18 +3,13 @@ import vue from '@vitejs/plugin-vue'; import vueJsx from '@vitejs/plugin-vue-jsx'; import SFCConfigBlockPlugin from './SFCConfigBlockPlugin'; -const assert = require('assert'); - export default (api) => { const { - env, paths, utils: { chalk }, } = api; const unwatchs = []; - let port; - let hostname; let server; function destroy() { @@ -63,30 +58,6 @@ export default (api) => { }, }); - api.registerMethod({ - name: 'getPort', - fn() { - assert(env === 'development', 'api.getPort() is only valid in development.'); - return port; - }, - }); - - api.registerMethod({ - name: 'getHostname', - fn() { - assert(env === 'development', 'api.getHostname() is only valid in development.'); - return hostname; - }, - }); - - api.registerMethod({ - name: 'getServer', - fn() { - assert(env === 'development', 'api.getServer() is only valid in development.'); - return server; - }, - }); - api.registerMethod({ name: 'restartServer', fn() { diff --git a/packages/fes-build-webpack/src/plugins/commands/dev/index.js b/packages/fes-build-webpack/src/plugins/commands/dev/index.js index 6ee8245d..432ceb6f 100644 --- a/packages/fes-build-webpack/src/plugins/commands/dev/index.js +++ b/packages/fes-build-webpack/src/plugins/commands/dev/index.js @@ -3,11 +3,8 @@ * https://github.com/umijs/umi/blob/master/packages/preset-built-in/src/plugins/commands/dev/dev.ts */ -const assert = require('assert'); - export default (api) => { const { - env, paths, utils: { chalk, portfinder, generateFiles }, } = api; @@ -165,30 +162,6 @@ export default (api) => { }, }); - api.registerMethod({ - name: 'getPort', - fn() { - assert(env === 'development', 'api.getPort() is only valid in development.'); - return port; - }, - }); - - api.registerMethod({ - name: 'getHostname', - fn() { - assert(env === 'development', 'api.getHostname() is only valid in development.'); - return hostname; - }, - }); - - api.registerMethod({ - name: 'getServer', - fn() { - assert(env === 'development', 'api.getServer() is only valid in development.'); - return server; - }, - }); - api.registerMethod({ name: 'restartServer', fn() {