-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Merge dash renderer with DashPy #1611
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
Changes from 27 commits
a37b7d2
e7af1f5
448b678
e447cbf
3b51822
907c9e3
7f742ea
5c01200
c1296d7
ea20450
1872382
9f8e0aa
b59c3ee
2537d33
ce82111
9900303
6dc2803
317d7e8
6032a08
afaf8d4
240e8f6
3c15edf
b578983
d20dbf1
a06e9cc
6bb9b47
8a7363c
afc363c
2aefb7f
12752bd
44449a0
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 |
---|---|---|
|
@@ -3,3 +3,6 @@ include LICENSE | |
include requires-*.txt | ||
include dash/favicon.ico | ||
include dash/extract-meta.js | ||
include dash/deps/*.js | ||
recursive-include dash/dash-renderer * | ||
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. This will include all the source files, won't it? I don't think we want to do that. The old dash-renderer
In the new structure, Then there's the question of the Anyway, is there anything else we really do want from the dash-renderer directory, or can we drop this line (as well as the line below that only exists in reference to this one)? 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. Updated in afc363c. We can safely drop the other lines I'm noticing that 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. Ah hmm, actually this changed in #1576 in a way that I hadn't recognized - @Marc-Andre-Rivet please confirm I'm understanding this correctly: the ONLY case we're generating a sourcemap now is when you run Unfortunately I can't actually run |
||
exclude dash/dash-renderer/node_modules/** |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
__version__ = "1.9.1" | ||
|
||
_js_dist_dependencies = [ | ||
{ | ||
"external_url": { | ||
"prod": [ | ||
"https://unpkg.com/@babel/[email protected]/dist/polyfill.min.js", | ||
"https://unpkg.com/[email protected]/umd/react.production.min.js", | ||
"https://unpkg.com/[email protected]/umd/react-dom.production.min.js", | ||
"https://unpkg.com/[email protected]/prop-types.min.js", | ||
], | ||
"dev": [ | ||
"https://unpkg.com/@babel/[email protected]/dist/polyfill.min.js", | ||
"https://unpkg.com/[email protected]/umd/react.development.js", | ||
"https://unpkg.com/[email protected]/umd/react-dom.development.js", | ||
"https://unpkg.com/[email protected]/prop-types.js", | ||
], | ||
}, | ||
"relative_package_path": { | ||
"prod": [ | ||
"deps/[email protected]", | ||
"deps/[email protected]", | ||
"deps/[email protected]", | ||
"deps/[email protected]", | ||
], | ||
"dev": [ | ||
"deps/[email protected]", | ||
"deps/[email protected]", | ||
"deps/[email protected]", | ||
"deps/[email protected]", | ||
], | ||
}, | ||
"namespace": "dash", | ||
} | ||
] | ||
|
||
|
||
_js_dist = [ | ||
{ | ||
"relative_package_path": "deps/dash_renderer.min.js", | ||
"dev_package_path": "deps/dash_renderer.dev.js", | ||
"external_url": "https://unpkg.com/[email protected]" | ||
"/dash_renderer/dash_renderer.min.js", | ||
"namespace": "dash", | ||
}, | ||
{ | ||
"relative_package_path": "deps/dash_renderer.min.js.map", | ||
"dev_package_path": "deps/dash_renderer.dev.js.map", | ||
"namespace": "dash", | ||
"dynamic": True, | ||
}, | ||
] |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ const config = require('./webpack.base.config'); | |
|
||
module.exports = config({ | ||
target: ['web', 'es5'] | ||
}); | ||
}); |
Uh oh!
There was an error while loading. Please reload this page.