Skip to content

Commit

Permalink
Fixed scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
KyrylR committed Dec 6, 2024
1 parent 75efa3a commit 572ee55
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@
"homepage": "https://github.com/dl-solarity/hardhat-migrate#readme",
"scripts": {
"prepare": "husky",
"compile": "bun run prepare-tests && bun run build",
"compile": "npm run prepare-tests && npm run build",
"build": "tsc --build .",
"prepare-tests": "bun --filter \"*\" compile",
"prepare-tests": "npm --filter \"*\" compile",
"test": "mocha --recursive 'test/**/*.ts' --exit",
"coverage": "nyc mocha --recursive 'test/**/*.ts' --exit",
"clean-tests": "bun --filter \"*\" clean",
"clean-tests": "npm --filter \"*\" clean",
"lint-fix": "prettier --write \"./**/*.ts\" && eslint \"src/**/*.{js,ts}\" --cache --fix",
"publish-to-npm": "bun run compile && bun run lint-fix && bun publish ./ --access public"
"publish-to-npm": "npm run compile && npm run lint-fix && npm publish ./ --access public"
},
"nyc": {
"reporter": [
Expand Down

0 comments on commit 572ee55

Please sign in to comment.