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
13 changes: 13 additions & 0 deletions .changeset/smooth-bikes-sing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
"@solid-devtools/debugger": minor
"solid-devtools-extension": minor
"@solid-devtools/extension-adapter": minor
"@solid-devtools/locator": minor
"@solid-devtools/logger": minor
"solid-devtools": minor
"@solid-devtools/shared": minor
"@solid-devtools/ui": minor
---

This one will be a major rewrite of the debugger, API available in plugins and the reconciliation on the extension.
Now the walked tree will now include information about computation observers, value, signals, sources. All this will be available only for the "focused" owner—new API for getting details about a specific owner.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ lerna-debug.log
# solid
.solid

# tsup
tsup.config.bundled*.*

# VSC Settings
.vscode/settings.json

Expand All @@ -34,3 +37,5 @@ Thumbs.db

# chrome extension private key file
*.pem


6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"author": "Damian Tarnawski <gthetarnav@gmail.com>",
"contributors": [],
"scripts": {
"dev:extension": "turbo run dev --filter=solid-devtools-extension",
"dev:extension-deps": "turbo run dev --filter=@solid-devtools/shared --filter=@solid-devtools/ui",
"dev:sandbox": "turbo run dev --filter=solid-devtools-sandbox-playground",
"dev:ext": "pnpm -dir packages/extension run dev",
"dev:ext-deps": "turbo run dev --filter=@solid-devtools/shared --filter=@solid-devtools/ui",
"dev:sandbox": "pnpm -dir playgrounds/sandbox run dev",
"build": "turbo run build --filter=!./playgrounds/*",
"test": "turbo run test --filter=!./playgrounds/*",
"typecheck": "turbo run typecheck --filter=!./playgrounds/*",
Expand Down
36 changes: 0 additions & 36 deletions packages/debugger/src/batchUpdates.ts

This file was deleted.

16 changes: 11 additions & 5 deletions packages/debugger/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
import { ParentComponent } from "solid-js"
import { attachDebugger } from "./primitives"
import { attachDebugger } from "./roots"

// export all graph types from the internal "shared" library
export * from "@solid-devtools/shared/graph"

export { registerDebuggerPlugin } from "./plugin"
export type { PluginFactory } from "./plugin"
export type {
PluginFactory,
FocusedState,
SetFocusedOwner,
SignaledRoot,
BatchComputationUpdatesHandler,
} from "./plugin"

export type { TargetIDE, TargetURLFunction } from "@solid-devtools/locator"

export { attachDebugger } from "./primitives"
export { attachDebugger } from "./roots"

export {
makeSolidUpdateListener,
Expand All @@ -18,6 +22,8 @@ export {
observeComputationUpdate,
observeValueUpdate,
interceptComputationRerun,
makeValueUpdateListener,
removeValueUpdateObserver,
} from "./update"
export type { AfterCrateRoot, ObjectObserver } from "./update"

Expand Down
Loading