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

Commit

Permalink
Merge pull request #100 from plotly/dev-tools
Browse files Browse the repository at this point in the history
Dash Dev Tools
  • Loading branch information
byronz authored Apr 18, 2019
2 parents fd0b53d + 7ec2f27 commit a9e5b8a
Show file tree
Hide file tree
Showing 64 changed files with 35,741 additions and 22,673 deletions.
14 changes: 12 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
{
"presets": ["env", "react"]
}
"presets": ["es2015", "react", "stage-2"],
"env": {
"development": {
"presets": ["es2015", "react", "stage-2"],
"plugins": [
["transform-es2015-modules-commonjs-simple", {
"noMangle": true
}]
]
}
}
}
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
name: Install dependencies (dash)
command: |
git clone git@github.com:plotly/dash.git
git clone git@github.com:plotly/dash-core-components.git
git clone --branch fix-prop-types git@github.com:plotly/dash-core-components.git
git clone git@github.com:plotly/dash-html-components.git
git clone git@github.com:plotly/dash-table.git
. venv/bin/activate
Expand All @@ -53,6 +53,7 @@ jobs:
command: |
. venv/bin/activate
npm run build
npm run build:dev
pip install -e . --quiet
pip list | grep dash
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- Fix regression for `children=0` case [#148](https://github.com/plotly/dash-renderer/issues/148)


### Added

- Dash Dev Tools [#100](https://github.com/plotly/dash-renderer/pull/100)

- a simple UI interface, which consolidates both frontend and backend errors into an "error popup" at the top-right corner
- callback function visualization through a DAG(Directed Acyclic Graph) [#144](https://github.com/plotly/dash-renderer/pull/144)
- free [Component Props check](https://reactjs.org/docs/typechecking-with-proptypes.html) for all Dash React Components inside dash-renderer

## [0.22.0] - 2019-04-10
### Added
- Added support for clientside callbacks [#143](https://github.com/plotly/dash-renderer/pull/143)
Expand Down
27 changes: 27 additions & 0 deletions config/eslint/eslintrc-node.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"env": {
"node": true,
"browser": true
},
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:react/recommended"
],
"plugins": [
"import", "react"
],
"parserOptions": {
"ecmaVersion": "2015",
"sourceType": "module",
"ecmaFeatures": {
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"rules": {
"import/no-commonjs": 0,
"import/no-nodejs-modules": 0
}
}
Loading

0 comments on commit a9e5b8a

Please sign in to comment.