Skip to content

Commit e6a5f7b

Browse files
committed
chore: Remove pnpm shared catalog and specify direct dependency versions in package.json files.
1 parent 9768ebb commit e6a5f7b

19 files changed

Lines changed: 102 additions & 114 deletions

File tree

apps/relay/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
},
2020
"devDependencies": {
2121
"@evolu/tsconfig": "workspace:*",
22-
"@types/node": "catalog:shared",
23-
"typescript": "catalog:shared"
22+
"@types/node": "^22.19.3",
23+
"typescript": "^5.9.2"
2424
},
2525
"engines": {
2626
"node": ">=22.0.0"

apps/web/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,16 @@
4444
"rss": "^1.2.2",
4545
"shiki": "^3.20.0",
4646
"simple-functional-loader": "^1.2.1",
47-
"tailwindcss": "catalog:shared",
48-
"typescript": "catalog:shared",
47+
"tailwindcss": "^4.1.18",
48+
"typescript": "^5.9.2",
4949
"unist-util-filter": "^5.0.1",
5050
"unist-util-visit": "^5.0.0",
5151
"zustand": "^5.0.7"
5252
},
5353
"devDependencies": {
5454
"@evolu/tsconfig": "workspace:*",
5555
"@types/mdx": "^2.0.13",
56-
"@types/node": "catalog:shared",
56+
"@types/node": "^22.19.3",
5757
"@types/react": "catalog:react19",
5858
"@types/react-dom": "catalog:react19",
5959
"@types/react-highlight-words": "^0.20.1",

examples/angular-vite-pwa/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
"@angular/compiler-cli": "^21.0.6",
2121
"@tailwindcss/vite": "^4.1.18",
2222
"@vite-pwa/assets-generator": "^1.0.0",
23-
"tailwindcss": "catalog:shared",
24-
"typescript": "catalog:shared",
25-
"vite": "catalog:shared",
23+
"tailwindcss": "^4.1.18",
24+
"typescript": "^5.9.2",
25+
"vite": "^7.3.0",
2626
"vite-plugin-pwa": "^1.0.2"
2727
}
2828
}

examples/react-electron/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
"@vitejs/plugin-react": "^5.1.2",
2323
"electron": "39.2.7",
2424
"electron-builder": "^26.0.12",
25-
"typescript": "catalog:shared",
26-
"vite": "catalog:shared",
25+
"typescript": "^5.9.2",
26+
"vite": "^7.3.0",
2727
"vite-plugin-electron": "^0.29.0",
2828
"vite-plugin-electron-renderer": "^0.14.5"
2929
},

examples/react-expo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@
5252
"@babel/plugin-transform-explicit-resource-management": "^7.27.1",
5353
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
5454
"@types/react": "~19.2.7",
55-
"typescript": "catalog:shared"
55+
"typescript": "^5.9.2"
5656
}
5757
}

examples/react-nextjs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
"@eslint/eslintrc": "^3.3.1",
2424
"@tailwindcss/forms": "^0.5.11",
2525
"@tailwindcss/postcss": "^4.1.18",
26-
"@types/node": "catalog:shared",
26+
"@types/node": "^22.19.3",
2727
"@types/react": "~19.2.7",
2828
"@types/react-dom": "~19.2.3",
2929
"eslint": "9.39.2",
3030
"eslint-config-next": "^16.1.1",
3131
"postcss": "^8.5.6",
32-
"tailwindcss": "catalog:shared",
33-
"typescript": "catalog:shared"
32+
"tailwindcss": "^4.1.18",
33+
"typescript": "^5.9.2"
3434
}
3535
}

examples/react-vite-pwa/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"clsx": "^2.1.1",
2020
"react": "19.2.3",
2121
"react-dom": "19.2.3",
22-
"tailwindcss": "catalog:shared"
22+
"tailwindcss": "^4.1.18"
2323
},
2424
"devDependencies": {
2525
"@eslint/js": "^9.39.2",
@@ -35,9 +35,9 @@
3535
"eslint-plugin-react-hooks": "^7.0.0",
3636
"eslint-plugin-react-refresh": "^0.4.26",
3737
"globals": "^16.3.0",
38-
"typescript": "catalog:shared",
38+
"typescript": "^5.9.2",
3939
"typescript-eslint": "^8.50.1",
40-
"vite": "catalog:shared",
40+
"vite": "^7.3.0",
4141
"vite-plugin-pwa": "^1.0.2",
4242
"workbox-core": "^7.3.0",
4343
"workbox-window": "^7.3.0"

examples/svelte-vite-pwa/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"svelte": "^5.46.0",
2020
"svelte-check": "^4.3.5",
2121
"tslib": "^2.8.1",
22-
"typescript": "catalog:shared",
23-
"vite": "catalog:shared",
22+
"typescript": "^5.9.2",
23+
"vite": "^7.3.0",
2424
"vite-plugin-pwa": "^1.0.2"
2525
}
2626
}

examples/vue-vite-pwa/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"@vite-pwa/assets-generator": "^1.0.0",
2222
"@vitejs/plugin-vue": "^6.0.3",
2323
"@vue/tsconfig": "^0.8.1",
24-
"typescript": "catalog:shared",
25-
"vite": "catalog:shared",
24+
"typescript": "^5.9.2",
25+
"vite": "^7.3.0",
2626
"vite-plugin-pwa": "^1.0.2",
2727
"vue-tsc": "^3.2.1"
2828
}

package.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"turbo": "^2.7.2",
3636
"typedoc": "^0.28.13",
3737
"typedoc-plugin-markdown": "^4.9.0",
38-
"typescript": "catalog:shared"
38+
"typescript": "^5.9.2"
3939
},
4040
"engines": {
4141
"node": ">=22.0.0"
@@ -71,6 +71,14 @@
7171
"apps/*",
7272
"packages/*",
7373
"examples/*"
74-
]
74+
],
75+
"catalogs": {
76+
"react19": {
77+
"@types/react": "~19.2.7",
78+
"@types/react-dom": "~19.2.3",
79+
"react": "19.2.3",
80+
"react-dom": "19.2.3"
81+
}
82+
}
7583
}
7684
}

0 commit comments

Comments
 (0)