forked from rradczewski/kata-bootstraps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.devcontainer.json
32 lines (32 loc) · 933 Bytes
/
.devcontainer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "PureScript",
"image": "mcr.microsoft.com/devcontainers/javascript-node:22-bookworm",
"onCreateCommand": "npm install",
"remoteEnv": {
"PATH": "${containerEnv:PATH}:${containerWorkspaceFolder}/node_modules/.bin/"
},
"customizations": {
"github.com/rradczewski/kata-bootstraps": {
"failingTestVerification": "CI=1 spago test 2>&1 | tee /dev/stderr | grep -q '1/2 tests passed'",
"testCommand": "spago test",
"languageLogo": "./logo.svg",
"resources": [
{
"name": "Book",
"url": "https://book.purescript.org/"
},
{
"name": "Getting Started",
"url": "https://github.com/purescript/documentation/blob/master/guides/Getting-Started.md"
}
]
},
"vscode": {
"extensions": [
"MS-vsliveshare.vsliveshare",
"nwolverson.ide-purescript",
"dhall.dhall-lang"
]
}
}
}