-
-
Notifications
You must be signed in to change notification settings - Fork 9.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FIX error of load order when using configure in preview|config.js #10159
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
25a3ebe
FIX error of load order when using configure in preview|config.js
ndelangen 4274bae
Merge branch 'next' into fix/generated-load-order
ndelangen 2af5925
debug webpack when building examples
ndelangen 0731e87
DEBUG
ndelangen 3de6b66
DEBUG
ndelangen b6c921c
DEBUG
ndelangen cc5e970
DEBUG
ndelangen 684dd70
CHANGE so the main config files are separate from whatever addon/docs…
ndelangen 3f09905
FIX stories entry not being last
ndelangen a9ff75a
FIX deepscan issue
ndelangen 00a282a
REMOVE --debug-webpack from build-storybooks script
ndelangen afe8241
IMPROVE comment to explain why the sorting is required
ndelangen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
import { sortEntries } from './entries'; | ||
|
||
describe('sortEntries', () => { | ||
it('should do nothing', () => { | ||
const input = ['a', 'b', 'c', 'aa', 'cc', '123', '8000']; | ||
const output = sortEntries(input); | ||
|
||
expect(output).toEqual(['a', 'b', 'c', 'aa', 'cc', '123', '8000']); | ||
}); | ||
it('should move preview-type generated-config entries after all other generated entries', () => { | ||
const input = [ | ||
'/Users/dev/Projects/GitHub/storybook/core/lib/core/dist/server/common/polyfills.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/lib/core/dist/server/preview/globals.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/examples/web-components-kitchen-sink/.storybook/storybook-init-framework-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/examples/web-components-kitchen-sink/.storybook/preview.js-generated-config-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/docs/dist/frameworks/common/config.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/docs/dist/frameworks/web-components/config.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/a11y/dist/preset/addDecorator.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/actions/dist/preset/addArgs.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/knobs/dist/preset/addDecorator.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/links/dist/preset/addDecorator.js-generated-other-entry.js', | ||
]; | ||
const output = sortEntries(input); | ||
expect(output).toEqual([ | ||
'/Users/dev/Projects/GitHub/storybook/core/lib/core/dist/server/common/polyfills.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/lib/core/dist/server/preview/globals.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/examples/web-components-kitchen-sink/.storybook/storybook-init-framework-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/docs/dist/frameworks/common/config.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/docs/dist/frameworks/web-components/config.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/a11y/dist/preset/addDecorator.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/actions/dist/preset/addArgs.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/knobs/dist/preset/addDecorator.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/links/dist/preset/addDecorator.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/examples/web-components-kitchen-sink/.storybook/preview.js-generated-config-entry.js', | ||
]); | ||
}); | ||
it('should move stories-type all other generated entries', () => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is after missing from this sentence? |
||
const input = [ | ||
'/Users/dev/Projects/GitHub/storybook/core/lib/core/dist/server/common/polyfills.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/lib/core/dist/server/preview/globals.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/examples/official-storybook/storybook-init-framework-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/examples/official-storybook/preview.js-generated-config-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/docs/dist/frameworks/common/config.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/docs/dist/frameworks/react/config.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/actions/dist/preset/addArgs.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/links/dist/preset/addDecorator.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/knobs/dist/preset/addDecorator.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/a11y/dist/preset/addDecorator.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/queryparams/dist/preset/addDecorator.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/examples/official-storybook/generated-stories-entry.js', | ||
]; | ||
const output = sortEntries(input); | ||
expect(output).toEqual([ | ||
'/Users/dev/Projects/GitHub/storybook/core/lib/core/dist/server/common/polyfills.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/lib/core/dist/server/preview/globals.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/examples/official-storybook/storybook-init-framework-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/docs/dist/frameworks/common/config.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/docs/dist/frameworks/react/config.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/actions/dist/preset/addArgs.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/links/dist/preset/addDecorator.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/knobs/dist/preset/addDecorator.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/a11y/dist/preset/addDecorator.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/addons/queryparams/dist/preset/addDecorator.js-generated-other-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/examples/official-storybook/preview.js-generated-config-entry.js', | ||
'/Users/dev/Projects/GitHub/storybook/core/examples/official-storybook/generated-stories-entry.js', | ||
]); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"preview & config can call configure which should always happen AFTER all global decorators & args are set." - better explanation