mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Fix polyfills loading order
This commit is contained in:
parent
8267159851
commit
603c1bfac7
@ -33,13 +33,14 @@ export default function(configType, baseConfig, configDir) {
|
|||||||
|
|
||||||
// Check whether addons.js file exists inside the storybook.
|
// Check whether addons.js file exists inside the storybook.
|
||||||
// Load the default addons.js file if it's missing.
|
// Load the default addons.js file if it's missing.
|
||||||
|
// Insert it after polyfills.js, but before client/manager.
|
||||||
const storybookDefaultAddonsPath = path.resolve(__dirname, 'addons.js');
|
const storybookDefaultAddonsPath = path.resolve(__dirname, 'addons.js');
|
||||||
const storybookCustomAddonsPath = path.resolve(configDir, 'addons.js');
|
const storybookCustomAddonsPath = path.resolve(configDir, 'addons.js');
|
||||||
if (fs.existsSync(storybookCustomAddonsPath)) {
|
if (fs.existsSync(storybookCustomAddonsPath)) {
|
||||||
logger.info('=> Loading custom addons config.');
|
logger.info('=> Loading custom addons config.');
|
||||||
config.entry.manager.unshift(storybookCustomAddonsPath);
|
config.entry.manager.splice(1, 0, storybookCustomAddonsPath);
|
||||||
} else {
|
} else {
|
||||||
config.entry.manager.unshift(storybookDefaultAddonsPath);
|
config.entry.manager.splice(1, 0, storybookDefaultAddonsPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check whether user has a custom webpack config file and
|
// Check whether user has a custom webpack config file and
|
||||||
|
@ -33,13 +33,14 @@ export default function(configType, baseConfig, configDir) {
|
|||||||
|
|
||||||
// Check whether addons.js file exists inside the storybook.
|
// Check whether addons.js file exists inside the storybook.
|
||||||
// Load the default addons.js file if it's missing.
|
// Load the default addons.js file if it's missing.
|
||||||
|
// Insert it after polyfills.js, but before client/manager.
|
||||||
const storybookDefaultAddonsPath = path.resolve(__dirname, 'addons.js');
|
const storybookDefaultAddonsPath = path.resolve(__dirname, 'addons.js');
|
||||||
const storybookCustomAddonsPath = path.resolve(configDir, 'addons.js');
|
const storybookCustomAddonsPath = path.resolve(configDir, 'addons.js');
|
||||||
if (fs.existsSync(storybookCustomAddonsPath)) {
|
if (fs.existsSync(storybookCustomAddonsPath)) {
|
||||||
logger.info('=> Loading custom addons config.');
|
logger.info('=> Loading custom addons config.');
|
||||||
config.entry.manager.unshift(storybookCustomAddonsPath);
|
config.entry.manager.splice(1, 0, storybookCustomAddonsPath);
|
||||||
} else {
|
} else {
|
||||||
config.entry.manager.unshift(storybookDefaultAddonsPath);
|
config.entry.manager.splice(1, 0, storybookDefaultAddonsPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check whether user has a custom webpack config file and
|
// Check whether user has a custom webpack config file and
|
||||||
|
Loading…
x
Reference in New Issue
Block a user