diff --git a/.changeset/little-beers-cheer.md b/.changeset/little-beers-cheer.md deleted file mode 100644 index 21c8faf76..000000000 --- a/.changeset/little-beers-cheer.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -"@modular-css/css-to-js": patch -"@modular-css/processor": patch -"@modular-css/webpack": patch ---- - -Ensure that aliased values get exported, fixing #982 - -``` -@value * as values from "./other-file.css"; -@value local: values.somevalue; -``` - -Previously that `local` value wouldn't exist in the JS exports, it was mistakenly treated like the `values` external value. - -Also adds semi-colons to variable declarations in the generated JS for vite/rollup/webpack. diff --git a/packages/browserify/CHANGELOG.md b/packages/browserify/CHANGELOG.md index b2700fa11..b018de6d0 100644 --- a/packages/browserify/CHANGELOG.md +++ b/packages/browserify/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 29.0.3 + +### Patch Changes + +- Updated dependencies [[`63af4ac3`](https://github.com/tivac/modular-css/commit/63af4ac3ee6380ede5396463fb0305bc14274d84)]: + - @modular-css/processor@29.0.3 + ## 29.0.2 ### Patch Changes diff --git a/packages/browserify/package.json b/packages/browserify/package.json index c851092d9..064836ff3 100644 --- a/packages/browserify/package.json +++ b/packages/browserify/package.json @@ -1,6 +1,6 @@ { "name": "@modular-css/browserify", - "version": "29.0.2", + "version": "29.0.3", "description": "Browserify transform for modular-css", "main": "./browserify.js", "repository": { @@ -27,7 +27,7 @@ "postcss" ], "dependencies": { - "@modular-css/processor": "^29.0.2", + "@modular-css/processor": "^29.0.3", "mkdirp": "^2.1.3", "p-each-series": "^2.0.0", "sink-transform": "^2.0.0", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 57e64e3e0..cb9aaba52 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 29.0.3 + +### Patch Changes + +- Updated dependencies [[`63af4ac3`](https://github.com/tivac/modular-css/commit/63af4ac3ee6380ede5396463fb0305bc14274d84)]: + - @modular-css/processor@29.0.3 + - @modular-css/glob@29.0.3 + ## 29.0.2 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index d18961a14..96a89f854 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@modular-css/cli", - "version": "29.0.2", + "version": "29.0.3", "description": "CLI for modular-css", "main": "./cli.js", "bin": { @@ -28,8 +28,8 @@ "cli" ], "dependencies": { - "@modular-css/glob": "^29.0.2", - "@modular-css/processor": "^29.0.2", + "@modular-css/glob": "^29.0.3", + "@modular-css/processor": "^29.0.3", "meow": "^9.0.0", "mkdirp": "^2.1.3" } diff --git a/packages/css-to-js/CHANGELOG.md b/packages/css-to-js/CHANGELOG.md index 21c794aa0..1f460616a 100644 --- a/packages/css-to-js/CHANGELOG.md +++ b/packages/css-to-js/CHANGELOG.md @@ -1,5 +1,23 @@ # Change Log +## 29.0.3 + +### Patch Changes + +- [#983](https://github.com/tivac/modular-css/pull/983) [`63af4ac3`](https://github.com/tivac/modular-css/commit/63af4ac3ee6380ede5396463fb0305bc14274d84) Thanks [@tivac](https://github.com/tivac)! - Ensure that aliased values get exported, fixing #982 + + ``` + @value * as values from "./other-file.css"; + @value local: values.somevalue; + ``` + + Previously that `local` value wouldn't exist in the JS exports, it was mistakenly treated like the `values` external value. + + Also adds semi-colons to variable declarations in the generated JS for vite/rollup/webpack. + +- Updated dependencies [[`63af4ac3`](https://github.com/tivac/modular-css/commit/63af4ac3ee6380ede5396463fb0305bc14274d84)]: + - @modular-css/processor@29.0.3 + ## 29.0.2 ### Patch Changes diff --git a/packages/css-to-js/package.json b/packages/css-to-js/package.json index f526cb7b4..c8e2d42a6 100644 --- a/packages/css-to-js/package.json +++ b/packages/css-to-js/package.json @@ -1,6 +1,6 @@ { "name": "@modular-css/css-to-js", - "version": "29.0.2", + "version": "29.0.3", "description": "modular-css powered conversion of CSS to JavaScript", "main": "./css-to-js.js", "repository": { @@ -24,7 +24,7 @@ "postcss" ], "dependencies": { - "@modular-css/processor": "^29.0.2", + "@modular-css/processor": "^29.0.3", "dedent": "^0.7.0", "identifierfy": "^2.0.0", "just-extend": "^6.0.1" diff --git a/packages/glob/CHANGELOG.md b/packages/glob/CHANGELOG.md index 785a3a98e..18f875c5f 100644 --- a/packages/glob/CHANGELOG.md +++ b/packages/glob/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 29.0.3 + +### Patch Changes + +- Updated dependencies [[`63af4ac3`](https://github.com/tivac/modular-css/commit/63af4ac3ee6380ede5396463fb0305bc14274d84)]: + - @modular-css/processor@29.0.3 + ## 29.0.2 ### Patch Changes diff --git a/packages/glob/package.json b/packages/glob/package.json index 28ccdfed0..f9c198f88 100644 --- a/packages/glob/package.json +++ b/packages/glob/package.json @@ -1,6 +1,6 @@ { "name": "@modular-css/glob", - "version": "29.0.2", + "version": "29.0.3", "description": "Glob support for modular-css", "main": "./glob.js", "repository": { @@ -24,7 +24,7 @@ "modular-css" ], "dependencies": { - "@modular-css/processor": "^29.0.2", + "@modular-css/processor": "^29.0.3", "globule": "^1.1.0" } } diff --git a/packages/postcss/CHANGELOG.md b/packages/postcss/CHANGELOG.md index 3c74d4ef6..cb45fc160 100644 --- a/packages/postcss/CHANGELOG.md +++ b/packages/postcss/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 29.0.3 + +### Patch Changes + +- Updated dependencies [[`63af4ac3`](https://github.com/tivac/modular-css/commit/63af4ac3ee6380ede5396463fb0305bc14274d84)]: + - @modular-css/processor@29.0.3 + ## 29.0.2 ### Patch Changes diff --git a/packages/postcss/package.json b/packages/postcss/package.json index d7fa6ab93..f8dcbc721 100644 --- a/packages/postcss/package.json +++ b/packages/postcss/package.json @@ -1,6 +1,6 @@ { "name": "@modular-css/postcss", - "version": "29.0.2", + "version": "29.0.3", "description": "Use modular-css via postcss", "main": "./postcss.js", "repository": { @@ -24,7 +24,7 @@ "postcss" ], "dependencies": { - "@modular-css/processor": "^29.0.2", + "@modular-css/processor": "^29.0.3", "mkdirp": "^2.1.3" }, "peerDependencies": { diff --git a/packages/processor/CHANGELOG.md b/packages/processor/CHANGELOG.md index baebe66b5..ab4d6e743 100644 --- a/packages/processor/CHANGELOG.md +++ b/packages/processor/CHANGELOG.md @@ -1,5 +1,20 @@ # Change Log +## 29.0.3 + +### Patch Changes + +- [#983](https://github.com/tivac/modular-css/pull/983) [`63af4ac3`](https://github.com/tivac/modular-css/commit/63af4ac3ee6380ede5396463fb0305bc14274d84) Thanks [@tivac](https://github.com/tivac)! - Ensure that aliased values get exported, fixing #982 + + ``` + @value * as values from "./other-file.css"; + @value local: values.somevalue; + ``` + + Previously that `local` value wouldn't exist in the JS exports, it was mistakenly treated like the `values` external value. + + Also adds semi-colons to variable declarations in the generated JS for vite/rollup/webpack. + ## 29.0.2 ### Patch Changes diff --git a/packages/processor/package.json b/packages/processor/package.json index 87f8232ed..e81384e74 100644 --- a/packages/processor/package.json +++ b/packages/processor/package.json @@ -1,6 +1,6 @@ { "name": "@modular-css/processor", - "version": "29.0.2", + "version": "29.0.3", "description": "A streamlined reinterpretation of CSS Modules", "main": "./processor.js", "repository": { diff --git a/packages/rollup/CHANGELOG.md b/packages/rollup/CHANGELOG.md index 4edcd9781..fc5aafb7f 100644 --- a/packages/rollup/CHANGELOG.md +++ b/packages/rollup/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 29.0.4 + +### Patch Changes + +- Updated dependencies [[`63af4ac3`](https://github.com/tivac/modular-css/commit/63af4ac3ee6380ede5396463fb0305bc14274d84)]: + - @modular-css/css-to-js@29.0.3 + - @modular-css/processor@29.0.3 + ## 29.0.3 ### Patch Changes diff --git a/packages/rollup/package.json b/packages/rollup/package.json index b5e390a30..172d9a538 100644 --- a/packages/rollup/package.json +++ b/packages/rollup/package.json @@ -1,6 +1,6 @@ { "name": "@modular-css/rollup", - "version": "29.0.3", + "version": "29.0.4", "description": "Add modular-css support to rollup", "main": "./rollup.js", "repository": { @@ -26,8 +26,8 @@ "postcss" ], "dependencies": { - "@modular-css/css-to-js": "^29.0.2", - "@modular-css/processor": "^29.0.2", + "@modular-css/css-to-js": "^29.0.3", + "@modular-css/processor": "^29.0.3", "@rollup/pluginutils": "^5.0.2", "slash": "^3.0.0" }, diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 3a4e6811a..84308e8bf 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 29.0.3 + +### Patch Changes + +- Updated dependencies [[`63af4ac3`](https://github.com/tivac/modular-css/commit/63af4ac3ee6380ede5396463fb0305bc14274d84)]: + - @modular-css/processor@29.0.3 + ## 29.0.2 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 09d182002..ca8274a8f 100644 --- a/packages/svelte/package.json +++ b/packages/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@modular-css/svelte", - "version": "29.0.2", + "version": "29.0.3", "description": "Add modular-css support to svelte", "main": "./svelte.js", "repository": { @@ -29,7 +29,7 @@ "postcss" ], "dependencies": { - "@modular-css/processor": "^29.0.2", + "@modular-css/processor": "^29.0.3", "@rollup/pluginutils": "^5.0.2", "es-module-lexer": "^1.0.1", "escape-string-regexp": "^4.0.0", diff --git a/packages/vite/CHANGELOG.md b/packages/vite/CHANGELOG.md index 854f26491..016dbf339 100644 --- a/packages/vite/CHANGELOG.md +++ b/packages/vite/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 30.0.3 + +### Patch Changes + +- Updated dependencies [[`63af4ac3`](https://github.com/tivac/modular-css/commit/63af4ac3ee6380ede5396463fb0305bc14274d84)]: + - @modular-css/css-to-js@29.0.3 + - @modular-css/processor@29.0.3 + ## 30.0.2 ### Patch Changes diff --git a/packages/vite/package.json b/packages/vite/package.json index aa95a96cf..02923c8fc 100644 --- a/packages/vite/package.json +++ b/packages/vite/package.json @@ -1,6 +1,6 @@ { "name": "@modular-css/vite", - "version": "30.0.2", + "version": "30.0.3", "description": "vite support for modular-css", "main": "./vite.js", "repository": { @@ -26,8 +26,8 @@ "postcss" ], "dependencies": { - "@modular-css/css-to-js": "^29.0.2", - "@modular-css/processor": "^29.0.2", + "@modular-css/css-to-js": "^29.0.3", + "@modular-css/processor": "^29.0.3", "@rollup/pluginutils": "^5.0.2" }, "peerDependencies": { diff --git a/packages/webpack/CHANGELOG.md b/packages/webpack/CHANGELOG.md index 8653e3323..5c392c9bb 100644 --- a/packages/webpack/CHANGELOG.md +++ b/packages/webpack/CHANGELOG.md @@ -1,5 +1,24 @@ # Change Log +## 29.0.3 + +### Patch Changes + +- [#983](https://github.com/tivac/modular-css/pull/983) [`63af4ac3`](https://github.com/tivac/modular-css/commit/63af4ac3ee6380ede5396463fb0305bc14274d84) Thanks [@tivac](https://github.com/tivac)! - Ensure that aliased values get exported, fixing #982 + + ``` + @value * as values from "./other-file.css"; + @value local: values.somevalue; + ``` + + Previously that `local` value wouldn't exist in the JS exports, it was mistakenly treated like the `values` external value. + + Also adds semi-colons to variable declarations in the generated JS for vite/rollup/webpack. + +- Updated dependencies [[`63af4ac3`](https://github.com/tivac/modular-css/commit/63af4ac3ee6380ede5396463fb0305bc14274d84)]: + - @modular-css/css-to-js@29.0.3 + - @modular-css/processor@29.0.3 + ## 29.0.2 ### Patch Changes diff --git a/packages/webpack/package.json b/packages/webpack/package.json index 66e57dfa7..53d62c1b2 100644 --- a/packages/webpack/package.json +++ b/packages/webpack/package.json @@ -1,6 +1,6 @@ { "name": "@modular-css/webpack", - "version": "29.0.2", + "version": "29.0.3", "description": "Webpack support for modular-css", "main": "./plugin.js", "loader": "./loader.js", @@ -31,7 +31,7 @@ "webpack": "^5.0.0" }, "dependencies": { - "@modular-css/css-to-js": "^29.0.2", - "@modular-css/processor": "^29.0.2" + "@modular-css/css-to-js": "^29.0.3", + "@modular-css/processor": "^29.0.3" } }