Skip to content

Commit 50a8a22

Browse files
chore(deps): update all dependencies (#330)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 94b4799 commit 50a8a22

File tree

10 files changed

+1025
-606
lines changed

10 files changed

+1025
-606
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ custom:
1212
- https://opencollective.com/rxts
1313
- https://opencollective.com/unts
1414
- https://patreon.com/1stG
15-
- https://afdian.net/@JounQin
15+
- https://afdian.com/a/JounQin

.github/workflows/autofix.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: autofix.ci # For security reasons, the workflow in which the autofix.ci action is used must be named "autofix.ci".
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
- reopened
8+
- synchronize
9+
10+
concurrency:
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: true
13+
14+
permissions:
15+
contents: write
16+
17+
jobs:
18+
autofix:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout Repo
22+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
23+
24+
- name: Setup Node.js LTS
25+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
26+
with:
27+
node-version: lts/*
28+
cache: yarn
29+
30+
- name: Install dependencies
31+
run: yarn --immutable
32+
33+
- name: Format Codes
34+
run: yarn format
35+
36+
- name: Apply autofix.ci
37+
uses: autofix-ci/action@2891949f3779a1cafafae1523058501de3d4e944 # v1
38+
with:
39+
fail-fast: false

.github/workflows/check.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Check
33
on:
44
push:
55
branches:
6-
- "main"
6+
- main
77
pull_request:
88

99
concurrency:
@@ -18,11 +18,13 @@ jobs:
1818
runs-on: ubuntu-latest
1919

2020
steps:
21-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
21+
- name: Checkout Repo
22+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2223
with:
2324
persist-credentials: false
2425

25-
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
26+
- name: Setup Node.js LTS
27+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
2628
with:
2729
node-version: lts/*
2830
cache: yarn

.github/workflows/pkg-pr-new.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Publish Any Commit
2+
on:
3+
- push
4+
- pull_request
5+
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
9+
10+
permissions:
11+
contents: read
12+
13+
jobs:
14+
publish:
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- name: Checkout Repo
19+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
20+
21+
- name: Setup Node.js LTS
22+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
23+
with:
24+
node-version: lts/*
25+
cache: yarn
26+
27+
- name: Install dependencies
28+
run: yarn --immutable
29+
30+
- name: Publish
31+
run: yarn dlx pkg-pr-new publish --compact

.github/workflows/release.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ on:
55
branches:
66
- main
77

8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: true
11+
12+
permissions:
13+
contents: write
14+
id-token: write
15+
pull-requests: write
16+
817
jobs:
918
release:
1019
name: Release
@@ -17,7 +26,7 @@ jobs:
1726
fetch-depth: 0
1827

1928
- name: Setup Node.js LTS
20-
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
29+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
2130
with:
2231
node-version: lts/*
2332
cache: yarn
@@ -34,4 +43,5 @@ jobs:
3443
publish: yarn release
3544
env:
3645
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
46+
NPM_CONFIG_PROVENANCE: true
3747
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Test
33
on:
44
push:
55
branches:
6-
- "main"
6+
- main
77
pull_request:
88

99
concurrency:
@@ -30,17 +30,20 @@ jobs:
3030
- 18
3131
- 20
3232
- 22
33+
- 24
3334
fail-fast: false
3435

3536
env:
3637
YARN_IGNORE_NODE: 1
3738

3839
steps:
39-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
40+
- name: Checkout Repo
41+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
4042
with:
4143
persist-credentials: false
4244

43-
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4
45+
- name: Setup Node.js ${{ matrix.node }}
46+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
4447
with:
4548
node-version: ${{ matrix.node }}
4649
cache: yarn

.renovaterc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,9 @@
33
"extends": [
44
"github>1stG/configs"
55
],
6-
"ignoreDeps": ["eslint-find-rules"]
6+
"ignoreDeps": [
7+
"eslint-find-rules",
8+
"eslint-plugin-standard",
9+
"yarn"
10+
]
711
}

index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
declare const eslintConfigPrettier: {
2-
rules: Record<string, 0 | "off">;
3-
};
4-
2+
rules: Record<string, 0 | "off">;
3+
};
4+
55
export = eslintConfigPrettier;

package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"packageManager": "yarn@4.8.1",
1414
"bin": "bin/cli.js",
1515
"main": "index.js",
16+
"types": "index.d.ts",
1617
"exports": {
1718
".": {
1819
"types": "./index.d.ts",
@@ -28,7 +29,6 @@
2829
},
2930
"./package.json": "./package.json"
3031
},
31-
"types": "index.d.ts",
3232
"files": [
3333
"bin",
3434
"flat.d.ts",
@@ -46,8 +46,8 @@
4646
"prettier"
4747
],
4848
"scripts": {
49+
"format": "prettier --write .",
4950
"prepare": "patch-package && yarn-berry-deduplicate || exit 0",
50-
"prettier": "prettier --write .",
5151
"release": "clean-pkg-json && changeset publish",
5252
"test": "yarn test:prettier && ESLINT_CONFIG_PRETTIER_NO_DEPRECATED=true yarn test:with-env && ESLINT_USE_FLAT_CONFIG=false yarn test:with-env",
5353
"test:cli-sanity": "node ./bin/cli.js index.js",
@@ -66,41 +66,41 @@
6666
"eslint": ">=7.0.0"
6767
},
6868
"devDependencies": {
69-
"@babel/eslint-parser": "^7.27.0",
70-
"@babel/eslint-plugin": "^7.27.0",
71-
"@babel/plugin-syntax-flow": "^7.26.0",
72-
"@babel/plugin-syntax-jsx": "^7.25.9",
73-
"@babel/plugin-transform-react-jsx": "^7.25.9",
69+
"@babel/eslint-parser": "^7.27.1",
70+
"@babel/eslint-plugin": "^7.27.1",
71+
"@babel/plugin-syntax-flow": "^7.27.1",
72+
"@babel/plugin-syntax-jsx": "^7.27.1",
73+
"@babel/plugin-transform-react-jsx": "^7.27.1",
7474
"@changesets/changelog-github": "^0.5.1",
75-
"@changesets/cli": "^2.28.1",
76-
"@eslint/compat": "^1.2.7",
75+
"@changesets/cli": "^2.29.3",
76+
"@eslint/compat": "^1.2.9",
7777
"@stylistic/eslint-plugin": "^4.2.0",
7878
"@stylistic/eslint-plugin-js": "^4.2.0",
7979
"@stylistic/eslint-plugin-jsx": "^4.2.0",
8080
"@stylistic/eslint-plugin-plus": "^4.2.0",
8181
"@stylistic/eslint-plugin-ts": "^4.2.0",
82-
"@typescript-eslint/eslint-plugin": "^8.28.0",
83-
"@typescript-eslint/parser": "^8.28.0",
82+
"@typescript-eslint/eslint-plugin": "^8.32.0",
83+
"@typescript-eslint/parser": "^8.32.0",
8484
"@unts/patch-package": "^8.1.1",
85-
"clean-pkg-json": "^1.2.1",
86-
"eslint": "^9.23.0",
85+
"clean-pkg-json": "^1.3.0",
86+
"eslint": "^9.26.0",
8787
"eslint-config-google": "^0.14.0",
8888
"eslint-config-prettier": "link:.",
8989
"eslint-find-rules": "^4.2.0",
9090
"eslint-plugin-babel": "^5.3.1",
9191
"eslint-plugin-flowtype": "^8.0.3",
92-
"eslint-plugin-prettier": "^5.2.5",
93-
"eslint-plugin-react": "^7.37.4",
92+
"eslint-plugin-prettier": "^5.4.0",
93+
"eslint-plugin-react": "^7.37.5",
9494
"eslint-plugin-standard": "^5.0.0",
95-
"eslint-plugin-unicorn": "^58.0.0",
96-
"eslint-plugin-vue": "^10.0.0",
97-
"globals": "^16.0.0",
95+
"eslint-plugin-unicorn": "^59.0.1",
96+
"eslint-plugin-vue": "^10.1.0",
97+
"globals": "^16.1.0",
9898
"jest": "^29.7.0",
9999
"prettier": "^3.5.3",
100-
"prettier-plugin-pkg": "^0.18.1",
101-
"typescript": "^5.8.2",
102-
"vue-eslint-parser": "^10.1.1",
103-
"yarn-berry-deduplicate": "^6.1.1"
100+
"prettier-plugin-pkg": "^0.19.0",
101+
"typescript": "^5.8.3",
102+
"vue-eslint-parser": "^10.1.3",
103+
"yarn-berry-deduplicate": "^6.1.3"
104104
},
105105
"eslintIgnore": [
106106
".yarn",

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy