Skip to content

Commit

Permalink
Correct scripts so they can run on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
eaviles committed Mar 3, 2023
1 parent 3e42d76 commit bd395c8
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@
"node": ">=14.19.1"
},
"scripts": {
"build-docs": "./bin/cli.js",
"build-types": "./bin/cli.js",
"check-types": "./bin/cli.js",
"clean-types": "./bin/cli.js",
"eslint": "./bin/cli.js",
"prepare": "./bin/cli.js",
"build-docs": "node ./bin/cli.js",
"build-types": "node ./bin/cli.js",
"check-types": "node ./bin/cli.js",
"clean-types": "node ./bin/cli.js",
"eslint": "node ./bin/cli.js",
"prepare": "node ./bin/cli.js",
"prepublishOnly": "npm run build-types && npm run prettier",
"prettier": "./bin/cli.js",
"test": "./bin/cli.js",
"version": "./bin/cli.js"
"prettier": "node ./bin/cli.js",
"test": "node ./bin/cli.js",
"version": "node ./bin/cli.js"
},
"dependencies": {
"@tsconfig/node14": "^1.0.3",
Expand Down

0 comments on commit bd395c8

Please sign in to comment.