We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 800d51b commit f8b1655Copy full SHA for f8b1655
package.json
@@ -7,10 +7,12 @@
7
"author": "Francis Lagares",
8
"license": "MIT",
9
"scripts": {
10
- "build": "tsc --watch",
+ "build-ts": "tsc",
11
+ "build-dev": "tsc --watch",
12
"start": "nodemon dist/index.js",
- "dev": "concurrently \"yarn:build\" \"yarn:start\"",
13
- "test": "jest --watchAll --no-cache"
+ "dev": "concurrently \"yarn:build-dev\" \"yarn:start\"",
14
+ "test-dev": "jest --watchAll --no-cache",
15
+ "test": "jest"
16
},
17
"husky": {
18
"hooks": {
0 commit comments