Skip to content

Commit e9e2300

Browse files
authored
chore: bump unrs-resolver to v1.3.3 (#267)
1 parent eb7f23b commit e9e2300

File tree

7 files changed

+161
-84
lines changed

7 files changed

+161
-84
lines changed

.changeset/early-mangos-invite.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"eslint-plugin-import-x": patch
3+
---
4+
5+
chore: bump `unrs-resolver` to v1.3.3

.github/workflows/autofix.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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+
jobs:
15+
autofix:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout Repo
19+
uses: actions/checkout@v4
20+
21+
- name: Setup Node.js LTS
22+
uses: actions/setup-node@v4
23+
with:
24+
node-version: lts/*
25+
cache: yarn
26+
27+
- name: Install dependencies
28+
run: yarn --immutable
29+
30+
- name: Format Codes
31+
run: yarn format
32+
33+
- name: Apply autofix.ci
34+
uses: autofix-ci/action@v1
35+
with:
36+
fail-fast: false

.github/workflows/release.yml

+10
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ on:
55
branches:
66
- master
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
@@ -41,4 +50,5 @@ jobs:
4150
publish: yarn release
4251
env:
4352
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53+
NPM_CONFIG_PROVENANCE: true
4454
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.simple-git-hooks.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { default } from "@1stg/simple-git-hooks";
1+
export { default } from '@1stg/simple-git-hooks'

README.md

+28-3
Original file line numberDiff line numberDiff line change
@@ -589,11 +589,36 @@ In Package Settings / SublimeLinter / User Settings:
589589
I believe this defaults to `3`, so you may not need to alter it depending on your
590590
project folder max depth.
591591

592+
[![Sponsors](https://raw.githubusercontent.com/1stG/static/master/sponsors.svg)](https://github.com/sponsors/JounQin)
593+
594+
## Sponsors
595+
596+
| 1stG | RxTS | UnTS |
597+
| ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------- |
598+
| [![1stG Open Collective sponsors](https://opencollective.com/1stG/organizations.svg)](https://opencollective.com/1stG) | [![RxTS Open Collective sponsors](https://opencollective.com/rxts/organizations.svg)](https://opencollective.com/rxts) | [![UnTS Open Collective sponsors](https://opencollective.com/unts/organizations.svg)](https://opencollective.com/unts) |
599+
600+
## Backers
601+
602+
| 1stG | RxTS | UnTS |
603+
| ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- |
604+
| [![1stG Open Collective backers](https://opencollective.com/1stG/individuals.svg)](https://opencollective.com/1stG) | [![RxTS Open Collective backers](https://opencollective.com/rxts/individuals.svg)](https://opencollective.com/rxts) | [![UnTS Open Collective backers](https://opencollective.com/unts/individuals.svg)](https://opencollective.com/unts) |
605+
606+
## Changelog
607+
608+
Detailed changes for each release are documented in [CHANGELOG.md](./CHANGELOG.md).
609+
610+
## License
611+
612+
[MIT][] © [JounQin][]@[1stG.me][]
613+
592614
[`@typescript-eslint/parser`]: https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser
593615
[`eslint-import-resolver-typescript`]: https://github.com/import-js/eslint-import-resolver-typescript
616+
[`eslint_d`]: https://www.npmjs.com/package/eslint_d
617+
[`eslint-loader`]: https://www.npmjs.com/package/eslint-loader
594618
[`resolve`]: https://www.npmjs.com/package/resolve
595619
[`externals`]: https://webpack.github.io/docs/library-and-externals.html
596-
[Node]: https://www.npmjs.com/package/eslint-import-resolver-node
620+
[1stg.me]: https://www.1stg.me
621+
[jounqin]: https://GitHub.com/JounQin
622+
[mit]: http://opensource.org/licenses/MIT
623+
[node]: https://www.npmjs.com/package/eslint-import-resolver-node
597624
[webpack]: https://www.npmjs.com/package/eslint-import-resolver-webpack
598-
[`eslint_d`]: https://www.npmjs.com/package/eslint_d
599-
[`eslint-loader`]: https://www.npmjs.com/package/eslint-loader

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"scripts": {
3434
"build": "tsc -p src",
3535
"clean": "rimraf lib",
36+
"format": "prettier --write .",
3637
"lint": "run-p 'lint:*'",
3738
"lint:docs": "yarn update:eslint-docs --check",
3839
"lint:es": "eslint . --cache",
@@ -59,7 +60,7 @@
5960
"semver": "^7.7.1",
6061
"stable-hash": "^0.0.5",
6162
"tslib": "^2.8.1",
62-
"unrs-resolver": "^1.3.1"
63+
"unrs-resolver": "^1.3.3"
6364
},
6465
"devDependencies": {
6566
"@1stg/commitlint-config": "^5.0.2",
@@ -94,7 +95,7 @@
9495
"@types/jest": "^29.5.14",
9596
"@types/json-schema": "^7.0.15",
9697
"@types/klaw-sync": "^6.0.5",
97-
"@types/node": "^20.17.27",
98+
"@types/node": "^20.17.28",
9899
"@types/pnpapi": "^0.0.5",
99100
"@typescript-eslint/eslint-plugin": "^8.28.0",
100101
"@typescript-eslint/parser": "^8.28.0",
@@ -105,7 +106,7 @@
105106
"eslint": "^9.23.0",
106107
"eslint-config-prettier": "^10.1.1",
107108
"eslint-doc-generator": "^2.1.2",
108-
"eslint-import-resolver-typescript": "^4.2.4",
109+
"eslint-import-resolver-typescript": "^4.3.1",
109110
"eslint-import-resolver-webpack": "^0.13.10",
110111
"eslint-import-test-order-redirect": "link:./test/fixtures/order-redirect",
111112
"eslint-plugin-eslint-plugin": "^6.4.0",

0 commit comments

Comments
 (0)