From d94e704489f2eaff25272eeca7f786686f8d2e8b Mon Sep 17 00:00:00 2001 From: hawk86104 Date: Mon, 25 Mar 2024 21:23:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=BA=86=20=E6=89=93?= =?UTF-8?q?=E5=8C=85=E7=94=9F=E6=88=90=20=E8=8F=9C=E5=8D=95=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E6=96=87=E4=BB=B6=20.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .fes.js | 2 +- .fes.predev.js | 10 ++++-- package.json | 1 + src/common/addExtraScriptPlugin.js | 52 ++++++++++++++++++++++++++++++ src/plugins/preview.vue | 3 +- 5 files changed, 64 insertions(+), 4 deletions(-) create mode 100644 src/common/addExtraScriptPlugin.js diff --git a/.fes.js b/.fes.js index 85aa7d9c..bd24c7a6 100644 --- a/.fes.js +++ b/.fes.js @@ -4,7 +4,7 @@ * @Autor: 地虎降天龙 * @Date: 2023-10-16 10:53:09 * @LastEditors: 地虎降天龙 - * @LastEditTime: 2024-03-18 10:06:11 + * @LastEditTime: 2024-03-25 15:37:42 */ // import { resolve } from 'path'; import { join } from 'path'; diff --git a/.fes.predev.js b/.fes.predev.js index dcf4a263..a17188d1 100644 --- a/.fes.predev.js +++ b/.fes.predev.js @@ -4,9 +4,10 @@ * @Autor: 地虎降天龙 * @Date: 2023-10-16 10:53:09 * @LastEditors: 地虎降天龙 - * @LastEditTime: 2024-03-05 08:47:57 + * @LastEditTime: 2024-03-25 21:06:01 */ -import { defineBuildConfig } from '@fesjs/fes'; +import { defineBuildConfig } from '@fesjs/fes' +import addExtraScriptPlugin from './src/common/addExtraScriptPlugin' export default defineBuildConfig({ layout: { @@ -76,4 +77,9 @@ export default defineBuildConfig({ } ], }, + viteOption: { + plugins: [ + addExtraScriptPlugin() + ] + }, }); diff --git a/package.json b/package.json index 6069fc92..c7f54e14 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,7 @@ "@types/three": "0.161.1", "@webank/eslint-config-webank": "1.3.1", "cross-env": "^7.0.3", + "esm": "^3.2.25", "vite-plugin-glsl": "0.2.2" }, "dependencies": { diff --git a/src/common/addExtraScriptPlugin.js b/src/common/addExtraScriptPlugin.js new file mode 100644 index 00000000..5875515a --- /dev/null +++ b/src/common/addExtraScriptPlugin.js @@ -0,0 +1,52 @@ +/* + * @Description: + * @Version: 1.668 + * @Autor: 地虎降天龙 + * @Date: 2024-03-25 15:39:04 + * @LastEditors: 地虎降天龙 + * @LastEditTime: 2024-03-25 21:18:49 + */ +const path = require('path') +const fs = require('fs').promises +const glob = require('glob') + +const getPluginsConfig = () => { + // console.log(__dirname) + // const modulePaths = glob.sync('/plugins/**/config.js', { eager: true, cwd: __dirname }); //../../src , sync: true + const configFiles = glob.sync('../plugins/*/config.js', { cwd: __dirname }) + // 读取这些文件的内容并合并 + const configs = {} + const require2 = require('esm')(module) + configFiles.forEach(async (file) => { + const config = require2(path.join(__dirname, file)).default + configs[config.name] = config + }) + + // console.log(configs); + return { configs, date: new Date().toLocaleString() } +} +// getPluginsConfig() + +export default function addExtraScriptPlugin () { + return { + name: 'add-extra-script-plugin', + async generateBundle () { + async function writeToFile () { + try { + // 初始化要写入的文件内容 + const pluginsConfig = getPluginsConfig() + const content = JSON.stringify(pluginsConfig) + + // 写入文件 + await fs.writeFile('dist/menu.json', content, 'utf8') + + // console.log('menu.json written successfully.', pluginsConfig) + } catch (error) { + console.error('Error writing file:', error) + } + } + + await writeToFile() + } + }; +} \ No newline at end of file diff --git a/src/plugins/preview.vue b/src/plugins/preview.vue index 2acb8667..716614bd 100644 --- a/src/plugins/preview.vue +++ b/src/plugins/preview.vue @@ -4,7 +4,7 @@ * @Autor: 地虎降天龙 * @Date: 2023-11-18 22:17:49 * @LastEditors: 地虎降天龙 - * @LastEditTime: 2024-03-25 11:34:53 + * @LastEditTime: 2024-03-25 21:17:24 -->