We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e20d595 commit 345ca1aCopy full SHA for 345ca1a
3 files changed
.codesandbox/tasks.json
@@ -0,0 +1,38 @@
1
+{
2
+ // These tasks will run in order when initializing your CodeSandbox project.
3
+ "setupTasks": [
4
+ {
5
+ "command": "pnpm install",
6
+ "name": "Install Dependencies"
7
+ }
8
+ ],
9
+
10
+ // These tasks can be run from CodeSandbox. Running one will open a log in the app.
11
+ "tasks": {
12
+ "build": {
13
+ "name": "build",
14
+ "command": "pnpm build",
15
+ "runAtStart": false
16
+ },
17
+ "clean": {
18
+ "name": "clean",
19
+ "command": "pnpm clean",
20
21
22
+ "watch": {
23
+ "name": "watch",
24
+ "command": "pnpm watch",
25
26
27
+ "test": {
28
+ "name": "test",
29
+ "command": "pnpm test",
30
31
32
+ "test:ui": {
33
+ "name": "test:ui",
34
+ "command": "pnpm test:ui",
35
36
37
38
+}
0 commit comments