Skip to content
Open
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
46 changes: 46 additions & 0 deletions .github/frameworks.json
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,52 @@
]
}
},
{
"name": "pracht",
"displayName": "Pracht",
"frameworkPackage": "@pracht/core",
"focusedFramework": false,
"starter": {
"package": "starter-pracht",
"buildScript": "build",
"buildOutputDir": "dist",
"measurements": [
{
"type": "install",
"runFrequency": 5
},
{
"type": "build",
"runFrequency": 5
},
{
"type": "dependencies"
},
{
"type": "browserBaseline"
}
]
},
"app": {
"package": "app-pracht",
"buildScript": "build",
"buildOutputDir": "dist",
"measurements": [
{
"type": "ssrRequestThroughput"
},
{
"type": "clientSideRendered"
},
{
"type": "serverSideRendered"
},
{
"type": "ssrLoad"
}
]
}
},
{
"name": "react-router",
"displayName": "React Router",
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ app.config.timestamp_*.js
.nuxt/
.nitro/
.react-router/
packages/app-pracht/src/pracht.d.ts
packages/app-pracht/src/pracht-routes.ts
.tanstack/
.vinxi/
.data/
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ If you would like to play around with the collected data to build your own visua
- [Nuxt](./packages/starter-nuxt/ci-stats.json)
- [SvelteKit](./packages/starter-sveltekit/ci-stats.json)
- [Astro](./packages/starter-astro/ci-stats.json)
- [Pracht](./packages/starter-pracht/ci-stats.json)
- [React Router](./packages/starter-react-router/ci-stats.json)
- [SolidStart](./packages/starter-solid-start/ci-stats.json)
- [Tanstack Start](./packages/starter-tanstack-start-react/ci-stats.json)
Expand All @@ -39,6 +40,7 @@ If you would like to play around with the collected data to build your own visua
- [Nuxt](./packages/app-nuxt/ci-stats.json)
- [SvelteKit](./packages/app-sveltekit/ci-stats.json)
- [Astro](./packages/app-astro/ci-stats.json)
- [Pracht](./packages/app-pracht/ci-stats.json)
- [React Router](./packages/app-react-router/ci-stats.json)
- [SolidStart](./packages/app-solid-start/ci-stats.json)
- [Tanstack Start](./packages/app-tanstack-start-react/ci-stats.json)
Expand Down
25 changes: 25 additions & 0 deletions packages/app-pracht/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "app-pracht",
"private": true,
"type": "module",
"scripts": {
"build": "pracht build",
"dev": "pracht dev",
"preview": "pracht preview",
"start": "node dist/server/server.js",
"type-check": "pracht typegen && tsc --noEmit",
"typecheck": "pracht typegen && tsc --noEmit"
},
"dependencies": {
"@pracht/adapter-node": "0.4.2",
"@pracht/core": "0.16.0"
},
"devDependencies": {
"@pracht/cli": "1.12.0",
"@pracht/vite-plugin": "0.11.1",
"preact": "10.29.8",
"preact-render-to-string": "6.7.0",
"typescript": "7.0.2",
"vite": "8.2.2"
}
}
Loading
Loading