-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtasks.json
46 lines (45 loc) · 1.07 KB
/
tasks.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
// These tasks will run in order when initializing your CodeSandbox project.
"setupTasks": [
{
"name": "Install Dependencies",
"command": "bun install"
}
],
// These tasks can be run from CodeSandbox. Running one will open a log in the app.
"tasks": {
"bun run dev": {
"name": "bun run dev",
"command": "bun run format ; bun run dev",
"runAtStart": true
},
"bun run lint": {
"name": "lint",
"command": "bun run lint"
},
"bun run format": {
"name": "format",
"command": "bun run format"
},
"bun run test:unit": {
"name": "unit test",
"command": "bun run test:unit"
},
"bun run test:e2e": {
"name": "E2E test",
"command": "bun run test:e2e"
},
"bun run storybook": {
"name": "Storybook",
"command": "bun run storybook"
},
"dependecy cruiser": {
"name": "Dependency Cruise",
"command": "bun run depcruise"
},
"vitest coverage": {
"name": "Vitest Coverage",
"command": "bun run coverage"
}
}
}