Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/changelogensets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
fetch-depth: 0
- run: corepack enable
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: lts/-1
cache: "pnpm"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- run: corepack enable
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: lts/*
cache: "pnpm"
Expand All @@ -55,7 +55,7 @@ jobs:
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- run: corepack enable
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: lts/*
cache: "pnpm"
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- run: corepack enable
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: lts/-1
cache: "pnpm"
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- run: corepack enable
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: lts/-1
cache: "pnpm"
Expand All @@ -161,7 +161,7 @@ jobs:
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- run: corepack enable
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: current
cache: "pnpm"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fetch-depth: 0

- run: corepack enable
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: lts/-1
registry-url: "https://registry.npmjs.org/"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
fetch-depth: 0
- run: corepack enable
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: current
registry-url: "https://registry.npmjs.org/"
Expand Down
12 changes: 8 additions & 4 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import tseslint from 'typescript-eslint'
import pluginVue from 'eslint-plugin-vue'
import jsdoc from 'eslint-plugin-jsdoc'
import pluginUnicorn from 'eslint-plugin-unicorn'
import importX from 'eslint-plugin-import-x'
import { createTypeScriptImportResolver } from 'eslint-import-resolver-typescript'
import { defineConfig } from 'eslint/config'

export default defineConfig(
Expand Down Expand Up @@ -39,10 +41,11 @@ export default defineConfig(
note: 'note',
},
},
'import-x/resolver': {
typescript: true,
node: true,
},
'import-x/resolver-next': [
createTypeScriptImportResolver({
project: './tsconfig.json'
})
]
},
},
{
Expand All @@ -56,6 +59,7 @@ export default defineConfig(
{
plugins: {
unicorn: pluginUnicorn,
'import-x': importX
},
},
{
Expand Down
24 changes: 13 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,40 +26,42 @@
"changelogen": "0.6.2",
"consola": "^3.4.2",
"devalue": "5.6.4",
"eslint": "9.39.3",
"eslint-plugin-jsdoc": "62.7.0",
"eslint": "9.39.4",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jsdoc": "62.8.0",
"eslint-plugin-unicorn": "^63.0.0",
"eslint-plugin-vue": "^10.8.0",
"execa": "9.6.1",
"globals": "^17.3.0",
"globals": "^17.4.0",
"globby": "16.1.1",
"h3": "1.15.5",
"happy-dom": "^20.7.0",
"happy-dom": "^20.8.4",
"installed-check": "10.0.1",
"jiti": "2.6.1",
"knip": "5.85.0",
"neostandard": "^0.12.2",
"knip": "5.86.0",
"neostandard": "^0.13.0",
"nuxi": "3.34.0",
"ofetch": "1.5.1",
"pathe": "^2.0.3",
"playwright-core": "1.58.2",
"semver": "7.7.4",
"std-env": "3.10.0",
"typescript-eslint": "^8.56.1",
"vitest": "4.0.18",
"typescript-eslint": "^8.57.0",
"vitest": "4.1.0",
"vue": "2.7.16"
},
"resolutions": {
"@nuxt/bridge": "workspace:*",
"@nuxt/bridge-schema": "workspace:*",
"h3": "1.15.5",
"@nuxt/kit": "3.21.2",
"espree": "11.1.1",
"eslint-scope": "9.1.1",
"espree": "11.2.0",
"eslint-scope": "9.1.2",
"eslint-visitor-keys": "5.0.1"
},
"engines": {
"node": "^14.16.0 || ^16.11.0 || >=17.0.0"
},
"packageManager": "pnpm@10.30.2"
"packageManager": "pnpm@10.32.1"
}
8 changes: 4 additions & 4 deletions packages/bridge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"cookie-es": "^2.0.0",
"defu": "^6.1.4",
"destr": "^2.0.5",
"enhanced-resolve": "^5.19.0",
"enhanced-resolve": "^5.20.0",
"esbuild-loader": "^4.4.2",
"escape-string-regexp": "^5.0.0",
"estree-walker": "^3.0.3",
Expand All @@ -54,7 +54,7 @@
"klona": "^2.0.6",
"knitwork": "^1.3.0",
"magic-string": "^0.30.21",
"mlly": "^1.8.0",
"mlly": "^1.8.1",
"mocked-exports": "^0.1.1",
"nitropack": "^2.13.1",
"node-fetch": "^3.3.2",
Expand Down Expand Up @@ -83,7 +83,7 @@
"@types/hash-sum": "^1.0.2",
"@types/webpack": "^4.41.40",
"@vue/compiler-sfc": "^2.7.16",
"@vue/reactivity": "^3.5.28",
"@vue/reactivity": "^3.5.30",
"rollup": "^4.59.0",
"unbuild": "3.6.1",
"vue": "^2.7.16",
Expand All @@ -94,5 +94,5 @@
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"packageManager": "pnpm@10.30.2"
"packageManager": "pnpm@10.32.1"
}
Loading
Loading