diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7114c6f..1436ea8 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - "packages/object-schema": "2.0.3", - "packages/config-array": "0.13.0", - "packages/compat": "0.0.0" + "packages/object-schema": "2.1.0", + "packages/config-array": "0.14.0", + "packages/compat": "1.0.0" } diff --git a/packages/compat/CHANGELOG.md b/packages/compat/CHANGELOG.md index e69de29..cc01b17 100644 --- a/packages/compat/CHANGELOG.md +++ b/packages/compat/CHANGELOG.md @@ -0,0 +1,9 @@ +# Changelog + +## 1.0.0 (2024-05-08) + + +### Features + +* @eslint/compat package ([#5](https://github.com/eslint/rewrite/issues/5)) ([e765f07](https://github.com/eslint/rewrite/commit/e765f0764780144565aa51e56a097d1aaac8ddba)) +* sync packages meta ([#12](https://github.com/eslint/rewrite/issues/12)) ([27fcd25](https://github.com/eslint/rewrite/commit/27fcd259dab40e4ac1742b5699b74701a6b3660e)) diff --git a/packages/compat/jsr.json b/packages/compat/jsr.json index 4b7e8e4..6484199 100644 --- a/packages/compat/jsr.json +++ b/packages/compat/jsr.json @@ -1,15 +1,15 @@ { - "name": "@eslint/compat", - "version": "0.0.0", - "exports": "./dist/esm/index.js", - "publish": { - "include": [ - "dist/esm/index.js", - "dist/esm/index.d.ts", - "dist/esm/types.d.ts", - "README.md", - "jsr.json", - "LICENSE" - ] - } + "name": "@eslint/compat", + "version": "1.0.0", + "exports": "./dist/esm/index.js", + "publish": { + "include": [ + "dist/esm/index.js", + "dist/esm/index.d.ts", + "dist/esm/types.d.ts", + "README.md", + "jsr.json", + "LICENSE" + ] + } } diff --git a/packages/compat/package.json b/packages/compat/package.json index af2155f..b3d231c 100644 --- a/packages/compat/package.json +++ b/packages/compat/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/compat", - "version": "0.0.0", + "version": "1.0.0", "description": "Compatibility utilities for ESLint", "type": "module", "exports": { diff --git a/packages/config-array/CHANGELOG.md b/packages/config-array/CHANGELOG.md index 4767e99..2f4732f 100644 --- a/packages/config-array/CHANGELOG.md +++ b/packages/config-array/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [0.14.0](https://github.com/eslint/rewrite/compare/config-array-v0.13.0...config-array-v0.14.0) (2024-05-08) + + +### Features + +* Add config-array package ([4a2274d](https://github.com/eslint/rewrite/commit/4a2274def58d1d41352b33f4e9c197d258fb5a36)) +* Add types to config-array ([#3](https://github.com/eslint/rewrite/issues/3)) ([8b80e81](https://github.com/eslint/rewrite/commit/8b80e81cd0613ef1eccd15eacc0dbfad7a689dbf)) +* sync packages meta ([#12](https://github.com/eslint/rewrite/issues/12)) ([27fcd25](https://github.com/eslint/rewrite/commit/27fcd259dab40e4ac1742b5699b74701a6b3660e)) + + +### Bug Fixes + +* Include package.json ([ce52aaa](https://github.com/eslint/rewrite/commit/ce52aaaec724ecf9dc9826efa680f6851b576357)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @eslint/object-schema bumped from ^2.0.3 to ^2.1.0 + ## [0.13.0](https://github.com/humanwhocodes/config-array/compare/v0.12.3...v0.13.0) (2024-04-17) diff --git a/packages/config-array/jsr.json b/packages/config-array/jsr.json index f97d38f..bff5467 100644 --- a/packages/config-array/jsr.json +++ b/packages/config-array/jsr.json @@ -1,15 +1,15 @@ { - "name": "@eslint/config-array", - "version": "0.12.3", - "exports": "./dist/esm/index.js", - "publish": { - "include": [ - "dist/esm/index.js", - "dist/esm/index.d.ts", - "dist/esm/types.d.ts", - "README.md", - "jsr.json", - "LICENSE" - ] - } + "name": "@eslint/config-array", + "version": "0.14.0", + "exports": "./dist/esm/index.js", + "publish": { + "include": [ + "dist/esm/index.js", + "dist/esm/index.d.ts", + "dist/esm/types.d.ts", + "README.md", + "jsr.json", + "LICENSE" + ] + } } diff --git a/packages/config-array/package.json b/packages/config-array/package.json index b893164..e22d586 100644 --- a/packages/config-array/package.json +++ b/packages/config-array/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/config-array", - "version": "0.12.3", + "version": "0.14.0", "description": "General purpose glob-based configuration matching.", "author": "Nicholas C. Zakas", "type": "module", @@ -36,7 +36,7 @@ }, "homepage": "https://github.com/eslint/rewrite#readme", "scripts": { - "build:dedupe-types": "node ../../tools/dedupe-types.js dist/cjs/index.cjs dist/esm/index.js", + "build:dedupe-types": "node ../../tools/dedupe-types.js dist/cjs/index.cjs dist/esm/index.js", "build": "rollup -c && npm run build:dedupe-types && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json", "pretest": "npm run build", "test": "mocha tests/" @@ -48,7 +48,7 @@ ], "license": "Apache-2.0", "dependencies": { - "@eslint/object-schema": "^2.0.3", + "@eslint/object-schema": "^2.1.0", "debug": "^4.3.1", "minimatch": "^3.0.5" }, diff --git a/packages/object-schema/CHANGELOG.md b/packages/object-schema/CHANGELOG.md index 3b0b6a3..d9792a6 100644 --- a/packages/object-schema/CHANGELOG.md +++ b/packages/object-schema/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [2.1.0](https://github.com/eslint/rewrite/compare/object-schema-v2.0.3...object-schema-v2.1.0) (2024-05-08) + + +### Features + +* Add types to config-array ([#3](https://github.com/eslint/rewrite/issues/3)) ([8b80e81](https://github.com/eslint/rewrite/commit/8b80e81cd0613ef1eccd15eacc0dbfad7a689dbf)) +* sync packages meta ([#12](https://github.com/eslint/rewrite/issues/12)) ([27fcd25](https://github.com/eslint/rewrite/commit/27fcd259dab40e4ac1742b5699b74701a6b3660e)) +* tsc + ESM for object-schema ([b865844](https://github.com/eslint/rewrite/commit/b8658440cc6e37e5392f32a33bdefb012bfd4290)) + ## [2.0.3](https://github.com/humanwhocodes/object-schema/compare/v2.0.2...v2.0.3) (2024-04-01) diff --git a/packages/object-schema/jsr.json b/packages/object-schema/jsr.json index 334947c..fb04578 100644 --- a/packages/object-schema/jsr.json +++ b/packages/object-schema/jsr.json @@ -1,15 +1,15 @@ { - "name": "@eslint/object-schema", - "version": "2.0.3", - "exports": "./dist/esm/index.js", - "publish": { - "include": [ - "dist/esm/index.js", - "dist/esm/index.d.ts", - "dist/esm/types.d.ts", - "README.md", - "jsr.json", - "LICENSE" - ] - } + "name": "@eslint/object-schema", + "version": "2.1.0", + "exports": "./dist/esm/index.js", + "publish": { + "include": [ + "dist/esm/index.js", + "dist/esm/index.d.ts", + "dist/esm/types.d.ts", + "README.md", + "jsr.json", + "LICENSE" + ] + } } diff --git a/packages/object-schema/package.json b/packages/object-schema/package.json index 007c8fd..05c555e 100644 --- a/packages/object-schema/package.json +++ b/packages/object-schema/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/object-schema", - "version": "2.0.3", + "version": "2.1.0", "description": "An object schema merger/validator", "type": "module", "exports": {