-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevstate.json
More file actions
43 lines (43 loc) · 870 Bytes
/
devstate.json
File metadata and controls
43 lines (43 loc) · 870 Bytes
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
33
34
35
36
37
38
39
40
41
42
43
{
"$schema": "https://unpkg.com/devstate/schema/v1.json",
"setup": {
"install": {
"cmd": "bun install"
}
},
"checks": {
"vite": {
"cmd": "vp check --fix"
}
},
"services": {
"web": {
"cmd": "portless run vp dev",
"events": {
"url": {
"log": "(https?://(?:[a-z0-9-]+\\.)*formless\\.local(?::\\d+)?)"
},
"ready": {
"log": "(?:ready in|Local:|Network:)"
}
}
},
"test": {
"cmd": "vp test --watch --reporter=agent --no-color",
"events": {
"run": {
"log": "RERUN"
},
"fail": {
"log": "FAIL"
},
"pass": {
"log": "PASS"
},
"ready": {
"log": "(?:(?:Test Files|Tests)\\s+\\d+\\s+passed|PASS\\s+Waiting for file changes)"
}
}
}
}
}