Skip to content

Commit c72fe9a

Browse files
committed
Update all dependencies
1 parent 1e07786 commit c72fe9a

File tree

10 files changed

+1423
-1344
lines changed

10 files changed

+1423
-1344
lines changed

.changeset/mighty-lobsters-joke.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"next-yak": patch
3+
"yak-swc": patch
4+
---
5+
6+
Updated all dependencies

packages/benchmarks/next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/basic-features/typescript for more information.
5+
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

packages/example/next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
5+
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

packages/example/vitest.config.ts

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
1-
/// <reference types="vitest" />
2-
import { defineConfig } from "vite";
3-
import react from "@vitejs/plugin-react"
1+
import react from "@vitejs/plugin-react";
2+
import { defineConfig, mergeConfig } from "vitest/config";
43

54
// https://vitejs.dev/config/
6-
export default defineConfig({
7-
plugins:
8-
[
9-
react()
10-
],
11-
test: {
12-
globals: true,
13-
environment: "jsdom",
5+
export default mergeConfig(
6+
{
7+
plugins: [react()],
8+
},
9+
defineConfig({
10+
test: {
11+
globals: true,
12+
environment: "jsdom",
1413

15-
// This is only necessary because we use Vitest and Jest (to see verify that both work)
16-
// and they should use different snapshot names
17-
resolveSnapshotPath: (testPath, snapshotExtension) =>
18-
testPath.replace('__tests__', '__tests__/__vite_snapshots__') + snapshotExtension,
19-
}
20-
});
14+
// This is only necessary because we use Vitest and Jest (to see verify that both work)
15+
// and they should use different snapshot names
16+
resolveSnapshotPath: (testPath, snapshotExtension) =>
17+
testPath.replace("__tests__", "__tests__/__vite_snapshots__") +
18+
snapshotExtension,
19+
},
20+
}),
21+
);

packages/yak-swc/Cargo.lock

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/yak-swc/css_in_js_parser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ keywords = ["css", "parser", "css-in-js"]
1010
categories = ["parser-implementations", "web-programming"]
1111

1212
[dependencies]
13-
serde = { version = "1.0.203", features = ["derive"] }
14-
serde_json = "1.0.119"
13+
serde = { version = "1.0.217", features = ["derive"] }
14+
serde_json = "1.0.134"
1515
serde_repr = "0.1"
1616

1717
[dev-dependencies]

packages/yak-swc/relative_posix_path/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ categories = ["filesystem", "os::unix-apis", "os::windows-apis"]
1212

1313
[dependencies]
1414
lazy_static = "1.4.0"
15-
pathdiff = "0.2.1"
16-
regex = "1.10.3"
15+
pathdiff = "0.2.3"
16+
regex = "1.10.3"

packages/yak-swc/yak_swc/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ crate-type = ["cdylib", "rlib"]
88

99
[dependencies]
1010
lazy_static = "1.4.0"
11-
serde = "1.0.203"
12-
serde_json = "1.0.120"
13-
swc_core = { version = "5.0.1", features = ["ecma_plugin_transform"] }
11+
serde = "1.0.217"
12+
serde_json = "1.0.134"
13+
swc_core = { version = "5.0.4", features = ["ecma_plugin_transform"] }
1414
css_in_js_parser = { path = "../css_in_js_parser" }
1515
relative_posix_path = { path = "../relative_posix_path" }
1616
itertools = "0.13.0"
1717
percent-encoding = "2.3.1"
18-
rustc-hash = "2.0.0"
18+
rustc-hash = "2.1.0"
1919

2020
[dev-dependencies]
21-
divan = "0.1.14"
21+
divan = "0.1.17"
2222
regex = "1.10.3"
23-
swc = "5.0.1"
23+
swc = "5.0.2"
2424
swc_ecma_transforms_testing = "5.0.0"
2525
swc_ecma_parser = "5.0.0"
2626
testing = "5.0.0"

0 commit comments

Comments
 (0)