refactor: 优化 plugin 插件

This commit is contained in:
winixt 2023-01-10 19:56:57 +08:00
parent df78d1dcac
commit 3620ee15b4
4 changed files with 33 additions and 24 deletions

View File

@ -4,19 +4,20 @@ const fs = require('fs');
async function handleCacheClean(cwd) {
return new Promise((resolve, reject) => {
const cachePath = path.join(cwd, '.cache/webpack');
if (fs.existsSync(cachePath)) {
require('get-folder-size')(cachePath, (err, size) => {
if (err) {
return reject(err);
}
// 大于 5G 清除缓存,修复 webpack 缓存无限增长问题
// https://github.com/webpack/webpack/issues/13291
if (size > 5 * 1024 * 1024 * 1024) {
require('fs-extra').removeSync(cachePath);
}
resolve(size);
});
if (!fs.existsSync(cachePath)) {
return resolve();
}
require('get-folder-size')(cachePath, (err, size) => {
if (err) {
return reject(err);
}
// 大于 5G 清除缓存,修复 webpack 缓存无限增长问题
// https://github.com/webpack/webpack/issues/13291
if (size > 5 * 1024 * 1024 * 1024) {
require('fs-extra').removeSync(cachePath);
}
resolve(size);
});
});
}

View File

@ -1,3 +0,0 @@
module.exports = {
copy: ['runtime'],
};

View File

@ -1,9 +1,13 @@
import { join } from 'path';
import { readFileSync } from 'fs';
import { name } from '../package.json';
export default (api) => {
api.addRuntimePluginKey(() => 'login');
const pkgs = Object.keys({
...api.pkg.dependencies,
...api.pkg.devDependencies,
});
const namespace = 'plugin-login';
const absRuntimeFilePath = `${namespace}/runtime.js`;
@ -11,9 +15,20 @@ export default (api) => {
api.onGenerateFiles(() => {
if (generatedOnce) return;
generatedOnce = true;
api.copyTmpFiles({
namespace,
path: join(__dirname, 'runtime'),
let content = readFileSync(join(__dirname, 'runtime', 'runtime.js'), 'utf-8');
if (pkgs.find((item) => item.includes('@fesjs/plugin-access'))) {
content = content.replace(
'// ACCESS',
`export function access(memo) {
const { loginPath } = getLoginConfig();
memo.ignoreAccess = (memo.ignoreAccess || []).concat(loginPath);
return memo;
}`,
);
}
api.writeTmpFile({
path: absRuntimeFilePath,
content,
});
});

View File

@ -14,11 +14,7 @@ function getLoginConfig() {
return config;
}
export function access(memo) {
const { loginPath } = getLoginConfig();
memo.ignoreAccess = (memo.ignoreAccess || []).concat(loginPath);
return memo;
}
// ACCESS
export function request(memo) {
if (!memo.responseInterceptors) {