@standardagents/builder 0.8.5 → 0.9.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.
- package/dist/built-in-routes.js +1 -1
- package/dist/built-in-routes.js.map +1 -1
- package/dist/client/assets/img/agent-builder-logo-dark.svg +16 -0
- package/dist/client/assets/img/agent-builder-logo-light.svg +16 -0
- package/dist/client/assets/img/favicon.svg +11 -0
- package/dist/client/assets/index.css +1 -1
- package/dist/client/assets/{json.worker-C21G4-GD.js → json.worker-B3O9ZXir.js} +1 -6
- package/dist/client/index.html +1 -0
- package/dist/client/index.js +19 -19
- package/dist/client/monaco.js +13 -465
- package/dist/client/vue.js +1 -143
- package/dist/index.d.ts +15 -24
- package/dist/index.js +84 -113
- package/dist/index.js.map +1 -1
- package/dist/plugin.js +5 -2
- package/dist/plugin.js.map +1 -1
- package/dist/rou3.js +1 -1
- package/dist/rou3.js.map +1 -1
- package/package.json +2 -2
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
|
|
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: {
|