Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release main #2

Merged
merged 1 commit into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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