Skip to content

Commit

Permalink
Merge pull request #976 from plotly/update-renderer
Browse files Browse the repository at this point in the history
compatibility with new renderer structure
  • Loading branch information
alexcjohnson committed Jun 3, 2021
1 parent 1d62a38 commit ff35f4c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions packages/dash-core-components/.circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,10 @@ jobs:
command: |
. venv/bin/activate && mkdir packages
set -eo pipefail
# build main dash
# build main dash & renderer
git clone --depth 1 https://github.com/plotly/dash.git dash-main
cd dash-main && pip install -e .[dev] --progress-bar off && python setup.py sdist && mv dist/* ../packages/
cd dash-renderer && npm ci && npm run build
python setup.py sdist && mv dist/* ../../packages/ && cd ../..
cd dash-main && pip install -e .[dev] --progress-bar off && renderer build
python setup.py sdist && mv dist/* ../packages/ && cd ..
# build html
git clone --depth 1 https://github.com/plotly/dash-html-components.git
cd dash-html-components && npm ci && npm run build
Expand Down

0 comments on commit ff35f4c

Please sign in to comment.