aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.devcontainer/Dockerfile6
-rw-r--r--.devcontainer/devcontainer.json2
-rw-r--r--docs/integration.md2
3 files changed, 5 insertions, 5 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index 6b5afd0..2ae6de3 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -1,7 +1,7 @@
1# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.174.0/containers/javascript-node/.devcontainer/base.Dockerfile 1# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.174.0/containers/javascript-node/.devcontainer/base.Dockerfile
2 2
3# [Choice] Node.js version: 14, 12, 10 3# [Choice] Node.js version: 18
4ARG VARIANT="14-buster" 4ARG VARIANT="18-buster"
5FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT} 5FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT}
6 6
7# [Optional] Uncomment this section to install additional OS packages. 7# [Optional] Uncomment this section to install additional OS packages.
@@ -13,4 +13,4 @@ FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT}
13# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}" 13# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}"
14 14
15# [Optional] Uncomment if you want to install more global node modules 15# [Optional] Uncomment if you want to install more global node modules
16# RUN su node -c "pnpm install -g <your-package-list-here>" 16# RUN su node -c "pnpm i -g <your-package-list-here>"
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 6c5d932..9354444 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -20,7 +20,7 @@
20 // "forwardPorts": [], 20 // "forwardPorts": [],
21 21
22 // Use 'postCreateCommand' to run commands after the container is created. 22 // Use 'postCreateCommand' to run commands after the container is created.
23 // "postCreateCommand": "pnpm install", 23 // "postCreateCommand": "pnpm i",
24 24
25 // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. 25 // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
26 "remoteUser": "node" 26 "remoteUser": "node"
diff --git a/docs/integration.md b/docs/integration.md
index d0b1460..87ffb40 100644
--- a/docs/integration.md
+++ b/docs/integration.md
@@ -38,7 +38,7 @@ We have also created a nice script that already does 50% of the work for you - y
383. (Optional, if you want to use our creation script) Install its dependencies via the terminal: 383. (Optional, if you want to use our creation script) Install its dependencies via the terminal:
39 39
40```Bash 40```Bash
41pnpm install 41pnpm i
42``` 42```
43 43
444. (Optional - contd) You can now run our automatic recipe wizard that creates and opens the new recipe for you: 444. (Optional - contd) You can now run our automatic recipe wizard that creates and opens the new recipe for you: