@epoch-ai/cli 2.2.9 → 2.2.11

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
  "$schema": "https://json.schemastore.org/package.json",
3
- "version": "2.2.9",
3
+ "version": "2.2.11",
4
4
  "name": "@epoch-ai/cli",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -167,20 +167,20 @@
167
167
  "ajv": "8.20.0"
168
168
  },
169
169
  "optionalDependencies": {
170
- "@epoch-ai/cli-darwin-arm64": "2.2.9",
171
- "@epoch-ai/cli-darwin-x64": "2.2.9",
172
- "@epoch-ai/cli-darwin-x64-baseline": "2.2.9",
173
- "@epoch-ai/cli-linux-arm64": "2.2.9",
174
- "@epoch-ai/cli-linux-x64": "2.2.9",
175
- "@epoch-ai/cli-linux-x64-baseline": "2.2.9",
176
- "@epoch-ai/cli-linux-arm64-musl": "2.2.9",
177
- "@epoch-ai/cli-linux-x64-musl": "2.2.9",
178
- "@epoch-ai/cli-linux-x64-baseline-musl": "2.2.9",
179
- "@epoch-ai/cli-windows-arm64": "2.2.9",
180
- "@epoch-ai/cli-windows-x64": "2.2.9",
181
- "@epoch-ai/cli-windows-x64-baseline": "2.2.9"
170
+ "@epoch-ai/cli-darwin-arm64": "2.2.11",
171
+ "@epoch-ai/cli-darwin-x64": "2.2.11",
172
+ "@epoch-ai/cli-darwin-x64-baseline": "2.2.11",
173
+ "@epoch-ai/cli-linux-arm64": "2.2.11",
174
+ "@epoch-ai/cli-linux-x64": "2.2.11",
175
+ "@epoch-ai/cli-linux-x64-baseline": "2.2.11",
176
+ "@epoch-ai/cli-linux-arm64-musl": "2.2.11",
177
+ "@epoch-ai/cli-linux-x64-musl": "2.2.11",
178
+ "@epoch-ai/cli-linux-x64-baseline-musl": "2.2.11",
179
+ "@epoch-ai/cli-windows-arm64": "2.2.11",
180
+ "@epoch-ai/cli-windows-x64": "2.2.11",
181
+ "@epoch-ai/cli-windows-x64-baseline": "2.2.11"
182
182
  },
183
183
  "overrides": {
184
184
  "drizzle-orm": "1.0.0-beta.19-d95b7a4"
185
185
  }
186
- }
186
+ }
package/script/publish.ts CHANGED
@@ -46,9 +46,9 @@ for (const [name] of Object.entries(binaries)) {
46
46
  if (process.platform !== "win32") {
47
47
  await $`chmod -R 755 .`.cwd(pkgDir)
48
48
  }
49
- await $`npm publish --access public --tag latest`.cwd(pkgDir).nothrow()
49
+ await $`npm publish --access public --tag ${Script.channel}`.cwd(pkgDir).nothrow()
50
50
  }
51
- await $`cd ./dist/${pkg.name} && npm publish --access public --tag latest`.nothrow()
51
+ await $`cd ./dist/${pkg.name} && npm publish --access public --tag ${Script.channel}`.nothrow()
52
52
 
53
53
  // const image = "ghcr.io/benjamesmurray/epoch-cli"
54
54
  // const platforms = "linux/amd64,linux/arm64"
@@ -273,8 +273,10 @@ const DEFAULT_EPOCHCLI_JSONC = `{
273
273
  }
274
274
  },
275
275
  "mcpx": {
276
- "enabled": true
277
- }
276
+ "enabled": true,
277
+ "binaryPath": "mcpx-rust"
278
+ },
279
+ "mcp": {}
278
280
  }
279
281
  `
280
282