-
Notifications
You must be signed in to change notification settings - Fork 655
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
chore(deps): upgrade to storybook 7.6.4, preact 10.19.3, esbuild 0.19.9 #990
Conversation
storybook grabbed a newer version of esbuild (resulting in following error), so let's update that here too
|
const elements = [...document.querySelectorAll('#root, #root *')]; | ||
// Note: #storybook-root is made by storybook, #storybook-test-root is made by us in preview.jsx | ||
// #storybook-root > #storybook-test-root > some_element_being_tested | ||
const elements = [...document.querySelectorAll('#storybook-root, #storybook-root *')]; |
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.
pretty sure storybook changed the padding/margin of their root element, hence the change in snapshot sizes
@@ -6,15 +6,14 @@ | |||
'use strict'; | |||
|
|||
const log = require('debug')('lhci:utils:api-client'); | |||
const URL = require('url').URL; |
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.
esbuild no longer likes this
Needed for Node 18 (cuz of an issue with Webpack using now-removed crypto option).