Skip to content

Commit

Permalink
♻️ add npx commands to package.json scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>
  • Loading branch information
pcaversaccio committed Jul 9, 2023
1 parent 152b835 commit ec8abe9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
"node": ">=14.0.0"
},
"scripts": {
"prettier:check": "prettier -c **/*.{js,ts,md,sol,json,yml,yaml}",
"prettier:fix": "prettier -w **/*.{js,ts,md,sol,json,yml,yaml}",
"lint": "eslint --ext .ts .",
"prettier:check": "npx prettier -c **/*.{js,ts,md,sol,json,yml,yaml}",
"prettier:fix": "npx prettier -w **/*.{js,ts,md,sol,json,yml,yaml}",
"lint": "npx eslint --ext .ts .",
"test": "mocha --exit --recursive --require dotenv/config 'test/**/*.test.ts'",
"build": "tsc",
"watch": "tsc -w",
Expand Down

0 comments on commit ec8abe9

Please sign in to comment.