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: antfu/eslint-plugin-command
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.2.5
Choose a base ref
...
head repository: antfu/eslint-plugin-command
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.2.6
Choose a head ref
  • 3 commits
  • 5 files changed
  • 2 contributors

Commits on Sep 26, 2024

  1. fix(keep-sorted): unable to find first interface/declare (#29)

    ddosakura authored Sep 26, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    902960c View commit details
  2. chore: update deps

    antfu committed Sep 26, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    antfu Anthony Fu
    Copy the full SHA
    2b1ef3d View commit details
  3. chore: release v0.2.6

    antfu committed Sep 26, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    antfu Anthony Fu
    Copy the full SHA
    574eb00 View commit details
Showing with 675 additions and 750 deletions.
  1. +4 −4 docs/package.json
  2. +13 −13 package.json
  3. +613 −733 pnpm-lock.yaml
  4. +24 −0 src/commands/keep-sorted.test.ts
  5. +21 −0 src/commands/keep-sorted.ts
8 changes: 4 additions & 4 deletions docs/package.json
Original file line number Diff line number Diff line change
@@ -9,13 +9,13 @@
"devDependencies": {
"@iconify-json/ph": "^1.2.0",
"@iconify-json/svg-spinners": "^1.2.0",
"@unocss/reset": "^0.62.3",
"@vueuse/core": "^11.0.3",
"@unocss/reset": "^0.62.4",
"@vueuse/core": "^11.1.0",
"floating-vue": "^5.2.2",
"fuse.js": "^7.0.0",
"unocss": "^0.62.3",
"unocss": "^0.62.4",
"unplugin-vue-components": "^0.27.4",
"vitepress": "^1.3.4",
"vue": "^3.5.4"
"vue": "^3.5.9"
}
}
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "eslint-plugin-command",
"type": "module",
"version": "0.2.5",
"packageManager": "pnpm@9.10.0",
"version": "0.2.6",
"packageManager": "pnpm@9.11.0",
"description": "Comment-as-command for one-off codemod with ESLint",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
@@ -83,34 +83,34 @@
"@es-joy/jsdoccomment": "^0.48.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.6.0",
"@antfu/eslint-config": "^3.7.2",
"@antfu/ni": "^0.23.0",
"@antfu/utils": "^0.7.10",
"@eslint/config-inspector": "^0.5.4",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^22.5.4",
"@types/node": "^22.7.2",
"@types/semver": "^7.5.8",
"@typescript-eslint/rule-tester": "^8.5.0",
"@typescript-eslint/typescript-estree": "^8.5.0",
"@typescript-eslint/utils": "^8.5.0",
"@vitest/ui": "^2.1.0",
"@typescript-eslint/rule-tester": "^8.7.0",
"@typescript-eslint/typescript-estree": "^8.7.0",
"@typescript-eslint/utils": "^8.7.0",
"@vitest/ui": "^2.1.1",
"bumpp": "^9.5.2",
"eslint": "^9.10.0",
"eslint": "^9.11.1",
"eslint-define-config": "^2.1.0",
"eslint-vitest-rule-tester": "^0.6.1",
"esno": "^4.7.0",
"fast-glob": "^3.3.2",
"lint-staged": "^15.2.10",
"lodash.merge": "4.6.2",
"pnpm": "^9.10.0",
"pnpm": "^9.11.0",
"rimraf": "^6.0.1",
"semver": "^7.6.3",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.2.4",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"unbuild": "^2.0.0",
"vite": "^5.4.5",
"vitest": "^2.1.0"
"vite": "^5.4.8",
"vitest": "^2.1.1"
},
"resolutions": {
"eslint-plugin-command": "workspace:*"
Loading