File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -436,7 +436,13 @@ jobs:
436
436
command : |
437
437
eval "$(conda shell.bash hook)"
438
438
conda activate env
439
- mv packages/python/plotly/bundle.js ../../../../output
439
+ 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
440
446
441
447
- run :
442
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
+ npm install
496
+ npm run build
497
+ cd ../../../../doc
487
498
fi
488
499
cd ..
489
500
- run :
You can’t perform that action at this time.
0 commit comments