mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-11-29 10:38:56 +08:00
chore: provide esm output file in dist (#6966)
This commit is contained in:
parent
3c5fb84542
commit
c5ea668e88
@ -22,7 +22,7 @@ const imageOptions = {
|
||||
limit: 10000,
|
||||
};
|
||||
|
||||
function getWebpackConfig(modules) {
|
||||
function getWebpackConfig(modules, esm = false) {
|
||||
const pkg = require(getProjectPath('package.json'));
|
||||
const babelConfig = require('./getBabelCommonConfig')(modules || false);
|
||||
|
||||
@ -185,7 +185,7 @@ All rights reserved.
|
||||
};
|
||||
|
||||
if (process.env.RUN_ENV === 'PRODUCTION') {
|
||||
const entry = ['./index'];
|
||||
let entry = ['./index'];
|
||||
config.externals = [
|
||||
{
|
||||
vue: {
|
||||
@ -197,9 +197,25 @@ All rights reserved.
|
||||
},
|
||||
},
|
||||
];
|
||||
config.output.library = distFileBaseName;
|
||||
config.output.libraryTarget = 'umd';
|
||||
config.output.globalObject = 'this';
|
||||
if (esm) {
|
||||
entry = ['./index.esm'];
|
||||
config.experiments = {
|
||||
...config.experiments,
|
||||
outputModule: true,
|
||||
};
|
||||
config.output.chunkFormat = 'module';
|
||||
config.output.library = {
|
||||
type: 'module',
|
||||
};
|
||||
config.target = 'es2019';
|
||||
} else {
|
||||
config.output.libraryTarget = 'umd';
|
||||
config.output.library = distFileBaseName;
|
||||
config.output.globalObject = 'this';
|
||||
}
|
||||
|
||||
const entryName = esm ? `${distFileBaseName}.esm` : distFileBaseName;
|
||||
|
||||
config.optimization = {
|
||||
minimizer: [
|
||||
new TerserPlugin({
|
||||
@ -213,7 +229,7 @@ All rights reserved.
|
||||
// Development
|
||||
const uncompressedConfig = merge({}, config, {
|
||||
entry: {
|
||||
[distFileBaseName]: entry,
|
||||
[entryName]: entry,
|
||||
},
|
||||
mode: 'development',
|
||||
plugins: [
|
||||
@ -226,7 +242,7 @@ All rights reserved.
|
||||
// Production
|
||||
const prodConfig = merge({}, config, {
|
||||
entry: {
|
||||
[`${distFileBaseName}.min`]: entry,
|
||||
[`${entryName}.min`]: entry,
|
||||
},
|
||||
mode: 'production',
|
||||
plugins: [
|
||||
|
@ -39,6 +39,7 @@ function externalDayjs(config) {
|
||||
}
|
||||
|
||||
const webpackConfig = getWebpackConfig(false);
|
||||
const webpackESMConfig = getWebpackConfig(false, true);
|
||||
|
||||
if (process.env.RUN_ENV === 'PRODUCTION') {
|
||||
webpackConfig.forEach(config => {
|
||||
@ -72,4 +73,4 @@ if (process.env.RUN_ENV === 'PRODUCTION') {
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = [...webpackConfig];
|
||||
module.exports = [...webpackConfig, ...webpackESMConfig];
|
||||
|
Loading…
Reference in New Issue
Block a user