mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: 修复设置extraCSS为false时关闭压缩css错误 (#193)
* feat: mini-css-extract-plugin支持配置 * fix: 修复设置extraCSS为false时关闭压缩css错误
This commit is contained in:
parent
92fa1919b7
commit
1fb871da09
@ -101,6 +101,9 @@ export default function createCssWebpackConfig({ isDev, config, webpackConfig, b
|
|||||||
config.extraCSS?.plugin ?? {},
|
config.extraCSS?.plugin ?? {},
|
||||||
),
|
),
|
||||||
]);
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isDev) {
|
||||||
webpackConfig.optimization.minimizer('css').use(require.resolve('css-minimizer-webpack-plugin'), [{}]);
|
webpackConfig.optimization.minimizer('css').use(require.resolve('css-minimizer-webpack-plugin'), [{}]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
22
packages/fes-builder-webpack/types.d.ts
vendored
22
packages/fes-builder-webpack/types.d.ts
vendored
@ -1,30 +1,30 @@
|
|||||||
import Config from 'webpack-5-chain'
|
import Config from 'webpack-5-chain';
|
||||||
import webpack from 'webpack';
|
import webpack from 'webpack';
|
||||||
import HtmlWebpackPlugin from 'html-webpack-plugin'
|
import HtmlWebpackPlugin from 'html-webpack-plugin';
|
||||||
import { LoaderOptions, PluginOptions } from 'mini-css-extract-plugin'
|
import { LoaderOptions, PluginOptions } from 'mini-css-extract-plugin';
|
||||||
|
|
||||||
interface CopyFileType {
|
interface CopyFileType {
|
||||||
from: string;
|
from: string;
|
||||||
to: string;
|
to: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module "@fesjs/fes" {
|
declare module '@fesjs/fes' {
|
||||||
interface PluginBuildConfig {
|
interface PluginBuildConfig {
|
||||||
analyze?: {
|
analyze?: {
|
||||||
analyzerMode?: 'server' | 'static' | 'disabled';
|
analyzerMode?: 'server' | 'static' | 'disabled';
|
||||||
analyzerHost?: string;
|
analyzerHost?: string;
|
||||||
analyzerPort?: number | 'auto';
|
analyzerPort?: number | 'auto';
|
||||||
openAnalyzer?: boolean;
|
openAnalyzer?: boolean;
|
||||||
generateStatsFile?: boolean;
|
generateStatsFile?: boolean;
|
||||||
statsFilename?: string;
|
statsFilename?: string;
|
||||||
logLevel?: 'info' | 'warn' | 'error' | 'silent';
|
logLevel?: 'info' | 'warn' | 'error' | 'silent';
|
||||||
defaultSizes?: 'stat' | 'parsed' | 'gzip'
|
defaultSizes?: 'stat' | 'parsed' | 'gzip';
|
||||||
};
|
};
|
||||||
chainWebpack?: (memo: Config, args: {env: string, webpack: typeof webpack}) => void;
|
chainWebpack?: (memo: Config, args: { env: string; webpack: typeof webpack }) => void;
|
||||||
copy?: CopyFileType | CopyFileType[];
|
copy?: CopyFileType | CopyFileType[];
|
||||||
cssLoader?: {
|
cssLoader?: {
|
||||||
url?: boolean | ((url: string, resourcePath: string) => boolean);
|
url?: boolean | ((url: string, resourcePath: string) => boolean);
|
||||||
import?: boolean | ({ filter: (url: string, media: string, resourcePath: string) => boolean });
|
import?: boolean | { filter: (url: string, media: string, resourcePath: string) => boolean };
|
||||||
modules?: boolean | string | object;
|
modules?: boolean | string | object;
|
||||||
sourceMap?: boolean;
|
sourceMap?: boolean;
|
||||||
importLoaders?: number;
|
importLoaders?: number;
|
||||||
@ -51,13 +51,13 @@ declare module "@fesjs/fes" {
|
|||||||
html?: HtmlWebpackPlugin.Options;
|
html?: HtmlWebpackPlugin.Options;
|
||||||
lessLoader?: Record<string, any>;
|
lessLoader?: Record<string, any>;
|
||||||
nodeModulesTransform?: {
|
nodeModulesTransform?: {
|
||||||
exclude: string[]
|
exclude: string[];
|
||||||
};
|
};
|
||||||
postcssLoader?: Record<string, any>;
|
postcssLoader?: Record<string, any>;
|
||||||
vueLoader?: object;
|
vueLoader?: object;
|
||||||
extraCSS?: {
|
extraCSS?: {
|
||||||
loader?: LoaderOptions,
|
loader?: LoaderOptions;
|
||||||
plugin?: PluginOptions
|
plugin?: PluginOptions;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import { defineBuildConfig } from '@fesjs/fes';
|
import { defineBuildConfig } from '@fesjs/fes';
|
||||||
|
|
||||||
export default defineBuildConfig({
|
export default defineBuildConfig({
|
||||||
builder: 'vite',
|
builder: 'webpack',
|
||||||
define: {
|
define: {
|
||||||
__DEV__: false,
|
__DEV__: false,
|
||||||
},
|
},
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import { defineBuildConfig } from "@fesjs/fes";
|
import { defineBuildConfig } from '@fesjs/fes';
|
||||||
|
|
||||||
export default {
|
export default defineBuildConfig({
|
||||||
// define: {
|
// define: {
|
||||||
// __DEV__: true
|
// __DEV__: true
|
||||||
// },
|
// },
|
||||||
}
|
});
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
import { defineBuildConfig } from '@fesjs/fes';
|
import { defineBuildConfig } from '@fesjs/fes';
|
||||||
|
|
||||||
export default defineBuildConfig({
|
export default defineBuildConfig({
|
||||||
swc: false,
|
|
||||||
targets: {
|
targets: {
|
||||||
chrome: '78',
|
chrome: '78',
|
||||||
},
|
},
|
||||||
@ -89,5 +88,4 @@ export default defineBuildConfig({
|
|||||||
monacoEditor: {
|
monacoEditor: {
|
||||||
languages: ['javascript', 'typescript', 'html', 'json'],
|
languages: ['javascript', 'typescript', 'html', 'json'],
|
||||||
},
|
},
|
||||||
presets: [require.resolve('../fes-builder-webpack/lib')],
|
|
||||||
});
|
});
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
export default {
|
import { defineBuildConfig } from '@fesjs/fes';
|
||||||
|
|
||||||
|
export default defineBuildConfig({
|
||||||
// define: {
|
// define: {
|
||||||
// __DEV__: true
|
// __DEV__: true
|
||||||
// },
|
// },
|
||||||
};
|
});
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
// .fes.js 只负责管理编译时配置,只能使用plain Object
|
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
|
import { defineBuildConfig } from '@fesjs/fes';
|
||||||
|
|
||||||
export default {
|
export default defineBuildConfig({
|
||||||
// publicPath: 'https://gw.alipayobjects.com/',
|
// publicPath: 'https://gw.alipayobjects.com/',
|
||||||
// 配置 mini-css-extract-plugin
|
// 配置 mini-css-extract-plugin
|
||||||
extraCSS: {
|
extraCSS: {
|
||||||
@ -9,4 +9,4 @@ export default {
|
|||||||
publicPath: (resourcePath, context) => `${path.relative(path.dirname(resourcePath), context)}/`,
|
publicPath: (resourcePath, context) => `${path.relative(path.dirname(resourcePath), context)}/`,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
});
|
||||||
|
@ -45,6 +45,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fesjs/fes": "workspace:*",
|
"@fesjs/fes": "workspace:*",
|
||||||
|
"@fesjs/builder-webpack": "workspace:*",
|
||||||
"@fesjs/plugin-login": "workspace:*",
|
"@fesjs/plugin-login": "workspace:*",
|
||||||
"@fesjs/plugin-access": "workspace:*",
|
"@fesjs/plugin-access": "workspace:*",
|
||||||
"@fesjs/plugin-enums": "workspace:*",
|
"@fesjs/plugin-enums": "workspace:*",
|
||||||
|
4
pnpm-lock.yaml
generated
4
pnpm-lock.yaml
generated
@ -750,6 +750,9 @@ importers:
|
|||||||
|
|
||||||
packages/fes-template:
|
packages/fes-template:
|
||||||
dependencies:
|
dependencies:
|
||||||
|
'@fesjs/builder-webpack':
|
||||||
|
specifier: workspace:*
|
||||||
|
version: link:../fes-builder-webpack
|
||||||
'@fesjs/fes':
|
'@fesjs/fes':
|
||||||
specifier: workspace:*
|
specifier: workspace:*
|
||||||
version: link:../fes
|
version: link:../fes
|
||||||
@ -4541,6 +4544,7 @@ packages:
|
|||||||
|
|
||||||
/@vuepress/shared@2.0.0-beta.50-pre.1:
|
/@vuepress/shared@2.0.0-beta.50-pre.1:
|
||||||
resolution: {integrity: sha512-Gk6ikIV2V8LMokc+H/juH+kBOigo38Woup42Q2pmmWqmlwdLqbUcCYZSt/z+opeOUAqC9s3CZnKR8xCw+qo8BQ==}
|
resolution: {integrity: sha512-Gk6ikIV2V8LMokc+H/juH+kBOigo38Woup42Q2pmmWqmlwdLqbUcCYZSt/z+opeOUAqC9s3CZnKR8xCw+qo8BQ==}
|
||||||
|
deprecated: deprecated
|
||||||
dependencies:
|
dependencies:
|
||||||
'@vue/shared': 3.2.47
|
'@vue/shared': 3.2.47
|
||||||
dev: false
|
dev: false
|
||||||
|
Loading…
x
Reference in New Issue
Block a user