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

IE11 compatibility #143

Merged
merged 3 commits into from
Nov 14, 2019
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
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python -m venv venv || virtualenv venv
. venv/bin/activate
pip install -r dev-requirements.txt
npm install --ignore-scripts
npm ci

- run:
name: 🏗️ Install dependencies (dash)
Expand All @@ -34,9 +34,9 @@ jobs:
git clone --depth 1 [email protected]:plotly/dash-table.git
. venv/bin/activate
pip install -e ./dash-main[testing,dev] --quiet
cd dash-core-components && npm install --ignore-scripts && npm run build && pip install -e . && cd ..
cd dash-core-components && npm ci && npm run build && pip install -e . && cd ..
cd dash-main/dash-renderer && npm run build && pip install -e . && cd ../..
cd dash-table && npm install --ignore-scripts && npm run build && pip install -e . && cd ..
cd dash-table && npm ci && npm run build && pip install -e . && cd ..

- run:
name: 🧰 Build
Expand Down
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/).

## [Unreleased]
### Fixed
- [#143](https://github.com/plotly/dash-html-components/pull/143) Fix IE11 compatibility issues and ES5 compatibility and validation

## [1.0.1] - 2019-08-27
### Updated
- Generated documentation
Expand Down
Loading