From 3763d2b80bd3f33feec9c024fa5a4b18fcd58ce7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 14:55:34 +0100 Subject: [PATCH] :package: RELEASE: new version (next) (#803) Co-authored-by: github-actions[bot] --- .changeset/pre.json | 5 ++++- packages/eslint-config/CHANGELOG.md | 14 ++++++++++++++ packages/eslint-config/package.json | 2 +- packages/vite-plugin-kit-routes/CHANGELOG.md | 14 ++++++++++++-- packages/vite-plugin-kit-routes/package.json | 2 +- packages/vite-plugin-stripper/CHANGELOG.md | 10 ++++++++++ packages/vite-plugin-stripper/package.json | 2 +- packages/vite-plugin-watch-and-run/CHANGELOG.md | 11 +++++++++++ packages/vite-plugin-watch-and-run/package.json | 2 +- 9 files changed, 55 insertions(+), 7 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 65e63230..1c209378 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -12,5 +12,8 @@ "vite-plugin-watch-and-run": "1.7.1", "website": "1.1.2" }, - "changesets": [] + "changesets": [ + "calm-bananas-approve", + "lovely-dragons-greet" + ] } diff --git a/packages/eslint-config/CHANGELOG.md b/packages/eslint-config/CHANGELOG.md index 1f0ad476..01bc469d 100644 --- a/packages/eslint-config/CHANGELOG.md +++ b/packages/eslint-config/CHANGELOG.md @@ -1,5 +1,19 @@ # eslint-config-kitql +## 0.5.0-next.0 + +### Minor Changes + +- [#802](https://github.com/jycouet/kitql/pull/802) + [`4e72b36`](https://github.com/jycouet/kitql/commit/4e72b365ff034db24ec3e78da38fca1b784c696b) + Thanks [@jycouet](https://github.com/jycouet)! - switch .prettierrc.cjs to .prettierrc.mjs (and + use type module) + +### Patch Changes + +- Updated dependencies []: + - @kitql/helpers@0.8.10 + ## 0.4.0 ### Minor Changes diff --git a/packages/eslint-config/package.json b/packages/eslint-config/package.json index bf40d77b..802c20a6 100644 --- a/packages/eslint-config/package.json +++ b/packages/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@kitql/eslint-config", - "version": "0.4.0", + "version": "0.5.0-next.0", "type": "module", "description": "opinionated linting and formatting for projects", "repository": { diff --git a/packages/vite-plugin-kit-routes/CHANGELOG.md b/packages/vite-plugin-kit-routes/CHANGELOG.md index a441cc0d..c5258136 100644 --- a/packages/vite-plugin-kit-routes/CHANGELOG.md +++ b/packages/vite-plugin-kit-routes/CHANGELOG.md @@ -1,11 +1,21 @@ # vite-plugin-kit-routes +## 0.7.1-next.0 + +### Patch Changes + +- Updated dependencies + [[`50da081`](https://github.com/jycouet/kitql/commit/50da081607f041431006a3f250009c8603a98d4d)]: + - vite-plugin-watch-and-run@1.7.2-next.0 + - @kitql/helpers@0.8.10 + - @kitql/internals@0.10.0 + ## 0.7.0 ### Minor Changes -- [#775](https://github.com/jycouet/kitql/pull/775) - Thanks [@ewen-lbh](https://github.com/ewen-lbh)! - add exportConsts config option +- [#775](https://github.com/jycouet/kitql/pull/775) Thanks + [@ewen-lbh](https://github.com/ewen-lbh)! - add exportConsts config option ## 0.7.0-next.1 diff --git a/packages/vite-plugin-kit-routes/package.json b/packages/vite-plugin-kit-routes/package.json index 4e5509d1..31ae2c5f 100644 --- a/packages/vite-plugin-kit-routes/package.json +++ b/packages/vite-plugin-kit-routes/package.json @@ -4,7 +4,7 @@ "keywords": [ "vite" ], - "version": "0.7.0", + "version": "0.7.1-next.0", "license": "MIT", "type": "module", "repository": { diff --git a/packages/vite-plugin-stripper/CHANGELOG.md b/packages/vite-plugin-stripper/CHANGELOG.md index 54a5cdb8..6ccda9a7 100644 --- a/packages/vite-plugin-stripper/CHANGELOG.md +++ b/packages/vite-plugin-stripper/CHANGELOG.md @@ -1,5 +1,15 @@ # vite-plugin-stripper +## 0.6.1-next.0 + +### Patch Changes + +- Updated dependencies + [[`50da081`](https://github.com/jycouet/kitql/commit/50da081607f041431006a3f250009c8603a98d4d)]: + - vite-plugin-watch-and-run@1.7.2-next.0 + - @kitql/helpers@0.8.10 + - @kitql/internals@0.10.0 + ## 0.6.0-next.1 ### Minor Changes diff --git a/packages/vite-plugin-stripper/package.json b/packages/vite-plugin-stripper/package.json index 5bc92a2c..013dcf75 100644 --- a/packages/vite-plugin-stripper/package.json +++ b/packages/vite-plugin-stripper/package.json @@ -4,7 +4,7 @@ "keywords": [ "vite" ], - "version": "0.6.0", + "version": "0.6.1-next.0", "license": "MIT", "type": "module", "repository": { diff --git a/packages/vite-plugin-watch-and-run/CHANGELOG.md b/packages/vite-plugin-watch-and-run/CHANGELOG.md index a61e00fe..a79857f4 100644 --- a/packages/vite-plugin-watch-and-run/CHANGELOG.md +++ b/packages/vite-plugin-watch-and-run/CHANGELOG.md @@ -1,5 +1,16 @@ # @kitql/vite-plugin-watch-and-run +## 1.7.2-next.0 + +### Patch Changes + +- [#801](https://github.com/jycouet/kitql/pull/801) + [`50da081`](https://github.com/jycouet/kitql/commit/50da081607f041431006a3f250009c8603a98d4d) + Thanks [@kerryj89](https://github.com/kerryj89)! - watch support path outside of current directory + +- Updated dependencies []: + - @kitql/helpers@0.8.10 + ## 1.7.1 ### Patch Changes diff --git a/packages/vite-plugin-watch-and-run/package.json b/packages/vite-plugin-watch-and-run/package.json index 5876ea30..d84203cd 100644 --- a/packages/vite-plugin-watch-and-run/package.json +++ b/packages/vite-plugin-watch-and-run/package.json @@ -4,7 +4,7 @@ "keywords": [ "vite" ], - "version": "1.7.1", + "version": "1.7.2-next.0", "license": "MIT", "type": "module", "repository": {