Skip to content

Commit 44f0830

Browse files
committed
chore: add dev command
1 parent eaeb280 commit 44f0830

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"repository": "https://github.com/dotindustries/brease.git",
66
"main": "index.js",
77
"scripts": {
8+
"dev": "turbo dev",
89
"build": "turbo build",
910
"test": "echo \"Error: no test specified\" && exit 1"
1011
},

turbo.json

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
2-
"$schema": "https://turbo.build/schema.json",
3-
"pipeline": {
4-
"build": {
5-
"outputs": ["dist/**"]
6-
},
7-
"lint": {}
8-
}
9-
}
2+
"$schema": "https://turbo.build/schema.json",
3+
"pipeline": {
4+
"dev": {},
5+
"build": {
6+
"outputs": ["dist/**"]
7+
},
8+
"lint": {}
9+
}
10+
}

0 commit comments

Comments
 (0)