-
Notifications
You must be signed in to change notification settings - Fork 50
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
Upgrade node and npm packages #484
Conversation
because webpack 4 only supports nodejs 16 - webpack/webpack#14532
- Fix story name suggested by eslint - We cannot go beyond jest 26 because jest >= 27 breaks storyshot Ref: storybookjs/storybook#15916
@@ -33,7 +33,7 @@ exports[`Storyshots ActionMenu Default 1`] = ` | |||
className="MuiButton-label" | |||
> | |||
<svg | |||
aria-hidden="true" | |||
aria-hidden={true} | |||
className="MuiSvgIcon-root" | |||
focusable="false" |
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.
Does storybook forget to change focusable="false"
to focusable={false}
?
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.
Personally I don't know why this would change XD
For DOM elements, {true}
and "true"
are probably identical
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.
LGTM!
npm update
to Fix the dependabot PRs all at oncenode:16-alpine
to shrink the production image sizenpm audit
main.js
supportsenv
setup, which fixes the "process is not defined" error in statically built storybook/storybook/index.html
will become viewable after this fix!