Skip to content

Commit 5c415f8

Browse files
committed
chore: fix tests
1 parent 5cb0fad commit 5c415f8

File tree

4 files changed

+18
-69
lines changed

4 files changed

+18
-69
lines changed

examples/solid/start/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
},
99
"dependencies": {
1010
"@solidjs/start": "^1.1.0",
11-
"@tanstack/solid-devtools": "^0.2.2",
12-
"solid-js": "^1.9.5",
11+
"@tanstack/solid-devtools": "^0.3.0",
12+
"solid-js": "^1.9.7",
1313
"vinxi": "^0.5.7"
1414
},
1515
"engines": {

knip.json

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
{
22
"$schema": "https://unpkg.com/knip@5/schema.json",
3-
"ignoreDependencies": ["@size-limit/preset-small-lib", "@faker-js/faker"],
4-
"ignoreWorkspaces": ["examples/**"],
3+
"ignoreDependencies": [
4+
"@size-limit/preset-small-lib",
5+
"@faker-js/faker"
6+
],
7+
"ignoreWorkspaces": [
8+
"examples/**"
9+
],
510
"workspaces": {
6-
"packages/react-devtools": {
7-
"ignore": []
11+
"packages/solid-devtools": {
12+
"ignore": [
13+
"**/core.tsx"
14+
]
815
}
916
}
10-
}
17+
}

packages/solid-devtools/src/core.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export default function SolidDevtoolsCore({
108108
typeof plugin.name === 'string'
109109
? plugin.name
110110
: // The check above confirms that `plugin.name` is of Render type
111-
(el) => convertRender(el, plugin.name as SolidPluginRender),
111+
(el) => convertRender(el, plugin.name as SolidPluginRender),
112112
render: (el: HTMLDivElement) => convertRender(el, plugin.render),
113113
})),
114114
}),

pnpm-lock.yaml

Lines changed: 3 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)