snow-flow 11.0.1 → 11.0.2

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.
@@ -26,10 +26,11 @@ COPY package.json ./
26
26
  COPY bunfig.toml ./bunfig.toml
27
27
  COPY tsconfig.json ./
28
28
 
29
- # Install only what the MCP server + its tool catalog needs. Bun resolves
30
- # workspace-style `catalog:` specifiers; if any show up we'll regenerate
31
- # them in the published package. For now we rely on a straight install.
32
- RUN bun install --frozen-lockfile --production || bun install --production
29
+ # Install only what the MCP server + its tool catalog needs.
30
+ # `--ignore-scripts` skips snow-flow's own postinstall (which sets up the
31
+ # CLI bin shim not needed for the MCP-server runtime and the script file
32
+ # isn't copied into this build stage).
33
+ RUN bun install --production --ignore-scripts
33
34
 
34
35
  COPY src/ ./src/
35
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
- "version": "11.0.1",
3
+ "version": "11.0.2",
4
4
  "name": "snow-flow",
5
5
  "description": "Snow-Flow - ServiceNow Multi-Agent Development Framework powered by AI",
6
6
  "license": "Elastic-2.0",