Skip to content

Commit db15ce7

Browse files
IE11 compatibility (#143)
1 parent 7c41d42 commit db15ce7

File tree

4 files changed

+427
-15
lines changed

4 files changed

+427
-15
lines changed

packages/dash-html-components/.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
python -m venv venv || virtualenv venv
2525
. venv/bin/activate
2626
pip install -r dev-requirements.txt
27-
npm install --ignore-scripts
27+
npm ci
2828
2929
- run:
3030
name: 🏗️ Install dependencies (dash)
@@ -34,9 +34,9 @@ jobs:
3434
git clone --depth 1 [email protected]:plotly/dash-table.git
3535
. venv/bin/activate
3636
pip install -e ./dash-main[testing,dev] --quiet
37-
cd dash-core-components && npm install --ignore-scripts && npm run build && pip install -e . && cd ..
37+
cd dash-core-components && npm ci && npm run build && pip install -e . && cd ..
3838
cd dash-main/dash-renderer && npm run build && pip install -e . && cd ../..
39-
cd dash-table && npm install --ignore-scripts && npm run build && pip install -e . && cd ..
39+
cd dash-table && npm ci && npm run build && pip install -e . && cd ..
4040
4141
- run:
4242
name: 🧰 Build

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+
## [Unreleased]
6+
### Fixed
7+
- [#143](https://github.com/plotly/dash-html-components/pull/143) Fix IE11 compatibility issues and ES5 compatibility and validation
8+
59
## [1.0.1] - 2019-08-27
610
### Updated
711
- Generated documentation

0 commit comments

Comments
 (0)