diff --git a/.changeset/breaking-enabled-opt-in.md b/.changeset/breaking-enabled-opt-in.md deleted file mode 100644 index 9231d912..00000000 --- a/.changeset/breaking-enabled-opt-in.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'@css-modules-kit/core': major -'@css-modules-kit/ts-plugin': major -'@css-modules-kit/codegen': major ---- - -feat(core, ts-plugin, codegen)!: require `cmkOptions.enabled: true` to activate - -ts-plugin and codegen are now only enabled when `cmkOptions.enabled` is explicitly set to `true` in tsconfig.json. -Previously they worked even without the option. See #289 for background. diff --git a/.changeset/bundle-ts-plugin-deps-for-vscode.md b/.changeset/bundle-ts-plugin-deps-for-vscode.md deleted file mode 100644 index a2f27e71..00000000 --- a/.changeset/bundle-ts-plugin-deps-for-vscode.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'css-modules-kit-vscode': patch ---- - -chore(vscode): bundle ts-plugin dependencies instead of installing at publish time diff --git a/.changeset/cute-files-pump.md b/.changeset/cute-files-pump.md deleted file mode 100644 index e7570cd0..00000000 --- a/.changeset/cute-files-pump.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@css-modules-kit/core': minor ---- - -feat(core): support `${configDir}` in tsconfig options diff --git a/.changeset/drop-node-20.md b/.changeset/drop-node-20.md deleted file mode 100644 index 22b495c1..00000000 --- a/.changeset/drop-node-20.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -'@css-modules-kit/codegen': major -'@css-modules-kit/core': major -'@css-modules-kit/eslint-plugin': major -'@css-modules-kit/stylelint-plugin': major -'@css-modules-kit/ts-plugin': major ---- - -Drop Node.js 20 support and require Node.js >=22.12.0. diff --git a/.changeset/exclude-reexport-goto-def.md b/.changeset/exclude-reexport-goto-def.md deleted file mode 100644 index 4a1d9bda..00000000 --- a/.changeset/exclude-reexport-goto-def.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@css-modules-kit/ts-plugin': patch ---- - -fix(ts-plugin): exclude re-exported `@value ... from '...'` tokens from Go to Definition results diff --git a/.changeset/grumpy-waves-teach.md b/.changeset/grumpy-waves-teach.md deleted file mode 100644 index b462da9c..00000000 --- a/.changeset/grumpy-waves-teach.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@css-modules-kit/codegen': patch -'@css-modules-kit/core': patch ---- - -fix(core, codegen): support TypeScript v6 diff --git a/.changeset/update-core-deps.md b/.changeset/update-core-deps.md deleted file mode 100644 index 791927a3..00000000 --- a/.changeset/update-core-deps.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@css-modules-kit/core': patch ---- - -deps(core): update postcss and postcss-selector-parser diff --git a/packages/codegen/CHANGELOG.md b/packages/codegen/CHANGELOG.md index 62586424..d93a22bc 100644 --- a/packages/codegen/CHANGELOG.md +++ b/packages/codegen/CHANGELOG.md @@ -1,5 +1,23 @@ # @css-modules-kit/codegen +## 1.0.0 + +### Major Changes + +- [#357](https://github.com/mizdra/css-modules-kit/pull/357) [`cc5f4c8`](https://github.com/mizdra/css-modules-kit/commit/cc5f4c8bd2c0cf49d582852150357669c1d9ea6b) - feat(core, ts-plugin, codegen)!: require `cmkOptions.enabled: true` to activate + + ts-plugin and codegen are now only enabled when `cmkOptions.enabled` is explicitly set to `true` in tsconfig.json. + Previously they worked even without the option. See [#289](https://github.com/mizdra/css-modules-kit/issues/289) for background. + +- [#362](https://github.com/mizdra/css-modules-kit/pull/362) [`e1f2983`](https://github.com/mizdra/css-modules-kit/commit/e1f2983c5040159ac97ba34f26c8b26f72d2f4ae) - Drop Node.js 20 support and require Node.js >=22.12.0. + +### Patch Changes + +- [#351](https://github.com/mizdra/css-modules-kit/pull/351) [`0f570c1`](https://github.com/mizdra/css-modules-kit/commit/0f570c17f698c7dd6239931ffcf6ae61ff40e867) - fix(core, codegen): support TypeScript v6 + +- Updated dependencies [[`cc5f4c8`](https://github.com/mizdra/css-modules-kit/commit/cc5f4c8bd2c0cf49d582852150357669c1d9ea6b), [`d51cf0f`](https://github.com/mizdra/css-modules-kit/commit/d51cf0fdcb7f8f9677cf40fc3e8f621a6e16b501), [`e1f2983`](https://github.com/mizdra/css-modules-kit/commit/e1f2983c5040159ac97ba34f26c8b26f72d2f4ae), [`0f570c1`](https://github.com/mizdra/css-modules-kit/commit/0f570c17f698c7dd6239931ffcf6ae61ff40e867), [`f615cce`](https://github.com/mizdra/css-modules-kit/commit/f615cce4dc35f5b4c63215d57f98c05e13b4db47)]: + - @css-modules-kit/core@1.0.0 + ## 0.10.0 ### Patch Changes diff --git a/packages/codegen/package.json b/packages/codegen/package.json index ba7d08e4..f22fe39f 100644 --- a/packages/codegen/package.json +++ b/packages/codegen/package.json @@ -1,6 +1,6 @@ { "name": "@css-modules-kit/codegen", - "version": "0.10.0", + "version": "1.0.0", "private": false, "description": "A tool for generating `*.d.ts` files for `*.module.css`.", "keywords": [ diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 45099ef2..ee84335a 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,26 @@ # @css-modules-kit/core +## 1.0.0 + +### Major Changes + +- [#357](https://github.com/mizdra/css-modules-kit/pull/357) [`cc5f4c8`](https://github.com/mizdra/css-modules-kit/commit/cc5f4c8bd2c0cf49d582852150357669c1d9ea6b) - feat(core, ts-plugin, codegen)!: require `cmkOptions.enabled: true` to activate + + ts-plugin and codegen are now only enabled when `cmkOptions.enabled` is explicitly set to `true` in tsconfig.json. + Previously they worked even without the option. See [#289](https://github.com/mizdra/css-modules-kit/issues/289) for background. + +- [#362](https://github.com/mizdra/css-modules-kit/pull/362) [`e1f2983`](https://github.com/mizdra/css-modules-kit/commit/e1f2983c5040159ac97ba34f26c8b26f72d2f4ae) - Drop Node.js 20 support and require Node.js >=22.12.0. + +### Minor Changes + +- [#370](https://github.com/mizdra/css-modules-kit/pull/370) [`d51cf0f`](https://github.com/mizdra/css-modules-kit/commit/d51cf0fdcb7f8f9677cf40fc3e8f621a6e16b501) Thanks [@InSyncWithFoo](https://github.com/InSyncWithFoo)! - feat(core): support `${configDir}` in tsconfig options + +### Patch Changes + +- [#351](https://github.com/mizdra/css-modules-kit/pull/351) [`0f570c1`](https://github.com/mizdra/css-modules-kit/commit/0f570c17f698c7dd6239931ffcf6ae61ff40e867) - fix(core, codegen): support TypeScript v6 + +- [#350](https://github.com/mizdra/css-modules-kit/pull/350) [`f615cce`](https://github.com/mizdra/css-modules-kit/commit/f615cce4dc35f5b4c63215d57f98c05e13b4db47) - deps(core): update postcss and postcss-selector-parser + ## 0.10.0 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 4922a6dc..ae988322 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@css-modules-kit/core", - "version": "0.10.0", + "version": "1.0.0", "private": false, "description": "The core of css-modules-kit", "keywords": [ diff --git a/packages/eslint-plugin/CHANGELOG.md b/packages/eslint-plugin/CHANGELOG.md index d3ec4a0c..920912c0 100644 --- a/packages/eslint-plugin/CHANGELOG.md +++ b/packages/eslint-plugin/CHANGELOG.md @@ -1,5 +1,16 @@ # @css-modules-kit/eslint-plugin +## 1.0.0 + +### Major Changes + +- [#362](https://github.com/mizdra/css-modules-kit/pull/362) [`e1f2983`](https://github.com/mizdra/css-modules-kit/commit/e1f2983c5040159ac97ba34f26c8b26f72d2f4ae) - Drop Node.js 20 support and require Node.js >=22.12.0. + +### Patch Changes + +- Updated dependencies [[`cc5f4c8`](https://github.com/mizdra/css-modules-kit/commit/cc5f4c8bd2c0cf49d582852150357669c1d9ea6b), [`d51cf0f`](https://github.com/mizdra/css-modules-kit/commit/d51cf0fdcb7f8f9677cf40fc3e8f621a6e16b501), [`e1f2983`](https://github.com/mizdra/css-modules-kit/commit/e1f2983c5040159ac97ba34f26c8b26f72d2f4ae), [`0f570c1`](https://github.com/mizdra/css-modules-kit/commit/0f570c17f698c7dd6239931ffcf6ae61ff40e867), [`f615cce`](https://github.com/mizdra/css-modules-kit/commit/f615cce4dc35f5b4c63215d57f98c05e13b4db47)]: + - @css-modules-kit/core@1.0.0 + ## 0.10.0 ### Patch Changes diff --git a/packages/eslint-plugin/package.json b/packages/eslint-plugin/package.json index 31c4e099..4c65426e 100644 --- a/packages/eslint-plugin/package.json +++ b/packages/eslint-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@css-modules-kit/eslint-plugin", - "version": "0.10.0", + "version": "1.0.0", "private": false, "description": "A eslint plugin for CSS Modules", "keywords": [ diff --git a/packages/stylelint-plugin/CHANGELOG.md b/packages/stylelint-plugin/CHANGELOG.md index 8ce5a6a2..c2f1d17f 100644 --- a/packages/stylelint-plugin/CHANGELOG.md +++ b/packages/stylelint-plugin/CHANGELOG.md @@ -1,5 +1,16 @@ # @css-modules-kit/stylelint-plugin +## 1.0.0 + +### Major Changes + +- [#362](https://github.com/mizdra/css-modules-kit/pull/362) [`e1f2983`](https://github.com/mizdra/css-modules-kit/commit/e1f2983c5040159ac97ba34f26c8b26f72d2f4ae) - Drop Node.js 20 support and require Node.js >=22.12.0. + +### Patch Changes + +- Updated dependencies [[`cc5f4c8`](https://github.com/mizdra/css-modules-kit/commit/cc5f4c8bd2c0cf49d582852150357669c1d9ea6b), [`d51cf0f`](https://github.com/mizdra/css-modules-kit/commit/d51cf0fdcb7f8f9677cf40fc3e8f621a6e16b501), [`e1f2983`](https://github.com/mizdra/css-modules-kit/commit/e1f2983c5040159ac97ba34f26c8b26f72d2f4ae), [`0f570c1`](https://github.com/mizdra/css-modules-kit/commit/0f570c17f698c7dd6239931ffcf6ae61ff40e867), [`f615cce`](https://github.com/mizdra/css-modules-kit/commit/f615cce4dc35f5b4c63215d57f98c05e13b4db47)]: + - @css-modules-kit/core@1.0.0 + ## 0.10.0 ### Minor Changes diff --git a/packages/stylelint-plugin/package.json b/packages/stylelint-plugin/package.json index 865b3611..a9b9645c 100644 --- a/packages/stylelint-plugin/package.json +++ b/packages/stylelint-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@css-modules-kit/stylelint-plugin", - "version": "0.10.0", + "version": "1.0.0", "private": false, "description": "A stylelint plugin for CSS Modules", "keywords": [ diff --git a/packages/ts-plugin/CHANGELOG.md b/packages/ts-plugin/CHANGELOG.md index 238e052a..7385bac7 100644 --- a/packages/ts-plugin/CHANGELOG.md +++ b/packages/ts-plugin/CHANGELOG.md @@ -1,5 +1,23 @@ # @css-modules-kit/ts-plugin +## 1.0.0 + +### Major Changes + +- [#357](https://github.com/mizdra/css-modules-kit/pull/357) [`cc5f4c8`](https://github.com/mizdra/css-modules-kit/commit/cc5f4c8bd2c0cf49d582852150357669c1d9ea6b) - feat(core, ts-plugin, codegen)!: require `cmkOptions.enabled: true` to activate + + ts-plugin and codegen are now only enabled when `cmkOptions.enabled` is explicitly set to `true` in tsconfig.json. + Previously they worked even without the option. See [#289](https://github.com/mizdra/css-modules-kit/issues/289) for background. + +- [#362](https://github.com/mizdra/css-modules-kit/pull/362) [`e1f2983`](https://github.com/mizdra/css-modules-kit/commit/e1f2983c5040159ac97ba34f26c8b26f72d2f4ae) - Drop Node.js 20 support and require Node.js >=22.12.0. + +### Patch Changes + +- [#364](https://github.com/mizdra/css-modules-kit/pull/364) [`ea5dfc9`](https://github.com/mizdra/css-modules-kit/commit/ea5dfc9d3c80d86cb9b974b9cc87640f4883bb8f) - fix(ts-plugin): exclude re-exported `@value ... from '...'` tokens from Go to Definition results + +- Updated dependencies [[`cc5f4c8`](https://github.com/mizdra/css-modules-kit/commit/cc5f4c8bd2c0cf49d582852150357669c1d9ea6b), [`d51cf0f`](https://github.com/mizdra/css-modules-kit/commit/d51cf0fdcb7f8f9677cf40fc3e8f621a6e16b501), [`e1f2983`](https://github.com/mizdra/css-modules-kit/commit/e1f2983c5040159ac97ba34f26c8b26f72d2f4ae), [`0f570c1`](https://github.com/mizdra/css-modules-kit/commit/0f570c17f698c7dd6239931ffcf6ae61ff40e867), [`f615cce`](https://github.com/mizdra/css-modules-kit/commit/f615cce4dc35f5b4c63215d57f98c05e13b4db47)]: + - @css-modules-kit/core@1.0.0 + ## 0.10.0 ### Patch Changes diff --git a/packages/ts-plugin/package.json b/packages/ts-plugin/package.json index f60d2bf6..72de925a 100644 --- a/packages/ts-plugin/package.json +++ b/packages/ts-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@css-modules-kit/ts-plugin", - "version": "0.10.0", + "version": "1.0.0", "private": false, "description": "A TypeScript Language Service Plugin for CSS Modules", "keywords": [ diff --git a/packages/vscode/CHANGELOG.md b/packages/vscode/CHANGELOG.md index 81caf87b..ac175470 100644 --- a/packages/vscode/CHANGELOG.md +++ b/packages/vscode/CHANGELOG.md @@ -1,5 +1,14 @@ # css-modules-kit-vscode +## 1.0.0 + +### Patch Changes + +- [#349](https://github.com/mizdra/css-modules-kit/pull/349) [`7b1256e`](https://github.com/mizdra/css-modules-kit/commit/7b1256e7b9b7d3c323a34096d4de04f8075c7ddf) - chore(vscode): bundle ts-plugin dependencies instead of installing at publish time + +- Updated dependencies [[`cc5f4c8`](https://github.com/mizdra/css-modules-kit/commit/cc5f4c8bd2c0cf49d582852150357669c1d9ea6b), [`e1f2983`](https://github.com/mizdra/css-modules-kit/commit/e1f2983c5040159ac97ba34f26c8b26f72d2f4ae), [`ea5dfc9`](https://github.com/mizdra/css-modules-kit/commit/ea5dfc9d3c80d86cb9b974b9cc87640f4883bb8f)]: + - @css-modules-kit/ts-plugin@1.0.0 + ## 0.10.0 ### Patch Changes diff --git a/packages/vscode/package.json b/packages/vscode/package.json index 3e8632ce..ff9229f2 100644 --- a/packages/vscode/package.json +++ b/packages/vscode/package.json @@ -1,7 +1,7 @@ { "name": "css-modules-kit-vscode", "displayName": "CSS Modules Kit", - "version": "0.10.0", + "version": "1.0.0", "private": true, "description": "The VS Code extension for CSS Modules", "categories": [