mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
DEBUG
This commit is contained in:
parent
2af5925aca
commit
0731e87751
@ -22,17 +22,20 @@ export async function createPreviewEntry(options) {
|
||||
entries.push(path.resolve(path.join(configDir, `generated-stories-entry.js`)));
|
||||
}
|
||||
|
||||
const isGenerated = /generated-config-entry/;
|
||||
const isGeneratedConfig = /(?:preview|config)\..+-generated-config-entry/;
|
||||
|
||||
console.log({ entries });
|
||||
|
||||
return entries.sort((a, b) => {
|
||||
// we want this order to order generated entries so the ones that call configure appear LAST
|
||||
// whilst keeping the order of non-generated entries in the order they appear
|
||||
|
||||
switch (true) {
|
||||
case !!a.match(/(preview|config).js-generated-config-entry/) &&
|
||||
!!b.match(/generated-config-entry/): {
|
||||
case !!a.match(isGeneratedConfig) && !!b.match(isGenerated): {
|
||||
return 1;
|
||||
}
|
||||
case !!b.match(/(preview|config).js-generated-config-entry/) &&
|
||||
!!a.match(/generated-config-entry/): {
|
||||
case !!b.match(isGeneratedConfig) && !!a.match(isGenerated): {
|
||||
return -1;
|
||||
}
|
||||
default: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user