Skip to content

Commit

Permalink
fix: package json scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Avivbens committed Dec 29, 2023
1 parent 3bafec2 commit 5a91c68
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"distribute": "npm run build && npm publish",
"build": "rm -rf ./lib && tsc",
"prebuild": "rm -rf ./lib",
"build": "tsc -p ./src/tsconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,test}/**/*.ts\" --fix",
"test": "jest",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"prepare": "husky install || exit 0 && npm run build ",
"prepare": "husky install || exit 0",
"prepublish": "npm run build",
"pre-commit": "pretty-quick --staged"
},
Expand Down

0 comments on commit 5a91c68

Please sign in to comment.