-
Notifications
You must be signed in to change notification settings - Fork 33
Issue 104 - Add source map to NPM and PyPi packages #105
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
include dash_renderer/dash_renderer.min.js | ||
include dash_renderer/dash_renderer.dev.js | ||
include dash_renderer/dash_renderer.dev.js.map | ||
include dash_renderer/dash_renderer.min.js | ||
include dash_renderer/dash_renderer.min.js.map | ||
include dash_renderer/react-dom@*.min.js | ||
include dash_renderer/react@*.min.js |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '0.15.1' | ||
__version__ = '0.15.2' | ||
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. Bump version |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
dash_core_components==0.33.0 | ||
dash_html_components==0.11.0rc5 | ||
dash==0.29.0 | ||
dash==0.32.0 | ||
percy | ||
selenium | ||
mock | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "dash-renderer", | ||
"version": "0.15.0", | ||
"version": "0.15.2", | ||
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. Bump version.. for some reason this had not been bumped to 0.15.1 for NPM |
||
"description": "render dash components in react", | ||
"main": "src/index.js", | ||
"scripts": { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,7 @@ module.exports = (env, argv) => { | |
library: dashLibraryName, | ||
libraryTarget: 'window', | ||
}, | ||
devtool: 'source-map', | ||
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. Source map! This setting is slower but more accurate than other mappings. See here: https://webpack.js.org/configuration/devtool/ 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. Need to be sure I don't lose my debugging support with this, I remember the plain source-maps did not work so well. 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 this the in-IDE support you mentioned to me a little while ago? 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. Yes, I'll try it to be sure. 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. Thanks. If it doesn't work I'll change it to: |
||
externals: { | ||
react: 'React', | ||
'react-dom': 'ReactDOM', | ||
|
@@ -57,7 +58,6 @@ module.exports = (env, argv) => { | |
], | ||
}, | ||
], | ||
}, | ||
devtool: mode === 'development' ? 'eval-source-map' : 'none', | ||
} | ||
}; | ||
}; |
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.
Adding map files, reordering