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

Dev bundle support #64

Merged
merged 3 commits into from
Sep 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [0.13.0] - 2018-09-20
### Added
- Unminified dev bundle support. [#64](https://github.com/plotly/dash-html-components/pull/64)

## Unreleased

## [0.12.0] - 2018-06-01
Expand Down
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
include dash_html_components/bundle.js
include dash_html_components/dash_html_components.min.js
include_dash_html_components/dash_html_components.dev.js
include dash_html_components/bundle.js.map
include dash_html_components/metadata.json
include README.md
Expand Down
3 changes: 2 additions & 1 deletion dash_html_components/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@

_js_dist = [
{
"relative_package_path": "bundle.js",
"relative_package_path": '{}.min.js'.format(__name__),
"dev_package_path": '{}.dev.js'.format(__name__),
"external_url": (
"https://unpkg.com/dash-html-components@{}"
"/dash_html_components/bundle.js"
Expand Down
6 changes: 0 additions & 6 deletions dash_html_components/bundle.js

This file was deleted.

1,780 changes: 1,780 additions & 0 deletions dash_html_components/dash_html_components.dev.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dash_html_components/dash_html_components.min.js

Large diffs are not rendered by default.

Loading