Skip to content

Commit 8c1e992

Browse files
author
SutuSebastian
committed
fix(global): package.json scripts format check command
1 parent 3d546f7 commit 8c1e992

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

apps/storybook/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"clean": "rimraf .turbo node_modules storybook-static",
99
"dev": "storybook dev -p 6006",
1010
"format": "prettier . --write",
11-
"format:check": "prettier .",
11+
"format:check": "prettier . --check",
1212
"typecheck": "tsc --noEmit"
1313
},
1414
"dependencies": {

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"clean": "rimraf .contentlayer .next .turbo node_modules tsconfig.tsbuildinfo",
88
"dev": "next dev",
99
"format": "prettier . --write",
10-
"format:check": "prettier .",
10+
"format:check": "prettier . --check",
1111
"lint": "eslint .",
1212
"lint:fix": "eslint . --fix",
1313
"start": "next start",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"clean": "rimraf .turbo dist node_modules",
3838
"dev": "tsup --watch",
3939
"format": "prettier . --write",
40-
"format:check": "prettier .",
40+
"format:check": "prettier . --check",
4141
"prepack": "clean-package",
4242
"postpack": "clean-package restore",
4343
"start": "bun run dist/index.js",

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"clean": "rimraf .turbo coverage lib node_modules tsconfig.tsbuildinfo",
4646
"dev": "",
4747
"format": "prettier . --write",
48-
"format:check": "prettier .",
48+
"format:check": "prettier . --check",
4949
"postinstall": "bun run build",
5050
"lint": "eslint .",
5151
"lint:fix": "eslint . --fix",

0 commit comments

Comments
 (0)