Skip to content

Commit 63ccd1a

Browse files
committed
fix: go for launch
1 parent 3dab0c7 commit 63ccd1a

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

examples/react/basic/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"test:types": "tsc"
1010
},
1111
"dependencies": {
12-
"@tanstack/devtools-a11y": "workspace:*",
1312
"@tanstack/devtools-client": "0.0.5",
1413
"@tanstack/devtools-event-client": "0.4.0",
1514
"@tanstack/react-devtools": "^0.9.3",

examples/react/basic/src/setup.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { ReactQueryDevtoolsPanel } from '@tanstack/react-query-devtools'
22
import { TanStackRouterDevtoolsPanel } from '@tanstack/react-router-devtools'
3-
import { createA11yDevtoolsReactPlugin } from '@tanstack/devtools-a11y/react'
43

54
import {
65
Link,
@@ -80,7 +79,7 @@ export default function DevtoolsExample() {
8079
name: 'Package.json',
8180
render: () => <PackageJsonPanel />,
8281
},
83-
createA11yDevtoolsReactPlugin({ runOnMount: false })[0](),
82+
8483
/* {
8584
name: "The actual app",
8685
render: <iframe style={{ width: '100%', height: '100%' }} src="http://localhost:3005" />,

packages/devtools-a11y/package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@
2323
"audit"
2424
],
2525
"type": "module",
26-
"types": "dist/esm/index.d.ts",
27-
"main": "dist/cjs/index.cjs",
28-
"module": "dist/esm/index.js",
2926
"exports": {
3027
"./core": {
3128
"import": {

packages/devtools-a11y/src/core/components/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/** @jsxImportSource solid-js */
2+
13
import { AllyProvider } from '../contexts/allyContext'
24
import { Shell } from './Shell'
35

packages/devtools-a11y/src/core/contexts/allyContext.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/** @jsxImportSource solid-js */
2+
13
import {
24
createContext,
35
createEffect,

packages/devtools-a11y/src/core/core.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
/** @jsxImportSource solid-js */
2+
13
import { lazy } from 'solid-js'
24
import { constructCoreClass } from '@tanstack/devtools-utils/solid'
35

0 commit comments

Comments
 (0)