Skip to content

Commit

Permalink
fix: remove npx from package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
vahidvdn committed Jun 9, 2024
1 parent 4ae8b51 commit ea159a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dependency-injection/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"scripts": {
"start": "npx ts-node dependency-injection",
"start:bad": "npx ts-node bad-practice"
"start": "ts-node dependency-injection",
"start:bad": "ts-node bad-practice"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
Expand Down
4 changes: 2 additions & 2 deletions strategy-pattern/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"scripts": {
"start": "npx ts-node strategy-pattern",
"start:bad": "npx ts-node bad-practice"
"start": "ts-node strategy-pattern",
"start:bad": "ts-node bad-practice"
},
"devDependencies": {
"ts-node": "^10.9.2",
Expand Down

0 comments on commit ea159a2

Please sign in to comment.