Skip to content

Commit

Permalink
Add dev script
Browse files Browse the repository at this point in the history
  • Loading branch information
dilirity committed May 30, 2024
1 parent 8d4cbe6 commit 4a2d729
Show file tree
Hide file tree
Showing 3 changed files with 195 additions and 3 deletions.
5 changes: 5 additions & 0 deletions nodemon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"watch": [ "src" ],
"ext": "ts",
"exec": "tsc --declaration && rollup -c"
}
189 changes: 187 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"prepare": "npm run build",
"lint": "prettier --check src/**/* && eslint . && echo '✔ eslint and prettier ran successfully.'",
"lint:fix": "prettier --write src/**/*.ts && eslint --fix . && echo '✔ eslint and prettier ran successfully.'",
"test": "NODE_ENV=test jest --forceExit --config=tests/config/jest.config.js"
"test": "NODE_ENV=test jest --forceExit --config=tests/config/jest.config.js",
"dev": "nodemon"
},
"husky": {
"hooks": {
Expand All @@ -36,6 +37,7 @@
"jest": "^28.1.3",
"jest-environment-puppeteer": "^6.1.1",
"node-fetch": "^3.2.10",
"nodemon": "^3.1.2",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"playwright-core": "^1.33.0",
Expand Down

0 comments on commit 4a2d729

Please sign in to comment.