Skip to content

Commit

Permalink
chore: remove unnecessary flag from vitest commands
Browse files Browse the repository at this point in the history
  • Loading branch information
EdieLemoine committed Jul 4, 2024
1 parent 9d5292c commit b91aa88
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,10 +35,10 @@
"ws:clean": "cd $0 && rimraf dist coverage .eslintcache tsconfig.build.tsbuildinfo",
"ws:lint": "eslint --cache $0",
"ws:lint:fix": "eslint --cache --fix $0",
"ws:test": "cd $0 && vitest --passWithNoTests",
"ws:test:coverage": "cd $0 && vitest run --coverage --passWithNoTests",
"ws:test:run": "cd $0 && vitest run --passWithNoTests",
"ws:test:update": "cd $0 && vitest run -u --passWithNoTests"
"ws:test": "cd $0 && vitest",
"ws:test:coverage": "cd $0 && vitest run --coverage",
"ws:test:run": "cd $0 && vitest run",
"ws:test:update": "cd $0 && vitest run -u"
},
"lint-staged": {
"*.{json,md,yml}": "prettier --write",
Expand Down

0 comments on commit b91aa88

Please sign in to comment.