-
-
Notifications
You must be signed in to change notification settings - Fork 145
Conversation
- expose map files (dynamic) - update changelog
'/dash_core_components/dash_core_components.min.js.map' | ||
).format(__version__), | ||
'namespace': 'dash_core_components', | ||
'dynamic': True |
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.
Expose the map files, make them dynamic
@@ -1,6 +1,6 @@ | |||
{ | |||
"name": "dash-core-components", | |||
"version": "0.40.2", | |||
"version": "0.40.3", |
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.
bump version
const devtool = overrides.devtool || ( | ||
mode === 'development' ? "eval-source-map" : 'none' | ||
); | ||
const devtool = overrides.devtool || 'source-map'; |
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.
default to source-map now -- this causes the dev bundle to increase dramatically in number of lines, even if it is smaller now -- same issue as with plotly/dash-renderer#105 (comment)
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.
💃
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.
🎉 Thanks for making this PR, looks good to me!
Still need to figure out why that one percy test is failing reliably. |
Oops, you're right. |
The snapshot is too soon after starting the server, add a time.sleep between those lines: dash-core-components/test/test_integration.py Lines 817 to 819 in 19ac349
|
Ok. Will try that and force re-run it a few times. |
Fixes #404
Relates to plotly/dash#478
plotly/dash-renderer#104
Relates to plotly/dash-table#284