Skip to content

Commit

Permalink
fix(deps): update all non-major dependencies (#233)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Arnaud Barré <[email protected]>
  • Loading branch information
renovate[bot] and ArnaudBarre authored Feb 8, 2025
1 parent 374377a commit ea18caa
Show file tree
Hide file tree
Showing 12 changed files with 795 additions and 594 deletions.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@
"qa": "tsc && pnpm prettier-ci && pnpm build && pnpm test",
"release": "pnpm build && tnode scripts/release.ts"
},
"packageManager": "pnpm@9.11.0",
"packageManager": "pnpm@9.15.5",
"dependencies": {
"@swc/core": "^1.7.26"
"@swc/core": "^1.10.15"
},
"peerDependencies": {
"vite": "^4 || ^5 || ^6"
},
"devDependencies": {
"@arnaud-barre/tnode": "^0.19.2",
"@playwright/test": "^1.47.2",
"@arnaud-barre/tnode": "^0.24.0",
"@playwright/test": "^1.50.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "22.13.1",
"@vitejs/release-scripts": "^1.3.2",
"esbuild": "^0.24.0",
"fs-extra": "^11.2.0",
"picocolors": "^1.1.0",
"@vitejs/release-scripts": "^1.3.3",
"esbuild": "^0.25.0",
"fs-extra": "^11.3.0",
"picocolors": "^1.1.1",
"prettier": "^3.0.3",
"typescript": "^5.6.2",
"vite": "^6.0.0"
"typescript": "^5.7.3",
"vite": "^6.1.0"
}
}
6 changes: 3 additions & 3 deletions playground/emotion-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react-swc": "../../dist",
"@swc/plugin-emotion": "^4.0.2"
"@swc/plugin-emotion": "^8.6.0"
}
}
4 changes: 2 additions & 2 deletions playground/emotion/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion playground/mdx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"react-dom": "^19.0.0"
},
"devDependencies": {
"@mdx-js/rollup": "^3.0.1",
"@mdx-js/rollup": "^3.1.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react-swc": "../../dist"
Expand Down
4 changes: 2 additions & 2 deletions playground/styled-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-is": "^19.0.0",
"styled-components": "^6.1.13"
"styled-components": "^6.1.15"
},
"devDependencies": {
"@swc/plugin-styled-components": "^3.0.2",
"@swc/plugin-styled-components": "^6.7.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@types/styled-components": "^5.1.34",
Expand Down
2 changes: 1 addition & 1 deletion playground/ts-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"preview": "vite preview"
},
"dependencies": {
"@generouted/react-router": "^1.19.6",
"@generouted/react-router": "^1.20.0",
"generouted": "1.11.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
Expand Down
6 changes: 3 additions & 3 deletions playground/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { expect, Locator, Page } from "@playwright/test";
import { expect, type Locator, type Page } from "@playwright/test";
import {
createServer,
loadConfigFromFile,
Expand Down Expand Up @@ -33,7 +33,7 @@ export const setupWaitForLogs = async (page: Page) => {

let port = 5173;
export const setupDevServer = async (name: string) => {
process.env.NODE_ENV = "development";
process.env["NODE_ENV"] = "development";
const root = `playground-temp/${name}`;
const res = await loadConfigFromFile(
{ command: "serve", mode: "development" },
Expand Down Expand Up @@ -68,7 +68,7 @@ export const setupDevServer = async (name: string) => {
};

export const setupBuildAndPreview = async (name: string) => {
process.env.NODE_ENV = "production";
process.env["NODE_ENV"] = "production";
const root = `playground-temp/${name}`;
const res = await loadConfigFromFile(
{ command: "build", mode: "production" },
Expand Down
6 changes: 3 additions & 3 deletions playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { fileURLToPath } from "node:url";
import { devices, PlaywrightTestConfig } from "@playwright/test";
import { devices, type PlaywrightTestConfig } from "@playwright/test";
import fs from "fs-extra";

const tempDir = fileURLToPath(new URL("playground-temp", import.meta.url));
Expand All @@ -13,10 +13,10 @@ fs.copySync(fileURLToPath(new URL("playground", import.meta.url)), tempDir, {
});

const config: PlaywrightTestConfig = {
forbidOnly: !!process.env.CI,
forbidOnly: !!process.env["CI"],
workers: 1,
timeout: 10_000,
reporter: process.env.CI ? "github" : "list",
reporter: process.env["CI"] ? "github" : "list",
projects: [{ name: "chromium", use: devices["Desktop Chrome"] }],
};

Expand Down
Loading

0 comments on commit ea18caa

Please sign in to comment.