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 b2127fe..5c30a87 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",