feature/108_vite_migration #118

Merged
philipp merged 27 commits from feature/108_vite_migration into dev 2021-04-03 17:17:25 +00:00
2 changed files with 9 additions and 9 deletions
Showing only changes of commit 777304f259 - Show all commits

View File

@ -1,2 +1,6 @@
ARG VARIANT="14-buster" FROM mcr.microsoft.com/vscode/devcontainers/base:alpine-3.12
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT} RUN apk update
RUN apk add --upgrade nodejs-current npm
RUN npm i -g yarn rimraf
RUN rimraf node_modules
RUN yarn set version berry

View File

@ -1,13 +1,10 @@
{ {
"name": "Node.js", "name": "Node.js",
"build": { "build": {
"dockerfile": "Dockerfile", "dockerfile": "Dockerfile"
"args": {
"VARIANT": "14"
}
}, },
"settings": { "settings": {
"terminal.integrated.shell.linux": "/bin/bash" "terminal.integrated.shell.linux": "/bin/sh"
}, },
"extensions": [ "extensions": [
"dbaeumer.vscode-eslint", "dbaeumer.vscode-eslint",
@ -19,6 +16,5 @@
"fivethree.vscode-svelte-snippets", "fivethree.vscode-svelte-snippets",
"voorjaar.windicss-intellisense" "voorjaar.windicss-intellisense"
], ],
"postCreateCommand": "yarn", "postCreateCommand": "yarn && yarn dev"
"remoteUser": "node"
} }