-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtasks.json
More file actions
90 lines (90 loc) · 2.34 KB
/
tasks.json
File metadata and controls
90 lines (90 loc) · 2.34 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
// Project tasks configuration. See https://zed.dev/docs/tasks for documentation.
[
{
"label": "nx build",
"command": "pnpm",
"args": ["nx", "affected", "-t build", "--parallel=3"],
"cwd": "$ZED_WORKTREE_ROOT",
"use_new_terminal": false,
"allow_concurrent_runs": true,
"reveal": "no_focus"
},
{
"label": "nx lint",
"command": "pnpm",
"args": ["nx", "affected", "-t lint", "--parallel=3"],
"cwd": "$ZED_WORKTREE_ROOT",
"use_new_terminal": false,
"allow_concurrent_runs": true,
"reveal": "no_focus"
},
{
"label": "nx test",
"command": "pnpm",
"args": ["nx", "affected", "-t test", "--parallel=3"],
"cwd": "$ZED_WORKTREE_ROOT",
"use_new_terminal": false,
"allow_concurrent_runs": true,
"reveal": "no_focus"
},
{
"label": "nx watch davinci-watch",
"command": "pnpm",
"args": ["watch", "@forgerock/davinci-app"],
"cwd": "$ZED_WORKTREE_ROOT",
"use_new_terminal": true,
"allow_concurrent_runs": true,
"reveal": "always"
},
{
"label": "nx watch oidc-e2e",
"command": "pnpm",
"args": ["watch", "@forgerock/oidc-app"],
"cwd": "$ZED_WORKTREE_ROOT",
"use_new_terminal": true,
"allow_concurrent_runs": true,
"reveal": "no_focus"
},
{
"label": "nx watch protect-watch",
"command": "pnpm",
"args": ["watch", "@forgerock/protect-app"],
"cwd": "$ZED_WORKTREE_ROOT",
"use_new_terminal": true,
"allow_concurrent_runs": true,
"reveal": "no_focus"
},
{
"label": "nx typecheck repo",
"command": "pnpm",
"args": ["nx", "affected -t typecheck"],
"cwd": "$ZED_WORKTREE_ROOT",
"reveal": "no_focus"
},
{
"label": "oidc e2e ui",
"command": "pnpm",
"args": ["nx", "e2e", "@forgerock/oidc-suites", "--ui", "--skipNxCache"],
"cwd": "$ZED_WORKTREE_ROOT"
},
{
"label": "protect-app e2e ui",
"command": "pnpm",
"args": ["nx", "e2e", "@forgerock/protect-suites", "--ui", "--skipNxCache"],
"cwd": "$ZED_WORKTREE_ROOT",
"reveal": "no_focus"
},
{
"label": "local release repo",
"command": "pnpm",
"args": ["release-local"],
"cwd": "$ZED_WORKTREE_ROOT",
"reveal": "no_focus"
},
{
"label": "journey e2e ui",
"command": "pnpm",
"args": ["nx", "e2e", "@forgerock/journey-suites", "--ui", "--skipNxCache"],
"cwd": "$ZED_WORKTREE_ROOT"
}
]