Skip to content

Commit c6bb6d7

Browse files
Version Packages (#1306)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 42d14d9 commit c6bb6d7

File tree

12 files changed

+65
-45
lines changed

12 files changed

+65
-45
lines changed

.changeset/eleven-oranges-collect.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

.changeset/happy-papayas-travel.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

.changeset/small-emus-do.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

packages/integration/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @vanilla-extract/integration
22

3+
## 6.5.0
4+
5+
### Minor Changes
6+
7+
- [#1304](https://github.com/vanilla-extract-css/vanilla-extract/pull/1304) [`545bf82`](https://github.com/vanilla-extract-css/vanilla-extract/commit/545bf82f127598ac72265164c72e1a1aad558491) Thanks [@fukumasuya](https://github.com/fukumasuya)! - Add a `viteResolve` option to the vite-node compiler
8+
9+
This allows integrations to provide a Vite `resolve` config to the vite-node compiler, which will be used for resolving imports. These options include [`resolve.alias`], [`resolve.dedupe`], [`resolve.conditions`], [`resolve.mainFields`], [`resolve.extensions`], and others.
10+
11+
[`resolve.alias`]: https://vitejs.dev/config/shared-options.html#resolve-alias
12+
[`resolve.dedupe`]: https://vitejs.dev/config/shared-options.html#resolve-dedupe
13+
[`resolve.conditions`]: https://vitejs.dev/config/shared-options.html#resolve-conditions
14+
[`resolve.mainFields`]: https://vitejs.dev/config/shared-options.html#resolve-mainfields
15+
[`resolve.extensions`]: https://vitejs.dev/config/shared-options.html#resolve-extensions
16+
317
## 6.4.0
418

519
### Minor Changes

packages/integration/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vanilla-extract/integration",
3-
"version": "6.4.0",
3+
"version": "6.5.0",
44
"description": "Zero-runtime Stylesheets-in-TypeScript",
55
"main": "dist/vanilla-extract-integration.cjs.js",
66
"files": [

packages/next-plugin/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @vanilla-extract/next-plugin
22

3+
## 2.3.6
4+
5+
### Patch Changes
6+
7+
- [#1247](https://github.com/vanilla-extract-css/vanilla-extract/pull/1247) [`f0c3be9`](https://github.com/vanilla-extract-css/vanilla-extract/commit/f0c3be99ca437fb1f61ecde58fdf58cccc3256bb) Thanks [@askoufis](https://github.com/askoufis)! - Fixes a bug that was causing style compilation to fail on paths containing [webpack template strings] such as `[id]` or [Next.js dynamic routes] such as `[slug]`.
8+
9+
[webpack template strings]: https://webpack.js.org/configuration/output/#template-strings
10+
[next.js dynamic routes]: https://nextjs.org/docs/app/building-your-application/routing/dynamic-routes
11+
12+
- Updated dependencies [[`f0c3be9`](https://github.com/vanilla-extract-css/vanilla-extract/commit/f0c3be99ca437fb1f61ecde58fdf58cccc3256bb)]:
13+
- @vanilla-extract/webpack-plugin@2.3.5
14+
315
## 2.3.5
416

517
### Patch Changes

packages/next-plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vanilla-extract/next-plugin",
3-
"version": "2.3.5",
3+
"version": "2.3.6",
44
"description": "Zero-runtime Stylesheets-in-TypeScript",
55
"main": "dist/vanilla-extract-next-plugin.cjs.js",
66
"module": "dist/vanilla-extract-next-plugin.esm.js",
@@ -20,7 +20,7 @@
2020
"author": "SEEK",
2121
"license": "MIT",
2222
"dependencies": {
23-
"@vanilla-extract/webpack-plugin": "^2.3.4"
23+
"@vanilla-extract/webpack-plugin": "^2.3.5"
2424
},
2525
"peerDependencies": {
2626
"next": ">=12.1.7"

packages/vite-plugin/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# @vanilla-extract/vite-plugin
22

3+
## 4.0.2
4+
5+
### Patch Changes
6+
7+
- [#1304](https://github.com/vanilla-extract-css/vanilla-extract/pull/1304) [`545bf82`](https://github.com/vanilla-extract-css/vanilla-extract/commit/545bf82f127598ac72265164c72e1a1aad558491) Thanks [@fukumasuya](https://github.com/fukumasuya)! - Pass Vite `resolve` config to vite-node compiler
8+
9+
The plugin passes through the project's Vite `resolve` config to the vite-node compiler, which will be used for resolving imports. These options include [`resolve.alias`], [`resolve.dedupe`], [`resolve.conditions`], [`resolve.mainFields`], [`resolve.extensions`], and others.
10+
11+
[`resolve.alias`]: https://vitejs.dev/config/shared-options.html#resolve-alias
12+
[`resolve.dedupe`]: https://vitejs.dev/config/shared-options.html#resolve-dedupe
13+
[`resolve.conditions`]: https://vitejs.dev/config/shared-options.html#resolve-conditions
14+
[`resolve.mainFields`]: https://vitejs.dev/config/shared-options.html#resolve-mainfields
15+
[`resolve.extensions`]: https://vitejs.dev/config/shared-options.html#resolve-extensions
16+
17+
- Updated dependencies [[`545bf82`](https://github.com/vanilla-extract-css/vanilla-extract/commit/545bf82f127598ac72265164c72e1a1aad558491)]:
18+
- @vanilla-extract/integration@6.5.0
19+
320
## 4.0.1
421

522
### Patch Changes

packages/vite-plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vanilla-extract/vite-plugin",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"description": "Zero-runtime Stylesheets-in-TypeScript",
55
"main": "dist/vanilla-extract-vite-plugin.cjs.js",
66
"module": "dist/vanilla-extract-vite-plugin.esm.js",
@@ -15,7 +15,7 @@
1515
"author": "SEEK",
1616
"license": "MIT",
1717
"dependencies": {
18-
"@vanilla-extract/integration": "^6.4.0"
18+
"@vanilla-extract/integration": "^6.5.0"
1919
},
2020
"devDependencies": {
2121
"vite": "npm:vite@^5.0.11"

packages/webpack-plugin/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @vanilla-extract/webpack-plugin
22

3+
## 2.3.5
4+
5+
### Patch Changes
6+
7+
- [#1247](https://github.com/vanilla-extract-css/vanilla-extract/pull/1247) [`f0c3be9`](https://github.com/vanilla-extract-css/vanilla-extract/commit/f0c3be99ca437fb1f61ecde58fdf58cccc3256bb) Thanks [@askoufis](https://github.com/askoufis)! - Fixes a bug that was causing style compilation to fail on paths containing [webpack template strings] such as `[id]` or [Next.js dynamic routes] such as `[slug]`.
8+
9+
[webpack template strings]: https://webpack.js.org/configuration/output/#template-strings
10+
[next.js dynamic routes]: https://nextjs.org/docs/app/building-your-application/routing/dynamic-routes
11+
12+
- Updated dependencies [[`545bf82`](https://github.com/vanilla-extract-css/vanilla-extract/commit/545bf82f127598ac72265164c72e1a1aad558491)]:
13+
- @vanilla-extract/integration@6.5.0
14+
315
## 2.3.4
416

517
### Patch Changes

0 commit comments

Comments
 (0)