Skip to content

Commit f8b1655

Browse files
ci: add development scripts
1 parent 800d51b commit f8b1655

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
"author": "Francis Lagares",
88
"license": "MIT",
99
"scripts": {
10-
"build": "tsc --watch",
10+
"build-ts": "tsc",
11+
"build-dev": "tsc --watch",
1112
"start": "nodemon dist/index.js",
12-
"dev": "concurrently \"yarn:build\" \"yarn:start\"",
13-
"test": "jest --watchAll --no-cache"
13+
"dev": "concurrently \"yarn:build-dev\" \"yarn:start\"",
14+
"test-dev": "jest --watchAll --no-cache",
15+
"test": "jest"
1416
},
1517
"husky": {
1618
"hooks": {

0 commit comments

Comments
 (0)