mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
feat: 添加 bable-pulugin-import 配置
This commit is contained in:
parent
0e4c377a3e
commit
d7a7a20d5b
@ -36,6 +36,7 @@
|
|||||||
"html-webpack-plugin": "^3.2.0",
|
"html-webpack-plugin": "^3.2.0",
|
||||||
"html-webpack-tags-plugin": "2.0.17",
|
"html-webpack-tags-plugin": "2.0.17",
|
||||||
"vue-loader": "^16.1.2",
|
"vue-loader": "^16.1.2",
|
||||||
"webpack-bundle-analyzer": "4.3.0"
|
"webpack-bundle-analyzer": "4.3.0",
|
||||||
|
"babel-plugin-import": "1.13.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -15,6 +15,7 @@ export default function () {
|
|||||||
require.resolve('./plugins/features/analyze'),
|
require.resolve('./plugins/features/analyze'),
|
||||||
require.resolve('./plugins/features/autoprefixer'),
|
require.resolve('./plugins/features/autoprefixer'),
|
||||||
require.resolve('./plugins/features/base'),
|
require.resolve('./plugins/features/base'),
|
||||||
|
require.resolve('./plugins/features/babelPluginImport'),
|
||||||
require.resolve('./plugins/features/chainWebpack'),
|
require.resolve('./plugins/features/chainWebpack'),
|
||||||
require.resolve('./plugins/features/chunks'),
|
require.resolve('./plugins/features/chunks'),
|
||||||
require.resolve('./plugins/features/cssLoader'),
|
require.resolve('./plugins/features/cssLoader'),
|
||||||
|
@ -0,0 +1,20 @@
|
|||||||
|
export default (api) => {
|
||||||
|
api.describe({
|
||||||
|
key: 'babelPluginImport',
|
||||||
|
config: {
|
||||||
|
schema(joi) {
|
||||||
|
return joi.array();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
api.modifyBabelOpts((babelOpts) => {
|
||||||
|
if (api.config.babelPluginImport) {
|
||||||
|
api.config.babelPluginImport.forEach((config) => {
|
||||||
|
babelOpts.plugins.push(['import', config]);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
return babelOpts;
|
||||||
|
});
|
||||||
|
};
|
@ -101,7 +101,7 @@ const genRoutes = function (parentRoutes, path, parentRoutePath, config) {
|
|||||||
path: routePath,
|
path: routePath,
|
||||||
component: componentPath,
|
component: componentPath,
|
||||||
name: routeName,
|
name: routeName,
|
||||||
meta: routeMetaBlock.content ? JSON.parse(routeMetaBlock.content) : {}
|
meta: routeMetaBlock?.content ? JSON.parse(routeMetaBlock.content) : {}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -109,7 +109,7 @@ const genRoutes = function (parentRoutes, path, parentRoutePath, config) {
|
|||||||
path: routePath,
|
path: routePath,
|
||||||
component: componentPath,
|
component: componentPath,
|
||||||
name: routeName,
|
name: routeName,
|
||||||
meta: routeMetaBlock.content ? JSON.parse(routeMetaBlock.content) : {}
|
meta: routeMetaBlock?.content ? JSON.parse(routeMetaBlock.content) : {}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user