From c6bb6d7cb9cab7caff89777eae0079b2f9081321 Mon Sep 17 00:00:00 2001 From: vanilla-extract-ci <114379795+vanilla-extract-ci@users.noreply.github.com> Date: Fri, 2 Feb 2024 11:07:56 +1100 Subject: [PATCH] Version Packages (#1306) Co-authored-by: github-actions[bot] --- .changeset/eleven-oranges-collect.md | 9 --------- .changeset/happy-papayas-travel.md | 13 ------------- .changeset/small-emus-do.md | 13 ------------- packages/integration/CHANGELOG.md | 14 ++++++++++++++ packages/integration/package.json | 2 +- packages/next-plugin/CHANGELOG.md | 12 ++++++++++++ packages/next-plugin/package.json | 4 ++-- packages/vite-plugin/CHANGELOG.md | 17 +++++++++++++++++ packages/vite-plugin/package.json | 4 ++-- packages/webpack-plugin/CHANGELOG.md | 12 ++++++++++++ packages/webpack-plugin/package.json | 4 ++-- pnpm-lock.yaml | 6 +++--- 12 files changed, 65 insertions(+), 45 deletions(-) delete mode 100644 .changeset/eleven-oranges-collect.md delete mode 100644 .changeset/happy-papayas-travel.md delete mode 100644 .changeset/small-emus-do.md diff --git a/.changeset/eleven-oranges-collect.md b/.changeset/eleven-oranges-collect.md deleted file mode 100644 index ef455c7e..00000000 --- a/.changeset/eleven-oranges-collect.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@vanilla-extract/webpack-plugin': patch -'@vanilla-extract/next-plugin': patch ---- - -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]`. - -[webpack template strings]: https://webpack.js.org/configuration/output/#template-strings -[next.js dynamic routes]: https://nextjs.org/docs/app/building-your-application/routing/dynamic-routes diff --git a/.changeset/happy-papayas-travel.md b/.changeset/happy-papayas-travel.md deleted file mode 100644 index 9530df17..00000000 --- a/.changeset/happy-papayas-travel.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@vanilla-extract/integration': minor ---- - -Add a `viteResolve` option to the vite-node compiler - -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. - -[`resolve.alias`]: https://vitejs.dev/config/shared-options.html#resolve-alias -[`resolve.dedupe`]: https://vitejs.dev/config/shared-options.html#resolve-dedupe -[`resolve.conditions`]: https://vitejs.dev/config/shared-options.html#resolve-conditions -[`resolve.mainFields`]: https://vitejs.dev/config/shared-options.html#resolve-mainfields -[`resolve.extensions`]: https://vitejs.dev/config/shared-options.html#resolve-extensions diff --git a/.changeset/small-emus-do.md b/.changeset/small-emus-do.md deleted file mode 100644 index 624516b1..00000000 --- a/.changeset/small-emus-do.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@vanilla-extract/vite-plugin': patch ---- - -Pass Vite `resolve` config to vite-node compiler - -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. - -[`resolve.alias`]: https://vitejs.dev/config/shared-options.html#resolve-alias -[`resolve.dedupe`]: https://vitejs.dev/config/shared-options.html#resolve-dedupe -[`resolve.conditions`]: https://vitejs.dev/config/shared-options.html#resolve-conditions -[`resolve.mainFields`]: https://vitejs.dev/config/shared-options.html#resolve-mainfields -[`resolve.extensions`]: https://vitejs.dev/config/shared-options.html#resolve-extensions diff --git a/packages/integration/CHANGELOG.md b/packages/integration/CHANGELOG.md index d671970c..21696500 100644 --- a/packages/integration/CHANGELOG.md +++ b/packages/integration/CHANGELOG.md @@ -1,5 +1,19 @@ # @vanilla-extract/integration +## 6.5.0 + +### Minor Changes + +- [#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 + + 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. + + [`resolve.alias`]: https://vitejs.dev/config/shared-options.html#resolve-alias + [`resolve.dedupe`]: https://vitejs.dev/config/shared-options.html#resolve-dedupe + [`resolve.conditions`]: https://vitejs.dev/config/shared-options.html#resolve-conditions + [`resolve.mainFields`]: https://vitejs.dev/config/shared-options.html#resolve-mainfields + [`resolve.extensions`]: https://vitejs.dev/config/shared-options.html#resolve-extensions + ## 6.4.0 ### Minor Changes diff --git a/packages/integration/package.json b/packages/integration/package.json index 867aeb47..2f5c0dc7 100644 --- a/packages/integration/package.json +++ b/packages/integration/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/integration", - "version": "6.4.0", + "version": "6.5.0", "description": "Zero-runtime Stylesheets-in-TypeScript", "main": "dist/vanilla-extract-integration.cjs.js", "files": [ diff --git a/packages/next-plugin/CHANGELOG.md b/packages/next-plugin/CHANGELOG.md index 6311a576..e934ac08 100644 --- a/packages/next-plugin/CHANGELOG.md +++ b/packages/next-plugin/CHANGELOG.md @@ -1,5 +1,17 @@ # @vanilla-extract/next-plugin +## 2.3.6 + +### Patch Changes + +- [#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]`. + + [webpack template strings]: https://webpack.js.org/configuration/output/#template-strings + [next.js dynamic routes]: https://nextjs.org/docs/app/building-your-application/routing/dynamic-routes + +- Updated dependencies [[`f0c3be9`](https://github.com/vanilla-extract-css/vanilla-extract/commit/f0c3be99ca437fb1f61ecde58fdf58cccc3256bb)]: + - @vanilla-extract/webpack-plugin@2.3.5 + ## 2.3.5 ### Patch Changes diff --git a/packages/next-plugin/package.json b/packages/next-plugin/package.json index 3483098d..3bd4865a 100644 --- a/packages/next-plugin/package.json +++ b/packages/next-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/next-plugin", - "version": "2.3.5", + "version": "2.3.6", "description": "Zero-runtime Stylesheets-in-TypeScript", "main": "dist/vanilla-extract-next-plugin.cjs.js", "module": "dist/vanilla-extract-next-plugin.esm.js", @@ -20,7 +20,7 @@ "author": "SEEK", "license": "MIT", "dependencies": { - "@vanilla-extract/webpack-plugin": "^2.3.4" + "@vanilla-extract/webpack-plugin": "^2.3.5" }, "peerDependencies": { "next": ">=12.1.7" diff --git a/packages/vite-plugin/CHANGELOG.md b/packages/vite-plugin/CHANGELOG.md index 32799e2e..c2d0a889 100644 --- a/packages/vite-plugin/CHANGELOG.md +++ b/packages/vite-plugin/CHANGELOG.md @@ -1,5 +1,22 @@ # @vanilla-extract/vite-plugin +## 4.0.2 + +### Patch Changes + +- [#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 + + 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. + + [`resolve.alias`]: https://vitejs.dev/config/shared-options.html#resolve-alias + [`resolve.dedupe`]: https://vitejs.dev/config/shared-options.html#resolve-dedupe + [`resolve.conditions`]: https://vitejs.dev/config/shared-options.html#resolve-conditions + [`resolve.mainFields`]: https://vitejs.dev/config/shared-options.html#resolve-mainfields + [`resolve.extensions`]: https://vitejs.dev/config/shared-options.html#resolve-extensions + +- Updated dependencies [[`545bf82`](https://github.com/vanilla-extract-css/vanilla-extract/commit/545bf82f127598ac72265164c72e1a1aad558491)]: + - @vanilla-extract/integration@6.5.0 + ## 4.0.1 ### Patch Changes diff --git a/packages/vite-plugin/package.json b/packages/vite-plugin/package.json index c4ec45d3..6f40e043 100644 --- a/packages/vite-plugin/package.json +++ b/packages/vite-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/vite-plugin", - "version": "4.0.1", + "version": "4.0.2", "description": "Zero-runtime Stylesheets-in-TypeScript", "main": "dist/vanilla-extract-vite-plugin.cjs.js", "module": "dist/vanilla-extract-vite-plugin.esm.js", @@ -15,7 +15,7 @@ "author": "SEEK", "license": "MIT", "dependencies": { - "@vanilla-extract/integration": "^6.4.0" + "@vanilla-extract/integration": "^6.5.0" }, "devDependencies": { "vite": "npm:vite@^5.0.11" diff --git a/packages/webpack-plugin/CHANGELOG.md b/packages/webpack-plugin/CHANGELOG.md index 251ffd76..eafef8fd 100644 --- a/packages/webpack-plugin/CHANGELOG.md +++ b/packages/webpack-plugin/CHANGELOG.md @@ -1,5 +1,17 @@ # @vanilla-extract/webpack-plugin +## 2.3.5 + +### Patch Changes + +- [#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]`. + + [webpack template strings]: https://webpack.js.org/configuration/output/#template-strings + [next.js dynamic routes]: https://nextjs.org/docs/app/building-your-application/routing/dynamic-routes + +- Updated dependencies [[`545bf82`](https://github.com/vanilla-extract-css/vanilla-extract/commit/545bf82f127598ac72265164c72e1a1aad558491)]: + - @vanilla-extract/integration@6.5.0 + ## 2.3.4 ### Patch Changes diff --git a/packages/webpack-plugin/package.json b/packages/webpack-plugin/package.json index 5020c7ef..329ac72f 100644 --- a/packages/webpack-plugin/package.json +++ b/packages/webpack-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/webpack-plugin", - "version": "2.3.4", + "version": "2.3.5", "description": "Zero-runtime Stylesheets-in-TypeScript", "main": "dist/vanilla-extract-webpack-plugin.cjs.js", "module": "dist/vanilla-extract-webpack-plugin.esm.js", @@ -56,7 +56,7 @@ "webpack": "^4.30.0 || ^5.20.2" }, "dependencies": { - "@vanilla-extract/integration": "^6.4.0", + "@vanilla-extract/integration": "^6.5.0", "chalk": "^4.1.1", "debug": "^4.3.1", "loader-utils": "^2.0.0" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index edce7ef5..3e1f679d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -410,7 +410,7 @@ importers: packages/next-plugin: dependencies: '@vanilla-extract/webpack-plugin': - specifier: ^2.3.4 + specifier: ^2.3.5 version: link:../webpack-plugin devDependencies: next: @@ -473,7 +473,7 @@ importers: packages/vite-plugin: dependencies: '@vanilla-extract/integration': - specifier: ^6.4.0 + specifier: ^6.5.0 version: link:../integration devDependencies: vite: @@ -483,7 +483,7 @@ importers: packages/webpack-plugin: dependencies: '@vanilla-extract/integration': - specifier: ^6.4.0 + specifier: ^6.5.0 version: link:../integration chalk: specifier: ^4.1.1