Skip to content

Commit

Permalink
🔧 use npm to run internal scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
nabeelvalley authored Dec 13, 2023
1 parent 8a51987 commit 708f406
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"sqlq": "./bin/run.js"
},
"scripts": {
"dev": "yarn run build && node ./bin/run.js",
"dev": "npm run build && node ./bin/run.js",
"build": "tsc -b",
"lint": "eslint . --ext .ts",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest && yarn run docs",
"prepare": "yarn build",
"posttest": "npm run lint",
"prepack": "npm run build && oclif manifest && npm run docs",
"prepare": "npm run build",
"prisma": "prisma",
"oclif": "oclif",
"postinstall": "prisma migrate dev",
Expand Down Expand Up @@ -72,7 +72,7 @@
"topics": {}
},
"repository": "nabeelvalley/sqlq",
"version": "0.0.3",
"version": "0.0.4",
"bugs": "https://github.com/nabeelvalley/sqlq/issues",
"keywords": [
"oclif"
Expand Down

0 comments on commit 708f406

Please sign in to comment.