Skip to content

Commit

Permalink
chore: upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjavi committed Mar 27, 2024
1 parent aea9dab commit 634faa6
Show file tree
Hide file tree
Showing 7 changed files with 1,340 additions and 1,077 deletions.
2 changes: 1 addition & 1 deletion .github/actions/check-quality/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ runs:
using: 'composite'
steps:
- shell: bash
run: pnpm formatter-check
run: pnpm format-check

- shell: bash
run: pnpm type-check
Expand Down
32 changes: 14 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
"scripts": {
"build": "pnpm -r build",
"clear-cache": "rm -rf packages/*/.next && jest --clearCache",
"dev": "pnpm -r dev --no-deps --no-cache --parallel --concurrency 20",
"dev": "pnpm run -r --parallel dev",
"format": "pnpm lint-fix && pnpm format-fix",
"format-check": "biome format .",
"format-fix": "biome format . --write && pnpm format-pkg",
"format-fix": "pnpm format-pkg && biome format . --write",
"format-pkg": "pnpm sort-package-json package.json packages/*/package.json packages/examples/*/package.json",
"postinstall": "pnpm lint-staged || echo 'postinstall failed'",
"lint": "biome lint .",
Expand All @@ -34,29 +34,25 @@
"version:release": "pnpm version:publish"
},
"lint-staged": {
"*.{js,cjs,mjs,jsx,ts,cts,mts,tsx}": [
"biome lint --apply ."
],
"*.{js,cjs,mjs,jsx,ts,cts,mts,tsx,json}": [
"biome format . --write"
]
"*.{js,cjs,mjs,jsx,ts,cts,mts,tsx}": ["biome lint --apply ."],
"*.{js,cjs,mjs,jsx,ts,cts,mts,tsx,json}": ["biome format . --write"]
},
"devDependencies": {
"@biomejs/biome": "^1.6.3",
"@itsjavi/semver-release": "^0.7.2",
"@swc/core": "^1.3.99",
"@swc/jest": "^0.2.29",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.10",
"@types/node": "^20.9.4",
"@swc/core": "^1.4.11",
"@swc/jest": "^0.2.36",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"changelogen": "^0.5.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.1.0",
"semver": "^7.5.4",
"sort-package-json": "*",
"typescript": "^5.3.2"
"lint-staged": "^15.2.2",
"semver": "^7.6.0",
"sort-package-json": "^2.9.0",
"typescript": "^5.4.3"
},
"packageManager": "[email protected]",
"engines": {
Expand Down
14 changes: 7 additions & 7 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@
"preview": "vite --base=/storylite/ preview --port=7088 --host=0.0.0.0 --open"
},
"dependencies": {
"lucide-react": "^0.292.0",
"lucide-react": "^0.363.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@mdx-js/rollup": "^3.0.0",
"@mdx-js/rollup": "^3.0.1",
"@storylite/storylite": "workspace:*",
"@storylite/vite-plugin": "workspace:*",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react-swc": "^3.5.0",
"@types/react": "^18.2.72",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react-swc": "^3.6.0",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^4.0.0",
"typescript": "^5.3.2",
"vite": "^5.0.2"
"typescript": "^5.4.3",
"vite": "^5.2.6"
}
}
10 changes: 5 additions & 5 deletions packages/examples/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
"devDependencies": {
"@storylite/storylite": "workspace:*",
"@storylite/vite-plugin": "workspace:*",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react-swc": "^3.5.0",
"typescript": "^5.3.2",
"vite": "^5.0.2"
"@types/react": "^18.2.72",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react-swc": "^3.6.0",
"typescript": "^5.4.3",
"vite": "^5.2.6"
}
}
22 changes: 9 additions & 13 deletions packages/storylite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,7 @@
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"build": "tsup --clean",
"dev": "tsup --watch",
Expand All @@ -29,18 +25,18 @@
"type-check": "tsc --noEmit"
},
"dependencies": {
"clsx": "^2.0.0",
"zustand": "^4.4.6"
"clsx": "^2.1.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/node": "^20.9.4",
"@types/react": "^18.2.38",
"@types/react-dom": "^18.2.17",
"publint": "^0.2.5",
"@types/node": "^20.11.30",
"@types/react": "^18.2.72",
"@types/react-dom": "^18.2.22",
"publint": "^0.2.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
"tsup": "^8.0.2",
"typescript": "^5.4.3"
},
"peerDependencies": {
"@types/node": "^20.4.9",
Expand Down
24 changes: 8 additions & 16 deletions packages/vite-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,11 @@
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"dist/index.d.ts"
],
"virtual": [
"dist/virtual-modules.d.ts"
]
"*": ["dist/index.d.ts"],
"virtual": ["dist/virtual-modules.d.ts"]
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"build": "tsup --clean",
"dev": "tsup --watch",
Expand All @@ -41,12 +33,12 @@
"type-check": "tsc --noEmit"
},
"dependencies": {
"vite": "^5.0.2"
"vite": "^5.2.6"
},
"devDependencies": {
"@types/node": "^20.9.4",
"publint": "^0.2.5",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
"@types/node": "^20.11.30",
"publint": "^0.2.7",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
}
}
Loading

0 comments on commit 634faa6

Please sign in to comment.