Skip to content

Commit 9f26a96

Browse files
authored
chore: update dev deps (#568)
1 parent a7c0d33 commit 9f26a96

File tree

3 files changed

+24
-17
lines changed

3 files changed

+24
-17
lines changed

Diff for: explorer-v2/src/lib/RulesSettings.svelte

+6-1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
})
5959
);
6060
}}
61+
aria-label="expand/collapse"
6162
>
6263
<svg xmlns="http://www.w3.org/2000/svg" height="10" viewBox="0 0 10 10" width="10">
6364
<path d="M2.5 10l5-5-5-5v10z" fill="#ddd" />
@@ -88,7 +89,11 @@
8889
/>
8990
{rule.ruleId}
9091
</label>
91-
<a href={rule.url} target="_blank" rel="noopener noreferrer"
92+
<a
93+
href={rule.url}
94+
target="_blank"
95+
rel="noopener noreferrer"
96+
aria-label="open in new tab"
9297
><svg
9398
xmlns="http://www.w3.org/2000/svg"
9499
aria-hidden="true"

Diff for: package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -63,17 +63,17 @@
6363
},
6464
"devDependencies": {
6565
"@changesets/changelog-github": "^0.5.0",
66-
"@changesets/cli": "^2.27.8",
66+
"@changesets/cli": "^2.27.9",
6767
"@changesets/get-release-plan": "^4.0.4",
6868
"@ota-meshi/eslint-plugin": "^0.15.3",
6969
"@types/benchmark": "^2.1.5",
70-
"@types/chai": "^4.3.19",
70+
"@types/chai": "^4.3.20",
7171
"@types/eslint": "^9.6.1",
7272
"@types/eslint-scope": "^3.7.7",
7373
"@types/eslint-visitor-keys": "^3.3.0",
74-
"@types/estree": "^1.0.5",
75-
"@types/mocha": "^10.0.8",
76-
"@types/node": "^20.16.5",
74+
"@types/estree": "^1.0.6",
75+
"@types/mocha": "^10.0.9",
76+
"@types/node": "^20.16.11",
7777
"@types/semver": "^7.5.8",
7878
"@typescript-eslint/eslint-plugin": "^7.18.0",
7979
"@typescript-eslint/parser": "~7.18.0",
@@ -83,31 +83,31 @@
8383
"env-cmd": "^10.1.0",
8484
"esbuild": "^0.23.1",
8585
"esbuild-register": "^3.6.0",
86-
"eslint": "^8.57.0",
86+
"eslint": "^8.57.1",
8787
"eslint-config-prettier": "^9.1.0",
8888
"eslint-plugin-eslint-comments": "^3.2.0",
89-
"eslint-plugin-json-schema-validator": "^5.1.2",
89+
"eslint-plugin-json-schema-validator": "^5.1.3",
9090
"eslint-plugin-jsonc": "^2.16.0",
91-
"eslint-plugin-n": "^17.10.2",
91+
"eslint-plugin-n": "^17.11.1",
9292
"eslint-plugin-node-dependencies": "^0.12.0",
9393
"eslint-plugin-prettier": "^5.2.1",
9494
"eslint-plugin-regexp": "^2.6.0",
95-
"eslint-plugin-svelte": "^2.43.0",
95+
"eslint-plugin-svelte": "^2.44.1",
9696
"eslint-plugin-yml": "^1.14.0",
9797
"estree-walker": "^3.0.3",
9898
"locate-character": "^3.0.0",
99-
"magic-string": "^0.30.11",
99+
"magic-string": "^0.30.12",
100100
"mocha": "^10.7.3",
101101
"mocha-chai-jest-snapshot": "^1.1.6",
102-
"nyc": "^17.0.0",
102+
"nyc": "^17.1.0",
103103
"prettier": "~3.3.3",
104104
"prettier-plugin-pkg": "^0.18.1",
105-
"prettier-plugin-svelte": "^3.2.6",
105+
"prettier-plugin-svelte": "^3.2.7",
106106
"rimraf": "^6.0.1",
107107
"semver": "^7.6.3",
108-
"svelte": "^5.0.0-next.245",
109-
"svelte2tsx": "^0.7.19",
110-
"typescript": "~5.6.2",
108+
"svelte": "^5.0.0-next.264",
109+
"svelte2tsx": "^0.7.22",
110+
"typescript": "~5.6.3",
111111
"typescript-eslint-parser-for-extra-files": "^0.7.0"
112112
},
113113
"publishConfig": {

Diff for: src/parser/analyze-scope.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,9 @@ export function analyzePropsScope(
185185
}
186186
} else {
187187
for (const spec of node.specifiers) {
188-
addPropReference(spec.local, moduleScope);
188+
if (spec.local.type !== "Literal") {
189+
addPropReference(spec.local, moduleScope);
190+
}
189191
}
190192
}
191193
} else if (node.type === "VariableDeclaration") {

0 commit comments

Comments
 (0)