Skip to content

Commit

Permalink
Upgrade deps in non-package workspaces (#2418)
Browse files Browse the repository at this point in the history
  • Loading branch information
r100-stack authored Feb 6, 2025
1 parent 239cf55 commit 43d2be0
Show file tree
Hide file tree
Showing 13 changed files with 1,895 additions and 1,718 deletions.
8 changes: 4 additions & 4 deletions apps/css-workshop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"devDependencies": {
"@fontsource/noto-sans": "5",
"@fontsource/noto-sans-mono": "5",
"@itwin/itwinui-icons-elements": "0.20.0",
"astro": "^4",
"astro-relative-links": "^0.3.7",
"backstopjs": "~6.2.1",
"@itwin/itwinui-icons-elements": "0.21.0",
"astro": "^5",
"astro-relative-links": "^0.4.2",
"backstopjs": "~6.3.25",
"npm-run-all": "^4.1.5"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion apps/portal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
"clean": "rimraf .turbo && rimraf node_modules && rimraf dist"
},
"dependencies": {
"astro": "4"
"astro": "5"
}
}
4 changes: 2 additions & 2 deletions apps/react-workshop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"devDependencies": {
"@fontsource/noto-sans": "5",
"@fontsource/noto-sans-mono": "5",
"@itwin/itwinui-icons-react": "2.8.0",
"@itwin/itwinui-icons-react": "2.9.0",
"@itwin/itwinui-variables": "*",
"@itwin/itwinui-react": "*",
"@ladle/react": "^4.1.2",
"@ladle/react": "^5.0.1",
"@types/node": "*",
"@types/react": "*",
"@types/react-dom": "*",
Expand Down
10 changes: 5 additions & 5 deletions apps/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"@astrojs/mdx": "2",
"@astrojs/react": "3",
"@astrojs/react": "4",
"@astrojs/sitemap": "3",
"@docsearch/css": "3",
"@docsearch/js": "3",
Expand All @@ -24,13 +24,13 @@
"@tippyjs/react": "4.2.6",
"@types/react": "*",
"astro": "^4",
"astro-auto-import": "^0.4.2",
"astro-expressive-code": "^0.33.5",
"astro-auto-import": "^0.4.4",
"astro-expressive-code": "^0.40.1",
"examples": "workspace:*",
"htm": "^3",
"lightningcss": "^1.25.0",
"lightningcss": "^1.29.1",
"nanoid": "*",
"nanostores": "^0.9.0",
"nanostores": "^0.11.3",
"outdent": "^0.8.0",
"postcss-preset-env": "9",
"react": "*",
Expand Down
2 changes: 1 addition & 1 deletion minimal-sandbox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"@types/react-dom": "18",
"@vitejs/plugin-react": "4",
"typescript": "5",
"vite": "5"
"vite": "6"
},
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion playgrounds/astro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"clean": "rimraf .turbo && rimraf node_modules && rimraf dist"
},
"dependencies": {
"@astrojs/react": "3",
"@astrojs/react": "4",
"@itwin/itwinui-react": "*",
"astro": "4",
"react": "^18.2.0",
Expand Down
1 change: 0 additions & 1 deletion playgrounds/next/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
*/
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
transpilePackages: ['@itwin/itwinui-react'],
};

Expand Down
2 changes: 1 addition & 1 deletion playgrounds/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"@types/node": "*",
"@types/react": "^18",
"@types/react-dom": "^18",
"next": "^14.2.21",
"next": "^15.1.6",
"react": "^18",
"react-dom": "^18",
"typescript": "5"
Expand Down
11 changes: 9 additions & 2 deletions playgrounds/remix/app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,15 @@ import {
ScrollRestoration,
} from '@remix-run/react';
import { ThemeProvider } from '@itwin/itwinui-react';
import '@itwin/itwinui-react/styles.css';
import './root.css';

import iTwinUIStyles from '@itwin/itwinui-react/styles.css?url';
import rootStyles from './root.css?url';
import { LinksFunction } from '@remix-run/node';

export const links: LinksFunction = () => [
{ rel: 'stylesheet', href: iTwinUIStyles },
{ rel: 'stylesheet', href: rootStyles },
];

export function Layout({ children }: { children: React.ReactNode }) {
return (
Expand Down
14 changes: 7 additions & 7 deletions playgrounds/remix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@
},
"dependencies": {
"@itwin/itwinui-react": "*",
"@remix-run/node": "^2.8.0",
"@remix-run/react": "^2.8.0",
"@remix-run/serve": "^2.8.0",
"isbot": "^4.1.0",
"@remix-run/node": "^2.15.2",
"@remix-run/react": "^2.15.2",
"@remix-run/serve": "^2.15.2",
"isbot": "^5.1.22",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@remix-run/dev": "^2.8.0",
"@remix-run/dev": "^2.15.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"typescript": "5",
"vite": "^5",
"vite-tsconfig-paths": "^4.2.1"
"vite": "^6",
"vite-tsconfig-paths": "^5.1.4"
},
"lint-staged": {
"*.{tsx,ts,jsx,js}": [
Expand Down
4 changes: 2 additions & 2 deletions playgrounds/vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
"devDependencies": {
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "5",
"vite": "^5"
"vite": "^6"
},
"lint-staged": {
"*.{tsx,ts,jsx,js}": [
Expand Down
Loading

0 comments on commit 43d2be0

Please sign in to comment.