Skip to content

Commit

Permalink
fix(global): package.json scripts format check command
Browse files Browse the repository at this point in the history
  • Loading branch information
SutuSebastian committed Mar 25, 2024
1 parent 3d546f7 commit 8c1e992
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion apps/storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"clean": "rimraf .turbo node_modules storybook-static",
"dev": "storybook dev -p 6006",
"format": "prettier . --write",
"format:check": "prettier .",
"format:check": "prettier . --check",
"typecheck": "tsc --noEmit"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"clean": "rimraf .contentlayer .next .turbo node_modules tsconfig.tsbuildinfo",
"dev": "next dev",
"format": "prettier . --write",
"format:check": "prettier .",
"format:check": "prettier . --check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"start": "next start",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"clean": "rimraf .turbo dist node_modules",
"dev": "tsup --watch",
"format": "prettier . --write",
"format:check": "prettier .",
"format:check": "prettier . --check",
"prepack": "clean-package",
"postpack": "clean-package restore",
"start": "bun run dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"clean": "rimraf .turbo coverage lib node_modules tsconfig.tsbuildinfo",
"dev": "",
"format": "prettier . --write",
"format:check": "prettier .",
"format:check": "prettier . --check",
"postinstall": "bun run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
Expand Down

0 comments on commit 8c1e992

Please sign in to comment.