Skip to content

Commit

Permalink
chore: release main (#2)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed May 8, 2024
1 parent 27fcd25 commit 31b5673
Show file tree
Hide file tree
Showing 10 changed files with 86 additions and 47 deletions.
6 changes: 3 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -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"
}
9 changes: 9 additions & 0 deletions packages/compat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
26 changes: 13 additions & 13 deletions packages/compat/jsr.json
Original file line number Diff line number Diff line change
@@ -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"
]
}
}
2 changes: 1 addition & 1 deletion packages/compat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eslint/compat",
"version": "0.0.0",
"version": "1.0.0",
"description": "Compatibility utilities for ESLint",
"type": "module",
"exports": {
Expand Down
21 changes: 21 additions & 0 deletions packages/config-array/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
26 changes: 13 additions & 13 deletions packages/config-array/jsr.json
Original file line number Diff line number Diff line change
@@ -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"
]
}
}
6 changes: 3 additions & 3 deletions packages/config-array/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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/"
Expand All @@ -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"
},
Expand Down
9 changes: 9 additions & 0 deletions packages/object-schema/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
26 changes: 13 additions & 13 deletions packages/object-schema/jsr.json
Original file line number Diff line number Diff line change
@@ -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"
]
}
}
2 changes: 1 addition & 1 deletion packages/object-schema/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit 31b5673

Please sign in to comment.