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
5 changes: 5 additions & 0 deletions .changeset/happy-falcons-smash.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@solid-devtools/transform": minor
---

Add wrapStores transform.
5 changes: 5 additions & 0 deletions .changeset/swift-panthers-pump.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@solid-devtools/debugger": minor
---

Add basic API for observing store updates — `makeStoreObserver`.
4 changes: 2 additions & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
root = true

[*]
indent_style = tab
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
insert_final_newline = true
12 changes: 2 additions & 10 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,7 @@
"printWidth": 100,
"semi": false,
"singleQuote": false,
"useTabs": true,
"useTabs": false,
"arrowParens": "avoid",
"bracketSpacing": true,
"overrides": [
{
"files": "*.md",
"options": {
"useTabs": false
}
}
]
"bracketSpacing": true
}
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,11 @@ For debugging only the pinpoint places parts of the Solid's reactivity graph you

Provides a variaty of debugging utilities for logging the state and lifecycle of the nodes of reactivity graph to the browser console.

### [Babel Plugin](./packages/babel-plugin/)
### [Transform](./packages/transform/)

###### `@solid-devtools/babel-plugin`
###### `@solid-devtools/transform`

A babel plugin for vite for transforming Solid code. For development — debugging purposes only.

Currently only transforms JSX, adding code location to it. Necessary for the [Locator](./packages/locator#readme) package.
A babel transform plugin for vite for transforming Solid code. For development — debugging purposes only.

### [Chrome Extension](./packages/extension#readme)

Expand Down
14 changes: 11 additions & 3 deletions configs/jest.setup.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
jest.mock("@otonashixav/solid-flip", () => ({
TransitionGroup: (p: any) => p.children,
animateExit: () => {},
animateEnter: () => {},
TransitionGroup: (p: any) => p.children,
animateExit: () => {},
animateEnter: () => {},
}))

jest.mock("object-observer", () => ({
Observable: {
from: (obj: any) => obj,
observe: () => void 0,
unobserve: () => void 0,
},
}))

export {}
39 changes: 0 additions & 39 deletions packages/babel-plugin/README.md

This file was deleted.

54 changes: 0 additions & 54 deletions packages/babel-plugin/package.json

This file was deleted.

105 changes: 0 additions & 105 deletions packages/babel-plugin/src/index.ts

This file was deleted.

Loading