@standardagents/builder 0.8.5 → 0.9.0

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/dist/plugin.js CHANGED
@@ -2056,9 +2056,12 @@ function agentbuilder(options = {}) {
2056
2056
  optimizeDeps: {
2057
2057
  // Pre-bundle these deps to prevent reload during startup
2058
2058
  include: ["openai", "zod"],
2059
- // Exclude @standardagents/builder/mcp from pre-bundling (used for MCP server, not needed in worker)
2059
+ // Exclude workspace packages from pre-bundling to prevent "new version of pre-bundle" errors
2060
+ // during first startup when node_modules/.vite cache is empty
2060
2061
  exclude: [
2061
- "@standardagents/builder/mcp"
2062
+ "@standardagents/builder/mcp",
2063
+ "@standardagents/builder/runtime",
2064
+ "@standardagents/builder/built-in-routes"
2062
2065
  ]
2063
2066
  },
2064
2067
  ssr: {