create-foldkit-app 0.4.0 → 0.4.1

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -24,7 +24,7 @@ const example = Options.choice('example', [
24
24
  ' weather - HTTP requests with async state handling\n' +
25
25
  ' todo - CRUD operations with localStorage persistence\n' +
26
26
  ' form - Form validation with async email checking\n' +
27
- ' snake - Classic game built with command streams\n' +
27
+ ' snake - Classic game built with subscriptions\n' +
28
28
  ' routing - URL routing with parser combinators and route parameters\n' +
29
29
  ' shopping-cart - Complex state management with nested models and routing\n' +
30
30
  ' websocket-chat - WebSocket integration\n' +
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-foldkit-app",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Create Foldkit applications",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",