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:
436436 command : |
437437 eval "$(conda shell.bash hook)"
438438 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
440446
441447 - run :
442448 name : Zip output
@@ -483,7 +489,12 @@ jobs:
483489 pip install -r requirements.txt
484490 if [ "${CIRCLE_BRANCH}" != "doc-prod" ]; then
485491 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
487498 fi
488499 cd ..
489500 - run :
You can’t perform that action at this time.
0 commit comments