Skip to content

Commit

Permalink
build: add debug script for local testing (#117)
Browse files Browse the repository at this point in the history
Signed-off-by: Chapman Pendery <cpendery@vt.edu>
  • Loading branch information
cpendery authored Dec 13, 2023
1 parent fd7866e commit c72f6f6
Show file tree
Hide file tree
Showing 2 changed files with 240 additions and 1 deletion.
237 changes: 237 additions & 0 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 @@ -18,7 +18,8 @@
"start": "node ./build/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint src/ --ext .ts,.tsx && prettier src/ --check",
"lint:fix": "eslint src/ --ext .ts,.tsx --fix && prettier src/ --write"
"lint:fix": "eslint src/ --ext .ts,.tsx --fix && prettier src/ --write",
"debug": "node --inspect --loader ts-node/esm src/index.ts -V"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -60,6 +61,7 @@
"jest": "^29.7.0",
"prettier": "3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
}
}

0 comments on commit c72f6f6

Please sign in to comment.