From 6b6b9af90d4932c75d793aae019abcc263c0ece2 Mon Sep 17 00:00:00 2001 From: Ben Welsh Date: Fri, 21 Apr 2023 22:34:19 +0000 Subject: [PATCH 1/2] Add .devcontainer configuration for GitHub Codespaces --- .devcontainer/devcontainer.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..95ca7cb6 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,5 @@ +{ + "name": "Node.js", + "image": "mcr.microsoft.com/devcontainers/javascript-node:0-16", + "postCreateCommand": "yarn install", +} \ No newline at end of file From 45fe4000637ed6ae8ddae4b6b7b607a1a0dc4ea0 Mon Sep 17 00:00:00 2001 From: Ben Welsh Date: Fri, 21 Apr 2023 15:35:53 -0700 Subject: [PATCH 2/2] Update devcontainer.json --- .devcontainer/devcontainer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 95ca7cb6..90893609 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { "name": "Node.js", "image": "mcr.microsoft.com/devcontainers/javascript-node:0-16", - "postCreateCommand": "yarn install", -} \ No newline at end of file + "postCreateCommand": "yarn install" +}