From e28cacfbd6743438bd5056eadd12d3b9a8a31e2e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 23 Aug 2023 14:13:13 +0000 Subject: [PATCH] =?UTF-8?q?ci:=20=F0=9F=91=B7=F0=9F=A6=8B=20version=20pack?= =?UTF-8?q?ages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/curly-tomatoes-enjoy.md | 5 ----- .changeset/small-ties-dream.md | 6 ------ fixtures/library/CHANGELOG.md | 8 ++++++++ fixtures/library/package.json | 12 ++++++------ fixtures/monorepo/package.json | 8 ++++---- packages/cli/CHANGELOG.md | 7 +++++++ packages/cli/package.json | 2 +- packages/config/CHANGELOG.md | 8 ++++++++ packages/config/package.json | 2 +- 9 files changed, 35 insertions(+), 23 deletions(-) delete mode 100644 .changeset/curly-tomatoes-enjoy.md delete mode 100644 .changeset/small-ties-dream.md create mode 100644 fixtures/library/CHANGELOG.md create mode 100644 packages/cli/CHANGELOG.md create mode 100644 packages/config/CHANGELOG.md diff --git a/.changeset/curly-tomatoes-enjoy.md b/.changeset/curly-tomatoes-enjoy.md deleted file mode 100644 index 1504887..0000000 --- a/.changeset/curly-tomatoes-enjoy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@eslit/cli": minor ---- - -Now the cli can automatically detect the workspace structure on monorepos and single repositories diff --git a/.changeset/small-ties-dream.md b/.changeset/small-ties-dream.md deleted file mode 100644 index bfae65a..0000000 --- a/.changeset/small-ties-dream.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@eslit/config": minor ---- - -Rewritten most of the package logic, so now it uses a more standard ESLint configuration object structure. All configurations now are separated in scope and presets are created for better convenience when configuring ESLint. -(fixes #3). diff --git a/fixtures/library/CHANGELOG.md b/fixtures/library/CHANGELOG.md new file mode 100644 index 0000000..38b71f6 --- /dev/null +++ b/fixtures/library/CHANGELOG.md @@ -0,0 +1,8 @@ +# @eslit-fixtures/library + +## 1.0.1 + +### Patch Changes + +- Updated dependencies [[`1296891`](https://github.com/LoredDev/ESLit/commit/1296891431117c9a386d36d84c8d402013c3a094)]: + - @eslit/cli@0.1.0 diff --git a/fixtures/library/package.json b/fixtures/library/package.json index 5f3a745..3139d94 100644 --- a/fixtures/library/package.json +++ b/fixtures/library/package.json @@ -1,16 +1,16 @@ { - "name": "@eslit-fixtures/library", - "version": "1.0.0", + "name": "@eslit-fixtures/library", + "version": "1.0.1", "description": "", "main": "index.js", - "private": true, + "private": true, "scripts": { "test": "pnpm cli" }, "dependencies": { - "@eslit/cli": "workspace:*" - }, - "keywords": [], + "@eslit/cli": "workspace:*" + }, + "keywords": [], "author": "", "license": "ISC" } diff --git a/fixtures/monorepo/package.json b/fixtures/monorepo/package.json index aa0b92a..52fb37a 100644 --- a/fixtures/monorepo/package.json +++ b/fixtures/monorepo/package.json @@ -8,8 +8,8 @@ }, "packageManager": "pnpm@8.6.10", "name": "monorepo", - "workspaces": [ - "apps/*", - "packages/*" - ] + "workspaces": [ + "apps/*", + "packages/*" + ] } diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md new file mode 100644 index 0000000..70b8ab4 --- /dev/null +++ b/packages/cli/CHANGELOG.md @@ -0,0 +1,7 @@ +# @eslit/cli + +## 0.1.0 + +### Minor Changes + +- Now the cli can automatically detect the workspace structure on monorepos and single repositories ([#10](https://github.com/LoredDev/ESLit/pull/10)) diff --git a/packages/cli/package.json b/packages/cli/package.json index a205e47..d43e626 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@eslit/cli", - "version": "0.0.0", + "version": "0.1.0", "description": "", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", diff --git a/packages/config/CHANGELOG.md b/packages/config/CHANGELOG.md new file mode 100644 index 0000000..7fee2d7 --- /dev/null +++ b/packages/config/CHANGELOG.md @@ -0,0 +1,8 @@ +# @eslit/config + +## 0.2.0 + +### Minor Changes + +- Rewritten most of the package logic, so now it uses a more standard ESLint configuration object structure. All configurations now are separated in scope and presets are created for better convenience when configuring ESLint. ([#8](https://github.com/LoredDev/ESLit/pull/8)) + (fixes [#3](https://github.com/loreddev/eslit/issues/3)). diff --git a/packages/config/package.json b/packages/config/package.json index a7bee8e..3b2b7f2 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -1,6 +1,6 @@ { "name": "@eslit/config", - "version": "0.1.0", + "version": "0.2.0", "description": "", "main": "index.js", "module": "./src/index.js",