Skip to content

Commit

Permalink
fix(template): added defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
atharva-upadhye committed Dec 16, 2024
1 parent c4f4731 commit 468d1d9
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions src/ubuntu-pnpm-node/devcontainer-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"version": "0.0.2",
"name": "ubuntu + pnpm + node",
"description": "A basic development container with Node.js installed using PNPM binary on Ubuntu",
"documentationURL": "https://github.com/atharva-upadhye/devcontainer-configs/tree/main/templates/ubuntu-pnpm-node",
"licenseURL": "https://github.com/atharva-upadhye/devcontainer-configs/blob/main/LICENSE",
"documentationURL": "https://github.com/atharva-upadhye/devcontainer-templates/tree/main/templates/ubuntu-pnpm-node",
"licenseURL": "https://github.com/atharva-upadhye/devcontainer-templates/blob/main/LICENSE",
"options": {
"UBUNTU_VERSION": {
"type": "string",
Expand All @@ -13,20 +13,23 @@
"22.04",
"20.04"
],
"default": ""
"default": "22.04"
},
"PNPM_VERSION": {
"type": "string",
"description": [
"description": "PNPM version. Optional value reference: https://nodejs.org/en/about/previous-releases",
"proposals": [
"9.15.0"
],
"default": ""
"default": "9.15.0"
},
"NODE_VERSION": {
"description": [
"type": "string",
"description": "NODE.js version. Optional value reference: https://pnpm.io/",
"proposals": [
"22.12"
],
"default": ""
"default": "22.12"
}
},
"platforms": [
Expand Down

0 comments on commit 468d1d9

Please sign in to comment.