Skip to content

Commit e67fabd

Browse files
committed
Merge pull request #64 from plotly/dev-bundle
Dev bundle support
1 parent e113350 commit e67fabd

File tree

10 files changed

+6189
-6101
lines changed

10 files changed

+6189
-6101
lines changed

packages/dash-html-components/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [0.13.0] - 2018-09-20
6+
### Added
7+
- Unminified dev bundle support. [#64](https://github.com/plotly/dash-html-components/pull/64)
8+
59
## Unreleased
610

711
## [0.12.0] - 2018-06-01

packages/dash-html-components/MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
include dash_html_components/bundle.js
1+
include dash_html_components/dash_html_components.min.js
2+
include_dash_html_components/dash_html_components.dev.js
23
include dash_html_components/bundle.js.map
34
include dash_html_components/metadata.json
45
include README.md

packages/dash-html-components/dash_html_components/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636

3737
_js_dist = [
3838
{
39-
"relative_package_path": "bundle.js",
39+
"relative_package_path": '{}.min.js'.format(__name__),
40+
"dev_package_path": '{}.dev.js'.format(__name__),
4041
"external_url": (
4142
"https://unpkg.com/dash-html-components@{}"
4243
"/dash_html_components/bundle.js"

packages/dash-html-components/dash_html_components/bundle.js

Lines changed: 0 additions & 6 deletions
This file was deleted.

packages/dash-html-components/dash_html_components/dash_html_components.dev.js

Lines changed: 1780 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/dash-html-components/dash_html_components/dash_html_components.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)