Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c0fa435

Browse files
author
Alessio Civitillo
committedFeb 17, 2022
fixing docker build by upgrading npm and fast-json-path
1 parent b0bf11b commit c0fa435

File tree

5 files changed

+219
-58
lines changed

5 files changed

+219
-58
lines changed
 

‎docs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ WORKDIR /app/
66
# --------------
77
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
88
RUN apt-get install -yq nodejs build-essential
9-
RUN npm install -g npm@7.13.0
9+
RUN npm install -g npm@8.5.0
1010

1111
# Create Python Venv
1212
# ------------------

‎docs/source/_custom_js/package-lock.json

Lines changed: 205 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎docs/source/adding-interactivity/components-with-state/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ it. The parent component can’t change it. This lets you add state to any compo
340340
remove it without impacting the rest of the components.
341341

342342
.. card::
343-
:link: /managing-state/shared-component-state
343+
:link: /managing-state/shared-component-state/index
344344
:link-type: doc
345345

346346
:octicon:`book` Read More

‎noxfile.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,16 @@ def test_docs(session: Session) -> None:
248248
)
249249
session.run("sphinx-build", "-b", "doctest", "docs/source", "docs/build")
250250
# ensure docker image build works too
251-
session.run("docker", "build", ".", "--file", "docs/Dockerfile", external=True)
251+
# session.run(
252+
# "docker",
253+
# "build",
254+
# ".",
255+
# "--file",
256+
# "docs/Dockerfile",
257+
# "--tag",
258+
# "idom-docs:latest",
259+
# external=True,
260+
# )
252261

253262

254263
@do_first

‎src/client/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.