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
2 changes: 1 addition & 1 deletion .changeset/initial-release.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"@solidjs/start-devtools": major
'@solidjs/start-devtools': major
---

Add the Start development toolbar, runtime error overlay, and server-function inspector.
2 changes: 1 addition & 1 deletion .changeset/modern-toolchain.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"@solidjs/start-devtools": patch
'@solidjs/start-devtools': patch
---

Build with Rolldown, update the project toolchain, and strengthen package validation.
5 changes: 5 additions & 0 deletions .changeset/native-oxc-toolchain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@solidjs/start-devtools': patch
---

Build with the native Solid compiler and migrate formatting to Oxfmt.
5 changes: 1 addition & 4 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,5 @@
"initialVersions": {
"@solidjs/start-devtools": "0.0.0"
},
"changesets": [
"initial-release",
"quiet-cats-smile"
]
"changesets": ["initial-release", "quiet-cats-smile"]
}
2 changes: 1 addition & 1 deletion .changeset/quiet-cats-smile.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"@solidjs/start-devtools": patch
'@solidjs/start-devtools': patch
---

Support server rendering the development error boundary and avoid duplicate toolbars when authored entries wrap their app.
2 changes: 1 addition & 1 deletion .changeset/safe-production-imports.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"@solidjs/start-devtools": patch
'@solidjs/start-devtools': patch
---

Make direct imports production-safe with a no-op default export and development-only browser and server implementations. Register server-function observers from the browser entry.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ jobs:
- run: pnpm build
- run: pnpm test
- run: pnpm check
- run: pnpm format:check
6 changes: 6 additions & 0 deletions .oxfmtrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"$schema": "./node_modules/oxfmt/configuration_schema.json",
"printWidth": 100,
"singleQuote": true,
"sortPackageJson": false
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pnpm add @solidjs/start-devtools@next
The Vite plugin mounts it automatically. Integrations can use the package directly:

```tsx
import { DevToolbar } from "@solidjs/start-devtools";
import { DevToolbar } from '@solidjs/start-devtools';

<DevToolbar>
<App />
Expand Down
10 changes: 4 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
"scripts": {
"build": "rolldown -c",
"check": "publint && attw --pack . --profile esm-only",
"format": "oxfmt --write",
"format:check": "oxfmt --check",
"test": "vitest run",
"release": "pnpm build && changeset publish"
},
Expand All @@ -50,18 +52,14 @@
"solid-js": "^2.0.0-rc.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.0",
"@arethetypeswrong/cli": "^0.18.5",
"@changesets/cli": "^2.30.0",
"@rolldown/plugin-babel": "^0.2.3",
"@dom-expressions/compiler": "^0.50.0-next.43",
"@solidjs/web": "^2.0.0-rc.0",
"@types/node": "^24.0.0",
"babel-preset-solid": "^2.0.0-rc.0",
"error-stack-parser": "^2.1.4",
"html-to-image": "^1.11.13",
"prettier": "^3.1.0",
"oxfmt": "^0.64.0",
"publint": "^0.3.23",
"rolldown": "^1.2.4",
"rolldown-plugin-dts": "^0.28.2",
Expand Down
Loading
Loading