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

Commit

Permalink
IE 11 compatibility (#696)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc-Andre-Rivet committed Nov 14, 2019
2 parents 7582416 + 0aef13c commit bd94401
Show file tree
Hide file tree
Showing 5 changed files with 435 additions and 22 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
command: |
. venv/bin/activate
set -eo pipefail
npm i --ignore-scripts
npm ci
npm run format:test
npm run lint
flake8 --ignore=E501,F401,F841,F811,W503 tests
Expand Down Expand Up @@ -86,10 +86,10 @@ jobs:
cd dash-renderer && npm run build
python setup.py sdist && mv dist/* ../../packages/ && cd ../..
# build dcc
npm i --ignore-scripts && npm run build && python setup.py sdist && mv dist/* ./packages
npm ci && npm run build && python setup.py sdist && mv dist/* ./packages
# build html
git clone --depth 1 https://github.com/plotly/dash-html-components.git
cd dash-html-components && npm i --ignore-scripts && npm run build
cd dash-html-components && npm ci && npm run build
python setup.py sdist && mv dist/* ../packages && cd .. && ls -la packages
- persist_to_workspace:
root: ~/project
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

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

### Changed
- [#687](https://github.com/plotly/dash-core-components/pull/687/) Use `start_date`, `min_date_allowed`, `end_date`, or `max_date_allowed` for the initial visible month if the value of the parameter `initial_visible_month` is not supplied.

Expand Down
5 changes: 1 addition & 4 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
const presets = [
['@babel/env', {
useBuiltIns: 'usage',
corejs: 3
}],
'@babel/preset-env',
'@babel/preset-react'
];

Expand Down
Loading

0 comments on commit bd94401

Please sign in to comment.