Skip to content

Commit dbbd2e9

Browse files
committed
native tasks config
1 parent 5025da8 commit dbbd2e9

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

apps/dashboard/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"type": "module",
66
"scripts": {
77
"dev": "vite",
8-
"build": "tsc -b && vite build",
98
"preview": "vite preview",
109
"clean": "rm -rf dist",
1110
"test": "vite test"

apps/dashboard/vite-task.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"tasks": {
3+
"build": {
4+
"command": "vite build",
5+
"dependsOn": ["build:tsc"],
6+
"cacheable": true
7+
},
8+
"build:tsc": {
9+
"command": "tsc -b",
10+
"cacheable": true
11+
}
12+
}
13+
}

0 commit comments

Comments
 (0)