create-foldkit-app 0.17.2 → 0.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -30,6 +30,7 @@ The CLI prompts you for a project name, starter example, and package manager. Pa
30
30
  | `job-application` | Multi-step form with async validation, file uploads, and per-step error indicators |
31
31
  | `weather` | HTTP requests with async state handling |
32
32
  | `api-cache` | Query caching in the Model with stale-while-revalidate, request deduplication, and interval refetching |
33
+ | `charting` | Live GitHub and npm telemetry rendered through an ECharts Mount adapter |
33
34
  | `routing` | URL routing with parser combinators and route parameters |
34
35
  | `query-sync` | URL-driven filtering, sorting, and search with query parameters |
35
36
  | `snake` | Classic game built with Subscriptions |
package/dist/examples.js CHANGED
@@ -9,6 +9,7 @@ export const EXAMPLE_VALUES = [
9
9
  'job-application',
10
10
  'weather',
11
11
  'api-cache',
12
+ 'charting',
12
13
  'routing',
13
14
  'query-sync',
14
15
  'snake',
@@ -76,6 +77,11 @@ export const examples = [
76
77
  title: 'api-cache',
77
78
  description: 'Query caching in the Model with stale-while-revalidate, request deduplication, invalidation, and interval refetching',
78
79
  },
80
+ {
81
+ value: 'charting',
82
+ title: 'charting',
83
+ description: 'Live GitHub and npm telemetry rendered through an ECharts Mount adapter with chart events flowing back as Messages',
84
+ },
79
85
  {
80
86
  value: 'routing',
81
87
  title: 'routing',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-foldkit-app",
3
- "version": "0.17.2",
3
+ "version": "0.19.0",
4
4
  "description": "Create Foldkit applications",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -12,10 +12,10 @@
12
12
  "templates"
13
13
  ],
14
14
  "dependencies": {
15
- "@effect/platform-node": "4.0.0-beta.83",
16
- "@effect/platform-node-shared": "4.0.0-beta.83",
15
+ "@effect/platform-node": "4.0.0-beta.88",
16
+ "@effect/platform-node-shared": "4.0.0-beta.88",
17
17
  "chalk": "^5.6.2",
18
- "effect": "4.0.0-beta.83",
18
+ "effect": "4.0.0-beta.88",
19
19
  "rimraf": "^6.1.3",
20
20
  "typescript": "^6.0.3"
21
21
  },