Skip to content

Commit

Permalink
fix: publint
Browse files Browse the repository at this point in the history
  • Loading branch information
matthprost committed Nov 5, 2024
1 parent aff7a04 commit f6f49b6
Show file tree
Hide file tree
Showing 10 changed files with 86 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ jobs:
cache: "pnpm"
- run: |
pnpm install
pnpm build
pnpm publint
deploy:
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"svg": "svgo --pretty --multipass",
"svg:all": "pnpm run svg -r -f .",
"illustrations:update": "BUCKET_NAME=ultraviolet BUCKET_REGION=fr-par node utils/illustrations/uploadIllustrations.js && pnpm format packages/illustrations/src/",
"publint": "turbo publint"
"publint": "turbo run publint"
},
"lint-staged": {
"*.(j|t|mj)s?(x)": [
Expand Down Expand Up @@ -158,6 +158,7 @@
"jest-axe": "9.0.0",
"lint-staged": "15.2.10",
"postcss": "8.4.47",
"publint": "0.2.11",
"react": "18.3.1",
"react-dom": "18.3.1",
"read-pkg": "9.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"typecheck": "tsc --noEmit",
"watch:build": "vite build --config vite.config.ts --watch",
"watch": "pnpm run '/^watch:.*/'",
"publint": "pnpm dlx publint"
"publint": "pnpm publint"
},
"keywords": [
"react",
Expand Down
2 changes: 1 addition & 1 deletion packages/icons/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"build:profile": "npx vite-bundle-visualizer -c vite.config.ts",
"typecheck": "tsc --noEmit",
"size": "size-limit",
"publint": "pnpm dlx publint"
"publint": "pnpm publint"
},
"keywords": [
"react",
Expand Down
2 changes: 1 addition & 1 deletion packages/illustrations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"size": "size-limit",
"test:unit": "LC_ALL=en_US.UTF-8 pnpm vitest --run --config vite.config.ts",
"test:unit:coverage": "pnpm test:unit --coverage",
"publint": "pnpm dlx publint"
"publint": "pnpm publint"
},
"keywords": [
"illustrations",
Expand Down
2 changes: 1 addition & 1 deletion packages/plus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"size": "size-limit",
"test:unit": "LC_ALL=en_US.UTF-8 pnpm vitest --run --config vite.config.ts",
"test:unit:coverage": "pnpm test:unit --coverage",
"publint": "pnpm dlx publint"
"publint": "pnpm publint"
},
"keywords": [
"react",
Expand Down
2 changes: 1 addition & 1 deletion packages/themes/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"build": "vite build --config vite.config.ts && pnpm run type:generate",
"build:profile": "npx vite-bundle-visualizer -c vite.config.ts",
"typecheck": "tsc --noEmit",
"publint": "pnpm dlx publint"
"publint": "pnpm publint"
},
"keywords": [
"themes",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"size": "size-limit",
"test:unit": "LC_ALL=en_US.UTF-8 pnpm vitest --run --config vite.config.ts",
"test:unit:coverage": "pnpm test:unit --coverage",
"publint": "pnpm dlx publint"
"publint": "pnpm publint"
},
"keywords": [
"react",
Expand Down
77 changes: 77 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
]
},
"publint": {
"dependsOn": []
"dependsOn": ["build"]
},
"size": {
"dependsOn": ["build"]
Expand Down

0 comments on commit f6f49b6

Please sign in to comment.