Update devcontainer.json to include nodejs and npm
Added nodejs and npm installation to postCreateCommand.
This commit is contained in:
parent
9ac90d8fab
commit
bbcbf0a8d2
1 changed files with 17 additions and 15 deletions
|
|
@ -1,18 +1,20 @@
|
|||
{
|
||||
"name": "Alpine Bun Dev Container",
|
||||
"image": "alpine:latest",
|
||||
"features": {
|
||||
"ghcr.io/shyim/devcontainers-features/bun:0": {},
|
||||
"ghcr.io/devcontainer-config/features/dot-config:3": {}
|
||||
},
|
||||
"postCreateCommand": "apk add --no-cache git && bun --version",
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"settings": {
|
||||
"terminal.integrated.sendKeybindingsToShell": true,
|
||||
"workbench.colorTheme": "Lilac"
|
||||
},
|
||||
"extensions": ["shubham-saudolla.lilac"]
|
||||
}
|
||||
"name": "Alpine Bun Dev Container",
|
||||
"image": "alpine:latest",
|
||||
"postCreateCommand": "apk add --no-cache git nodejs npm && bun --version",
|
||||
"features": {
|
||||
"ghcr.io/shyim/devcontainers-features/bun:0": {},
|
||||
"ghcr.io/devcontainer-config/features/dot-config:3": {}
|
||||
},
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"settings": {
|
||||
"terminal.integrated.sendKeybindingsToShell": true,
|
||||
"workbench.colorTheme": "Lilac"
|
||||
},
|
||||
"extensions": [
|
||||
"shubham-saudolla.lilac"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue