diff options
author | Chuck Lantz <clantz@microsoft.com> | 2022-10-28 20:32:58 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-28 20:32:58 +0300 |
commit | 2963ae91192b29a8ec049d7376dc69ff21b725f4 (patch) | |
tree | 320ae32fe67b460648a34900c2748de87860af25 /src/node/devcontainer-feature.json | |
parent | ab021f0dfb0b4d28a2a71fd4b8502f5cb0b72004 (diff) |
Fix privs in Node, regressions from #199 (#241)
Co-authored-by: Samruddhi Khandale <skhandale@microsoft.com>
Diffstat (limited to 'src/node/devcontainer-feature.json')
-rw-r--r-- | src/node/devcontainer-feature.json | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/node/devcontainer-feature.json b/src/node/devcontainer-feature.json index 43ba0fa..cdc2fec 100644 --- a/src/node/devcontainer-feature.json +++ b/src/node/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "node", - "version": "1.0.8", + "version": "1.1.0", "name": "Node.js (via nvm) and yarn", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/node", "description": "Installs Node.js, nvm, yarn, and needed dependencies.", @@ -27,6 +27,11 @@ "type": "string", "default": "/usr/local/share/nvm", "description": "The path where NVM will be installed." + }, + "nvmVersion": { + "type": "string", + "default": "0.39.2", + "description": "Version of NVM to install." } }, "customizations": { |