Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Commit 55b7610

Browse files
authored
Merge pull request #64 from plotly/dev-bundle
Dev bundle support
2 parents eda83c9 + cd9027b commit 55b7610

10 files changed

+6189
-6101
lines changed

Diff for: CHANGELOG.md

+4
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

Diff for: MANIFEST.in

+2-1
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

Diff for: dash_html_components/__init__.py

+2-1
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"

Diff for: dash_html_components/bundle.js

-6
This file was deleted.

Diff for: dash_html_components/dash_html_components.dev.js

+1,780
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dash_html_components/dash_html_components.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)