aboutsummaryrefslogtreecommitdiffstats
path: root/.devcontainer
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-09-08 10:33:47 +0200
committerLibravatar GitHub <noreply@github.com>2021-09-08 10:33:47 +0200
commitb94c29c9890c46bb6388d53bc549cc24f19f0649 (patch)
treeed38a70538414db7e8f6091d6ce5b85e50728354 /.devcontainer
parentRemove dependency on 'require' of 'electron' and 'electron/remote' modules. (diff)
downloadferdium-recipes-b94c29c9890c46bb6388d53bc549cc24f19f0649.tar.gz
ferdium-recipes-b94c29c9890c46bb6388d53bc549cc24f19f0649.tar.zst
ferdium-recipes-b94c29c9890c46bb6388d53bc549cc24f19f0649.zip
build: migrate from npm to pnpm (#603)
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/Dockerfile2
-rw-r--r--.devcontainer/devcontainer.json2
2 files changed, 2 insertions, 2 deletions
diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index 048cebe..6b5afd0 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -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 "npm install -g <your-package-list-here>" 16# RUN su node -c "pnpm install -g <your-package-list-here>"
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index d45d3cd..6c5d932 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": "npm install", 23 // "postCreateCommand": "pnpm install",
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"