We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4096595 + 20886ef commit f8fe306Copy full SHA for f8fe306
1 file changed
.circleci/config.yml
@@ -436,7 +436,13 @@ jobs:
436
command: |
437
eval "$(conda shell.bash hook)"
438
conda activate env
439
- mv packages/python/plotly/bundle.js ../../../../output
+ cd packages/javascript/jupyterlab-plotly
440
+ npm pack
441
+ mv jupyterlab-plotly*.tgz ../../../output
442
+ cd ../../python/plotly/js
443
+ npm install
444
+ npm run build
445
+ mv ../bundle.js ../../../../output
446
447
- run:
448
name: Zip output
@@ -483,7 +489,12 @@ jobs:
483
489
pip install -r requirements.txt
484
490
if [ "${CIRCLE_BRANCH}" != "doc-prod" ]; then
485
491
pip uninstall -y plotly
486
- pip install -e ../packages/python/plotly
492
+ cd ../packages/python/plotly
493
+ pip install -e .
494
+ cd js
495
496
497
+ cd ../../../../doc
487
498
fi
488
499
cd ..
500
0 commit comments