mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Merge pull request #4121 from WearyMonkey/toby-merge-optimisations
Merge optimisation configs
This commit is contained in:
commit
87572f70e8
@ -12,6 +12,12 @@ Object {
|
||||
"r2",
|
||||
],
|
||||
},
|
||||
"optimization": Object {
|
||||
"runtimeChunk": true,
|
||||
"splitChunks": Object {
|
||||
"chunks": "all",
|
||||
},
|
||||
},
|
||||
"output": Object {
|
||||
"filename": "[name].js",
|
||||
},
|
||||
@ -48,6 +54,12 @@ Object {
|
||||
"r2",
|
||||
],
|
||||
},
|
||||
"optimization": Object {
|
||||
"runtimeChunk": true,
|
||||
"splitChunks": Object {
|
||||
"chunks": "all",
|
||||
},
|
||||
},
|
||||
"output": Object {
|
||||
"filename": "[name].js",
|
||||
},
|
||||
@ -84,6 +96,15 @@ Object {
|
||||
"r4",
|
||||
],
|
||||
},
|
||||
"optimization": Object {
|
||||
"minimizer": Array [
|
||||
"banana",
|
||||
],
|
||||
"runtimeChunk": true,
|
||||
"splitChunks": Object {
|
||||
"chunks": "all",
|
||||
},
|
||||
},
|
||||
"output": Object {
|
||||
"filename": "[name].js",
|
||||
},
|
||||
|
@ -34,6 +34,16 @@ function resolve({ resolve: defaultResolve = {} }, { resolve: customResolve = {}
|
||||
};
|
||||
}
|
||||
|
||||
function optimization(
|
||||
{ optimization: defaultOptimization = {} },
|
||||
{ optimization: customOptimization = {} }
|
||||
) {
|
||||
return {
|
||||
...defaultOptimization,
|
||||
...customOptimization,
|
||||
};
|
||||
}
|
||||
|
||||
function mergeConfigs(config, customConfig) {
|
||||
return {
|
||||
// We'll always load our configurations after the custom config.
|
||||
@ -44,6 +54,7 @@ function mergeConfigs(config, customConfig) {
|
||||
plugins: plugins(config, customConfig),
|
||||
module: module(config, customConfig),
|
||||
resolve: resolve(config, customConfig),
|
||||
optimization: optimization(config, customConfig),
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -20,6 +20,12 @@ const config = {
|
||||
A2: 'src/B2',
|
||||
},
|
||||
},
|
||||
optimization: {
|
||||
splitChunks: {
|
||||
chunks: 'all',
|
||||
},
|
||||
runtimeChunk: true,
|
||||
},
|
||||
};
|
||||
|
||||
describe('mergeConfigs', () => {
|
||||
@ -45,6 +51,9 @@ describe('mergeConfigs', () => {
|
||||
A4: 'src/B4',
|
||||
},
|
||||
},
|
||||
optimization: {
|
||||
minimizer: ['banana'],
|
||||
},
|
||||
};
|
||||
|
||||
const result = mergeConfigs(config, customConfig);
|
||||
|
Loading…
x
Reference in New Issue
Block a user