aboutsummaryrefslogtreecommitdiff
path: root/src/node/devcontainer-feature.json
diff options
context:
space:
mode:
authoreitsupi <50911393+eitsupi@users.noreply.github.com>2023-08-29 00:26:30 +0300
committerGitHub <noreply@github.com>2023-08-29 00:26:30 +0300
commit95a169b9ef92c9dae454df5e87d4c26d56a863c9 (patch)
treedaffec76a9add688b7f76a2cc934fb84e40ad735 /src/node/devcontainer-feature.json
parent0668db5edea56a0d57575db127b793f59b489e7b (diff)
[node] Install the latest version of nvm by default (#673)feature_node_1.3.0
feat(node): install the latest nvm by default
Diffstat (limited to 'src/node/devcontainer-feature.json')
-rw-r--r--src/node/devcontainer-feature.json10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/node/devcontainer-feature.json b/src/node/devcontainer-feature.json
index 80bd912..aee55a1 100644
--- a/src/node/devcontainer-feature.json
+++ b/src/node/devcontainer-feature.json
@@ -1,6 +1,6 @@
{
"id": "node",
- "version": "1.2.1",
+ "version": "1.3.0",
"name": "Node.js (via nvm), yarn and pnpm",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/node",
"description": "Installs Node.js, nvm, yarn, pnpm, and needed dependencies.",
@@ -30,7 +30,11 @@
},
"nvmVersion": {
"type": "string",
- "default": "0.39.2",
+ "proposals": [
+ "latest",
+ "0.39"
+ ],
+ "default": "latest",
"description": "Version of NVM to install."
}
},
@@ -49,4 +53,4 @@
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
-} \ No newline at end of file
+}