Skip to content

Commit 1e03985

Browse files
committed
chore: add-tasks
1 parent fa3d434 commit 1e03985

File tree

1 file changed

+84
-0
lines changed

1 file changed

+84
-0
lines changed

.zed/tasks.json

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
// Project tasks configuration. See https://zed.dev/docs/tasks for documentation.
2+
[
3+
{
4+
"label": "nx build",
5+
"command": "pnpm",
6+
"args": ["nx", "affected", "-t build", "--parallel=3"],
7+
"cwd": "$ZED_WORKTREE_ROOT",
8+
"use_new_terminal": false,
9+
"allow_concurrent_runs": true,
10+
"reveal": "no_focus"
11+
},
12+
{
13+
"label": "nx lint",
14+
"command": "pnpm",
15+
"args": ["nx", "affected", "-t lint", "--parallel=3"],
16+
"cwd": "$ZED_WORKTREE_ROOT",
17+
"use_new_terminal": false,
18+
"allow_concurrent_runs": true,
19+
"reveal": "no_focus"
20+
},
21+
{
22+
"label": "nx test",
23+
"command": "pnpm",
24+
"args": ["nx", "affected", "-t test", "--parallel=3"],
25+
"cwd": "$ZED_WORKTREE_ROOT",
26+
"use_new_terminal": false,
27+
"allow_concurrent_runs": true,
28+
"reveal": "no_focus"
29+
},
30+
{
31+
"label": "nx watch davinci-watch",
32+
"command": "pnpm",
33+
"args": ["watch", "@forgerock/davinci-app"],
34+
"cwd": "$ZED_WORKTREE_ROOT",
35+
"use_new_terminal": true,
36+
"allow_concurrent_runs": true,
37+
"reveal": "always"
38+
},
39+
{
40+
"label": "nx watch oidc-e2e",
41+
"command": "pnpm",
42+
"args": ["watch", "@forgerock/oidc-app"],
43+
"cwd": "$ZED_WORKTREE_ROOT",
44+
"use_new_terminal": true,
45+
"allow_concurrent_runs": true,
46+
"reveal": "no_focus"
47+
},
48+
{
49+
"label": "nx watch protect-watch",
50+
"command": "pnpm",
51+
"args": ["watch", "@forgerock/protect-app"],
52+
"cwd": "$ZED_WORKTREE_ROOT",
53+
"use_new_terminal": true,
54+
"allow_concurrent_runs": true,
55+
"reveal": "no_focus"
56+
},
57+
{
58+
"label": "nx typecheck repo",
59+
"command": "pnpm",
60+
"args": ["nx", "affected -t typecheck"],
61+
"cwd": "$ZED_WORKTREE_ROOT",
62+
"reveal": "no_focus"
63+
},
64+
{
65+
"label": "oidc e2e ui",
66+
"command": "pnpm",
67+
"args": ["nx", "e2e", "@forgerock/oidc-suites", "--ui"],
68+
"cwd": "$ZED_WORKTREE_ROOT"
69+
},
70+
{
71+
"label": "protect-app e2e ui",
72+
"command": "pnpm",
73+
"args": ["nx", "e2e", "@forgerock/protect-suites", "--ui"],
74+
"cwd": "$ZED_WORKTREE_ROOT",
75+
"reveal": "no_focus"
76+
},
77+
{
78+
"label": "local release repo",
79+
"command": "pnpm",
80+
"args": ["release-local"],
81+
"cwd": "$ZED_WORKTREE_ROOT",
82+
"reveal": "no_focus"
83+
}
84+
]

0 commit comments

Comments
 (0)