mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: babel plugin config error
This commit is contained in:
parent
9f519b6f42
commit
57e7717aa0
@ -112,6 +112,11 @@ function createContext(userConfig) {
|
||||
}
|
||||
|
||||
export const request = (url, data, options = {}) => {
|
||||
if (typeof options === 'string') {
|
||||
options = {
|
||||
method: options
|
||||
};
|
||||
}
|
||||
if (!currentRequestInstance) {
|
||||
currentRequestInstance = getRequestInstance();
|
||||
}
|
||||
|
@ -2,7 +2,7 @@ import {
|
||||
winPath
|
||||
} from '@umijs/utils';
|
||||
|
||||
function getBableOpts({
|
||||
function getBabelOpts({
|
||||
cwd,
|
||||
targets,
|
||||
config,
|
||||
@ -48,7 +48,7 @@ function getBableOpts({
|
||||
])
|
||||
: []),
|
||||
require.resolve('@vue/babel-plugin-jsx'),
|
||||
...(config.extraBabelPresets || [])
|
||||
...(config.extraBabelPlugins || [])
|
||||
];
|
||||
return {
|
||||
babelrc: false,
|
||||
@ -77,7 +77,7 @@ export default async ({
|
||||
if (modifyBabelPresetOpts) {
|
||||
presetOpts = await modifyBabelPresetOpts(presetOpts);
|
||||
}
|
||||
let babelOpts = getBableOpts({
|
||||
let babelOpts = getBabelOpts({
|
||||
cwd,
|
||||
config,
|
||||
presetOpts,
|
@ -3,7 +3,7 @@ import { existsSync } from 'fs';
|
||||
import Config from 'webpack-chain';
|
||||
import webpack from 'webpack';
|
||||
import createCssWebpackConfig from './css';
|
||||
import getBableOpts from './getBableOpts';
|
||||
import getBabelOpts from './getBabelOpts';
|
||||
import createVueWebpackConfig from './vue';
|
||||
import createDefineWebpackConfig from './define';
|
||||
import createMinimizerWebpackConfig from './minimizer';
|
||||
@ -155,7 +155,7 @@ export default async function getConfig({
|
||||
});
|
||||
|
||||
const { targets, browserslist } = getTargetsAndBrowsersList({ config });
|
||||
const babelOpts = await getBableOpts({
|
||||
const babelOpts = await getBabelOpts({
|
||||
cwd,
|
||||
config,
|
||||
modifyBabelOpts,
|
||||
|
@ -9,8 +9,7 @@ export default (api) => {
|
||||
const { absSrcPath = '', absTmpPath = '' } = paths;
|
||||
const files = [
|
||||
'global.css',
|
||||
'global.less',
|
||||
'global.stylus'
|
||||
'global.less'
|
||||
];
|
||||
const globalCSSFile = files
|
||||
.map(file => join(absSrcPath || '', file))
|
||||
|
Loading…
x
Reference in New Issue
Block a user