Skip to content

Commit 83c36d4

Browse files
committed
Merge branch 'main' into missing-dependencies
2 parents a9b4905 + 2eb53bb commit 83c36d4

File tree

11 files changed

+1205
-685
lines changed

11 files changed

+1205
-685
lines changed

.github/workflows/autofix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout Repo
19-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2020

2121
- name: Setup Node.js LTS
2222
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ${{ matrix.os }}
2626
steps:
2727
- name: Checkout Repo
28-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2929

3030
- name: Setup Node.js ${{ matrix.node }}
3131
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Checkout Repo
17-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1818

1919
- name: Setup Node.js LTS
2020
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0

.github/workflows/pkg-size.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1818

1919
- name: Package Size Report
2020
uses: pkg-size/action@a637fb0897b6f14f18e776d8c3dbccb34a1ad27b # v1.1.1

.github/workflows/release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout Repo
23-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2424
with:
2525
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
2626
fetch-depth: 0
@@ -31,6 +31,9 @@ jobs:
3131
node-version: lts/*
3232
cache: yarn
3333

34+
- name: Upgrade npm
35+
run: npm install -g npm@latest
36+
3437
- name: Install Dependencies
3538
run: yarn --immutable
3639

@@ -46,5 +49,3 @@ jobs:
4649
publish: yarn release
4750
env:
4851
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49-
NPM_CONFIG_PROVENANCE: true
50-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/size-limit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
size-limit:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1717

1818
- name: Setup Node.js LTS
1919
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0

.github/workflows/vercel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
deploy:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1818

1919
- name: Check Branch
2020
id: branch

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 0.2.0
4+
5+
### Minor Changes
6+
7+
- [#27](https://github.com/un-ts/eslint-import-context/pull/27) [`8efd302`](https://github.com/un-ts/eslint-import-context/commit/8efd3023e615878cf817b8ebc7fd0f407164ebb7) Thanks [@JounQin](https://github.com/JounQin)! - chore(deps): migrate unrs-resolver to new oxc-resolver
8+
39
## 0.1.9
410

511
### Patch Changes

package.json

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-import-context",
3-
"version": "0.1.9",
3+
"version": "0.2.0",
44
"type": "commonjs",
55
"description": "Provide context info for eslint-plugin-import-x, so no extra arguments need to be added.",
66
"repository": "git+https://github.com/un-ts/eslint-import-context.git",
@@ -43,10 +43,10 @@
4343
"version": "changeset version && yarn --no-immutable"
4444
},
4545
"peerDependencies": {
46-
"unrs-resolver": "^1.0.0"
46+
"oxc-resolver": "^11.0.0"
4747
},
4848
"peerDependenciesMeta": {
49-
"unrs-resolver": {
49+
"oxc-resolver": {
5050
"optional": true
5151
}
5252
},
@@ -58,46 +58,47 @@
5858
},
5959
"devDependencies": {
6060
"@1stg/browserslist-config": "^2.1.4",
61-
"@1stg/common-config": "^14.2.0",
61+
"@1stg/common-config": "^14.3.0",
6262
"@1stg/postcss-config": "^6.1.0",
6363
"@1stg/stylelint-config": "^6.1.0",
6464
"@changesets/changelog-github": "^0.5.1",
65-
"@changesets/cli": "^2.29.5",
65+
"@changesets/cli": "^2.29.6",
6666
"@commitlint/cli": "^19.8.1",
67-
"@eslint-react/eslint-plugin": "^1.52.2",
67+
"@eslint-react/eslint-plugin": "^1.52.6",
6868
"@mdx-js/rollup": "^3.1.0",
69-
"@shikijs/rehype": "^3.7.0",
69+
"@shikijs/rehype": "^3.9.2",
7070
"@types/mdx": "^2.0.13",
71-
"@types/node": "^22.15.33",
72-
"@types/react": "^19.1.8",
73-
"@types/react-dom": "^19.1.6",
74-
"@types/web": "^0.0.243",
71+
"@types/node": "^24.3.0",
72+
"@types/react": "^19.1.10",
73+
"@types/react-dom": "^19.1.7",
74+
"@types/web": "^0.0.262",
7575
"@vercel/analytics": "^1.5.0",
76-
"@vitejs/plugin-react-swc": "^3.10.2",
76+
"@vitejs/plugin-react-swc": "^4.0.1",
7777
"@vitest/coverage-v8": "^3.2.4",
78-
"@vitest/eslint-plugin": "^1.2.7",
78+
"@vitest/eslint-plugin": "^1.3.4",
7979
"clean-pkg-json": "^1.3.0",
80-
"eslint": "^9.29.0",
80+
"eslint": "^9.33.0",
8181
"eslint-import-context": "link:.",
8282
"eslint-plugin-react-hooks": "^5.2.0",
8383
"github-markdown-css": "^5.8.1",
8484
"nano-staged": "^0.8.0",
8585
"npm-run-all2": "^8.0.4",
86+
"oxc-resolver": "^11.6.1",
8687
"premove": "^4.0.0",
87-
"prettier": "^3.6.1",
88-
"react": "^19.1.0",
89-
"react-dom": "^19.1.0",
90-
"react-router-dom": "^7.6.2",
88+
"prettier": "^3.6.2",
89+
"react": "^19.1.1",
90+
"react-dom": "^19.1.1",
91+
"react-router-dom": "^7.8.1",
9192
"rehype-slug": "^6.0.0",
9293
"remark-gfm": "^4.0.1",
93-
"simple-git-hooks": "^2.13.0",
94+
"simple-git-hooks": "^2.13.1",
9495
"size-limit": "^11.2.0",
9596
"size-limit-preset-node-lib": "^0.4.0",
96-
"stylelint": "^16.21.0",
97+
"stylelint": "^16.23.1",
9798
"type-coverage": "^2.29.7",
98-
"typescript": "^5.8.3",
99-
"unrs-resolver": "^1.9.2",
100-
"vite": "^7.0.0",
99+
"type-fest": "^4.41.0",
100+
"typescript": "^5.9.2",
101+
"vite": "^7.1.3",
101102
"vitest": "^3.2.4",
102103
"yarn-berry-deduplicate": "^6.1.3"
103104
},

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { TSESLint } from '@typescript-eslint/utils'
2+
import type { NapiResolveOptions } from 'oxc-resolver'
23
import type { KebabCase, LiteralUnion } from 'type-fest'
3-
import type { NapiResolveOptions } from 'unrs-resolver'
44

55
import type { PluginName } from './utils.js'
66

0 commit comments

Comments
 (0)