CI(deps/npm): Bump @revi/{eslint|prettier}-config
versions
Summary: - eslint-config: - `@eslint/js` to `v9.17.0` - `eslint` to `v9.17.0` - `globals` to v15.14.0` - prettier-config: - `prettier` to `v3.4.2` External edition of D863. Signed-off-by: Yongmin Hong <revi@omglol.email> Test Plan: Release the `git tag`. Reviewers: O1 revi & automations, revi Reviewed By: O1 revi & automations, revi Differential Revision: https://issuetracker.revi.xyz/D864
This commit is contained in:
parent
0e25d6e9f9
commit
d4fd2acae2
7 changed files with 813 additions and 709 deletions
|
@ -28,6 +28,16 @@ # `@revi/eslint-config` changelog
|
||||||
- minor: When the plugin is added.
|
- minor: When the plugin is added.
|
||||||
- patch: When the rule is modified (without plugin addition/removal).
|
- patch: When the rule is modified (without plugin addition/removal).
|
||||||
|
|
||||||
|
## v0.0.20
|
||||||
|
|
||||||
|
Date: 2024-12-24 (KST)
|
||||||
|
|
||||||
|
### Update
|
||||||
|
|
||||||
|
- Update `@eslint/js` to `v9.17.0`.
|
||||||
|
- Update `eslint` to `v9.17.0`.
|
||||||
|
- Update `globals` to `v15.14.0`.
|
||||||
|
|
||||||
## v0.0.19
|
## v0.0.19
|
||||||
|
|
||||||
Date: 2024-12-02 (KST)
|
Date: 2024-12-02 (KST)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://json.schemastore.org/package.json",
|
"$schema": "https://json.schemastore.org/package.json",
|
||||||
"name": "@revi/eslint-config",
|
"name": "@revi/eslint-config",
|
||||||
"version": "0.0.19",
|
"version": "0.0.20",
|
||||||
"description": "@revi's shared eslint config",
|
"description": "@revi's shared eslint config",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"eslint"
|
"eslint"
|
||||||
|
@ -30,10 +30,10 @@
|
||||||
"tsc": "tsc eslint.config.js --declaration --allowJs --emitDeclarationOnly --esModuleInterop --outdir types"
|
"tsc": "tsc eslint.config.js --declaration --allowJs --emitDeclarationOnly --esModuleInterop --outdir types"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@eslint/js": "9.16.0",
|
"@eslint/js": "9.17.0",
|
||||||
"eslint": "catalog:",
|
"eslint": "catalog:",
|
||||||
"eslint-config-prettier": "9.1.0",
|
"eslint-config-prettier": "9.1.0",
|
||||||
"globals": "15.12.0"
|
"globals": "15.14.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@revi/prettier-config": "../prettier-config",
|
"@revi/prettier-config": "../prettier-config",
|
||||||
|
@ -43,9 +43,9 @@
|
||||||
"prettier": "catalog:"
|
"prettier": "catalog:"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"eslint": "9.16.0"
|
"eslint": "9.17.0"
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@9.14.2",
|
"packageManager": "pnpm@9.15.1",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public",
|
"access": "public",
|
||||||
"provenance": true
|
"provenance": true
|
||||||
|
|
|
@ -10,6 +10,14 @@ # `@revi/prettier-config` changelog
|
||||||
- minor: When the plugin is added.
|
- minor: When the plugin is added.
|
||||||
- patch: When the rule is modified (without plugin addition/removal).
|
- patch: When the rule is modified (without plugin addition/removal).
|
||||||
|
|
||||||
|
## v0.2.4
|
||||||
|
|
||||||
|
Date: 2024-12-24 (KST)
|
||||||
|
|
||||||
|
### Update
|
||||||
|
|
||||||
|
- Update `prettier` to `v3.4.2`.
|
||||||
|
|
||||||
## v0.2.3
|
## v0.2.3
|
||||||
|
|
||||||
Date: 2024-12-02 (KST)
|
Date: 2024-12-02 (KST)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://json.schemastore.org/package.json",
|
"$schema": "https://json.schemastore.org/package.json",
|
||||||
"name": "@revi/prettier-config",
|
"name": "@revi/prettier-config",
|
||||||
"version": "0.2.3",
|
"version": "0.2.4",
|
||||||
"description": "@revi's prettier configs",
|
"description": "@revi's prettier configs",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"prettier"
|
"prettier"
|
||||||
|
@ -38,9 +38,9 @@
|
||||||
"prettier-plugin-toml": "2.0.1"
|
"prettier-plugin-toml": "2.0.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"prettier": "3.4.1"
|
"prettier": "3.4.2"
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@9.14.2",
|
"packageManager": "pnpm@9.15.1",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public",
|
"access": "public",
|
||||||
"provenance": true
|
"provenance": true
|
||||||
|
|
|
@ -24,10 +24,10 @@
|
||||||
"eslint-config-wikimedia": "0.28.2",
|
"eslint-config-wikimedia": "0.28.2",
|
||||||
"jshint": "2.13.6",
|
"jshint": "2.13.6",
|
||||||
"prettier": "catalog:",
|
"prettier": "catalog:",
|
||||||
"typescript": "5.6.3"
|
"typescript": "5.7.2"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"renovate": "39.26.3"
|
"renovate": "39.80.0"
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@9.14.2"
|
"packageManager": "pnpm@9.15.1"
|
||||||
}
|
}
|
||||||
|
|
1478
pnpm-lock.yaml
1478
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
@ -4,5 +4,5 @@ packages:
|
||||||
- './npm/prettier-config/'
|
- './npm/prettier-config/'
|
||||||
|
|
||||||
catalog:
|
catalog:
|
||||||
eslint: 9.16.0
|
eslint: 9.17.0
|
||||||
prettier: 3.4.1
|
prettier: 3.4.2
|
||||||
|
|
Loading…
Reference in a new issue