create-foldkit-app 0.2.0 → 0.2.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 +4 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -15,6 +15,7 @@ const example = Options.choice('example', [
15
15
  'snake',
16
16
  'routing',
17
17
  'shopping-cart',
18
+ 'websocket-chat',
18
19
  ]).pipe(Options.withAlias('e'), Options.withDescription("The example application to start from. Pick an example that's similar to the application you're building. Or create multiple projects and take pieces of each!\n\n" +
19
20
  'Available examples:\n' +
20
21
  ' counter - Simple increment/decrement with reset\n' +
@@ -24,7 +25,8 @@ const example = Options.choice('example', [
24
25
  ' form - Form validation with async email checking\n' +
25
26
  ' snake - Classic game built with command streams\n' +
26
27
  ' routing - URL routing with parser combinators and route parameters\n' +
27
- ' shopping-cart - Complex state management with nested models and routing'));
28
+ ' shopping-cart - Complex state management with nested models and routing\n' +
29
+ ' websocket-chat - WebSocket integration'));
28
30
  const packageManager = Options.choice('package-manager', ['pnpm', 'npm', 'yarn']).pipe(Options.withAlias('p'), Options.withDescription('The package manager to use for installing dependencies'));
29
31
  const create = Command.make('create', {
30
32
  name,
@@ -33,7 +35,7 @@ const create = Command.make('create', {
33
35
  }, create_);
34
36
  const cli = Command.run(create, {
35
37
  name: 'Create Foldkit App',
36
- version: '0.2.0',
38
+ version: '0.2.1',
37
39
  summary: HelpDoc.getSpan(HelpDoc.p('Create a new Foldkit application')),
38
40
  });
39
41
  cli(process.argv).pipe(Effect.provide([FetchHttpClient.layer, NodeContext.layer]), NodeRuntime.runMain);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-foldkit-app",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Create Foldkit applications",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",