mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: 全局样式覆盖问题
This commit is contained in:
parent
df999439c1
commit
4771764fdb
@ -2,10 +2,7 @@ import { relative, join } from 'path';
|
|||||||
import { existsSync } from 'fs';
|
import { existsSync } from 'fs';
|
||||||
|
|
||||||
export default (api) => {
|
export default (api) => {
|
||||||
const {
|
const { paths } = api;
|
||||||
paths,
|
|
||||||
utils: { winPath },
|
|
||||||
} = api;
|
|
||||||
const { absSrcPath = '', absTmpPath = '' } = paths;
|
const { absSrcPath = '', absTmpPath = '' } = paths;
|
||||||
const files = ['global.css', 'global.less', 'global.scss', 'global.sass', 'global.styl', 'global.stylus'];
|
const files = ['global.css', 'global.less', 'global.scss', 'global.sass', 'global.styl', 'global.stylus'];
|
||||||
const globalCSSFile = files
|
const globalCSSFile = files
|
||||||
@ -13,5 +10,10 @@ export default (api) => {
|
|||||||
.filter((file) => existsSync(file))
|
.filter((file) => existsSync(file))
|
||||||
.slice(0, 1);
|
.slice(0, 1);
|
||||||
|
|
||||||
api.addEntryCodeAhead(() => `${globalCSSFile.map((file) => `import '${winPath(relative(absTmpPath, file))}';`).join('')}`);
|
if (globalCSSFile.length) {
|
||||||
|
api.addEntryImportsAhead({
|
||||||
|
stage: 1,
|
||||||
|
fn: () => [{ source: relative(absTmpPath, globalCSSFile[0]) }],
|
||||||
|
});
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user