Skip to content

Commit ca54548

Browse files
committed
Update js access to use new filepaths
1 parent 18f70ac commit ca54548

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ commands:
5858
source .venv/bin/activate
5959
uv pip install .
6060
uv pip install -r ./test_requirements/requirements_optional.txt
61-
cd plotly/labextension
61+
cd js
6262
npm ci
6363
npm run build
6464
@@ -277,7 +277,7 @@ jobs:
277277
uv venv
278278
source .venv/bin/activate
279279
uv pip install jupyter
280-
cd plotly/labextension
280+
cd js
281281
npm ci
282282
npm run build
283283
git status
@@ -326,7 +326,7 @@ jobs:
326326
uv pip uninstall plotly
327327
uv pip install -e .
328328
uv pip install jupyter
329-
cd plotly/labextension
329+
cd js
330330
npm ci
331331
npm run build
332332
cd ../..

commands.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
]
2424
)
2525

26-
# Load plotly.js version from plotly/labextension/package.json
26+
# Load plotly.js version from js/package.json
2727
def plotly_js_version():
28-
path = os.path.join(project_root, "plotly", "labextension", "package.json")
28+
path = os.path.join(project_root, "js", "package.json")
2929
with open(path, "rt") as f:
3030
package_json = json.load(f)
3131
version = package_json["dependencies"]["plotly.js"]

0 commit comments

Comments
 (0)