@livestore/cli 0.0.0-snapshot-e1f258583cff1ab7b06cbd70fd91a4564bd3d004 → 0.0.0-snapshot-c93d1a7a3e813adf495dd400c1920c3e78f49a98

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@livestore/cli",
3
- "version": "0.0.0-snapshot-e1f258583cff1ab7b06cbd70fd91a4564bd3d004",
3
+ "version": "0.0.0-snapshot-c93d1a7a3e813adf495dd400c1920c3e78f49a98",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "exports": {
@@ -11,11 +11,11 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "@effect/ai-openai": "0.32.0",
14
- "@livestore/adapter-node": "0.0.0-snapshot-e1f258583cff1ab7b06cbd70fd91a4564bd3d004",
15
- "@livestore/common": "0.0.0-snapshot-e1f258583cff1ab7b06cbd70fd91a4564bd3d004",
16
- "@livestore/livestore": "0.0.0-snapshot-e1f258583cff1ab7b06cbd70fd91a4564bd3d004",
17
- "@livestore/sync-cf": "0.0.0-snapshot-e1f258583cff1ab7b06cbd70fd91a4564bd3d004",
18
- "@livestore/utils": "0.0.0-snapshot-e1f258583cff1ab7b06cbd70fd91a4564bd3d004"
14
+ "@livestore/adapter-node": "0.0.0-snapshot-c93d1a7a3e813adf495dd400c1920c3e78f49a98",
15
+ "@livestore/common": "0.0.0-snapshot-c93d1a7a3e813adf495dd400c1920c3e78f49a98",
16
+ "@livestore/livestore": "0.0.0-snapshot-c93d1a7a3e813adf495dd400c1920c3e78f49a98",
17
+ "@livestore/sync-cf": "0.0.0-snapshot-c93d1a7a3e813adf495dd400c1920c3e78f49a98",
18
+ "@livestore/utils": "0.0.0-snapshot-c93d1a7a3e813adf495dd400c1920c3e78f49a98"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/node": "24.5.2",
package/src/bin.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  import { liveStoreVersion } from '@livestore/common'
4
- import { Console, Effect, FetchHttpClient, Layer, Logger, LogLevel } from '@livestore/utils/effect'
4
+ import { Effect, FetchHttpClient, Layer, Logger, LogLevel } from '@livestore/utils/effect'
5
5
  import { Cli, PlatformNode } from '@livestore/utils/node'
6
6
  import { command } from './cli.ts'
7
7
 
@@ -10,15 +10,10 @@ const cli = Cli.Command.run(command, {
10
10
  version: liveStoreVersion,
11
11
  })
12
12
 
13
- const showExperimentalWarning = Console.log('⚠️ Warning: LiveStore CLI is experimental and under active development')
14
-
15
13
  const layer = Layer.mergeAll(
16
14
  PlatformNode.NodeContext.layer,
17
15
  FetchHttpClient.layer,
18
16
  Logger.minimumLogLevel(LogLevel.Info),
19
17
  )
20
18
 
21
- Effect.gen(function* () {
22
- yield* showExperimentalWarning
23
- return yield* cli(process.argv)
24
- }).pipe(Effect.provide(layer), PlatformNode.NodeRuntime.runMain)
19
+ cli(process.argv).pipe(Effect.provide(layer), PlatformNode.NodeRuntime.runMain)
@@ -77,9 +77,6 @@ const mcpServerCommand = Cli.Command.make(
77
77
  'server',
78
78
  {},
79
79
  Effect.fn(function* () {
80
- yield* Effect.log('🚀 Starting LiveStore MCP Server...')
81
-
82
- // Following Tim Smart's exact pattern from main.ts
83
80
  return yield* McpServer.layerStdio({
84
81
  name: 'livestore-mcp',
85
82
  version: '0.1.0',