Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: un-ts/eslint-plugin-import-x
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.8.0
Choose a base ref
...
head repository: un-ts/eslint-plugin-import-x
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.8.1
Choose a head ref
  • 2 commits
  • 4 files changed
  • 2 contributors

Commits on Mar 18, 2025

  1. chore: bump rspack-resolver to v1.2.0 (#251)

    JounQin authored Mar 18, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    henryiii Henry Schreiner
    Copy the full SHA
    af5de32 View commit details
  2. chore: release eslint-plugin-import-x (#252)

    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    github-actions[bot] authored Mar 18, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    henryiii Henry Schreiner
    Copy the full SHA
    00d486c View commit details
Showing with 152 additions and 131 deletions.
  1. +30 −0 .github/workflows/pkg-pr-new.yml
  2. +6 −0 CHANGELOG.md
  3. +5 −5 package.json
  4. +111 −126 yarn.lock
30 changes: 30 additions & 0 deletions .github/workflows/pkg-pr-new.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Publish Any Commit
on:
- push
- pull_request

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
publish:
runs-on: ubuntu-latest

steps:
- name: Checkout Repo
uses: actions/checkout@v4

- name: Setup Node.js LTS
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: yarn

- name: Install dependencies
run: yarn --immutable

- name: Build
run: yarn build

- run: yarn dlx pkg-pr-new publish
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# eslint-plugin-import-x

## 4.8.1

### Patch Changes

- [#251](https://github.com/un-ts/eslint-plugin-import-x/pull/251) [`af5de32`](https://github.com/un-ts/eslint-plugin-import-x/commit/af5de32c59827ccc7d6c574f76b4ac873c665138) Thanks [@JounQin](https://github.com/JounQin)! - chore: bump `rspack-resolver` to v1.2.0

## 4.8.0

### Minor Changes
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-import-x",
"version": "4.8.0",
"version": "4.8.1",
"type": "commonjs",
"description": "Import with sanity.",
"repository": "git+https://github.com/un-ts/eslint-plugin-import-x",
@@ -55,7 +55,7 @@
"eslint-import-resolver-node": "^0.3.9",
"get-tsconfig": "^4.10.0",
"picomatch": "^4.0.2",
"rspack-resolver": "^1.1.0",
"rspack-resolver": "^1.2.1",
"semver": "^7.7.1",
"stable-hash": "^0.0.5",
"tslib": "^2.8.1"
@@ -82,7 +82,7 @@
"@commitlint/cli": "^19.8.0",
"@eslint/import-test-order-redirect-scoped": "link:./test/fixtures/order-redirect-scoped",
"@swc-node/jest": "^1.8.13",
"@swc/core": "^1.11.9",
"@swc/core": "^1.11.11",
"@swc/helpers": "^0.5.15",
"@test-scope/some-module": "link:./test/fixtures/symlinked-module",
"@total-typescript/ts-reset": "^0.6.1",
@@ -103,8 +103,8 @@
"cross-env": "^7.0.3",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-doc-generator": "^2.1.1",
"eslint-import-resolver-typescript": "^3.9.0",
"eslint-doc-generator": "^2.1.2",
"eslint-import-resolver-typescript": "^4.2.1",
"eslint-import-resolver-webpack": "^0.13.10",
"eslint-import-test-order-redirect": "link:./test/fixtures/order-redirect",
"eslint-plugin-eslint-plugin": "^6.4.0",
Loading