From bbcbf0a8d2bc62f47754cae846e6b7511fdbf401 Mon Sep 17 00:00:00 2001 From: Eduard Prigoana Date: Thu, 5 Feb 2026 18:52:53 +0200 Subject: [PATCH] Update devcontainer.json to include nodejs and npm Added nodejs and npm installation to postCreateCommand. --- .devcontainer/devcontainer.json | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 6698905..3513eee 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -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" + ] } + } }