@standardagents/builder 0.9.17 → 0.10.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/built-in-routes.js +306 -4
- package/dist/built-in-routes.js.map +1 -1
- package/dist/client/assets/index.css +1 -1
- package/dist/client/index.js +19 -19
- package/dist/client/vendor.js +1 -1
- package/dist/client/vue.js +1 -1
- package/dist/image-processing.d.ts +41 -0
- package/dist/image-processing.js +198 -0
- package/dist/image-processing.js.map +1 -0
- package/dist/index.d.ts +758 -3
- package/dist/index.js +1342 -37
- package/dist/index.js.map +1 -1
- package/dist/plugin.js +16 -2
- package/dist/plugin.js.map +1 -1
- package/package.json +11 -1
package/dist/plugin.js
CHANGED
|
@@ -2056,7 +2056,14 @@ function agentbuilder(options = {}) {
|
|
|
2056
2056
|
const depsToExclude = [
|
|
2057
2057
|
"@standardagents/builder",
|
|
2058
2058
|
"@standardagents/builder/runtime",
|
|
2059
|
-
"@standardagents/builder/built-in-routes"
|
|
2059
|
+
"@standardagents/builder/built-in-routes",
|
|
2060
|
+
"@standardagents/builder/image-processing",
|
|
2061
|
+
// WASM image processing deps - must be excluded to avoid pre-bundle cache issues
|
|
2062
|
+
"@cf-wasm/photon",
|
|
2063
|
+
"@cf-wasm/photon/workerd",
|
|
2064
|
+
"@jsquash/avif",
|
|
2065
|
+
"@jsquash/jpeg",
|
|
2066
|
+
"@jsquash/png"
|
|
2060
2067
|
];
|
|
2061
2068
|
return {
|
|
2062
2069
|
optimizeDeps: {
|
|
@@ -2080,7 +2087,14 @@ function agentbuilder(options = {}) {
|
|
|
2080
2087
|
const depsToExclude = [
|
|
2081
2088
|
"@standardagents/builder",
|
|
2082
2089
|
"@standardagents/builder/runtime",
|
|
2083
|
-
"@standardagents/builder/built-in-routes"
|
|
2090
|
+
"@standardagents/builder/built-in-routes",
|
|
2091
|
+
"@standardagents/builder/image-processing",
|
|
2092
|
+
// WASM image processing deps
|
|
2093
|
+
"@cf-wasm/photon",
|
|
2094
|
+
"@cf-wasm/photon/workerd",
|
|
2095
|
+
"@jsquash/avif",
|
|
2096
|
+
"@jsquash/jpeg",
|
|
2097
|
+
"@jsquash/png"
|
|
2084
2098
|
];
|
|
2085
2099
|
config.optimizeDeps = config.optimizeDeps || {};
|
|
2086
2100
|
config.optimizeDeps.exclude = [
|