@agent-native/core 0.7.28 → 0.7.30
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/cli/create.js +1 -1
- package/dist/cli/create.js.map +1 -1
- package/dist/cli/index.js +3 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/deploy/workspace-deploy.d.ts +21 -1
- package/dist/deploy/workspace-deploy.d.ts.map +1 -1
- package/dist/deploy/workspace-deploy.js +194 -13
- package/dist/deploy/workspace-deploy.js.map +1 -1
- package/dist/integrations/a2a-continuation-processor.d.ts.map +1 -1
- package/dist/integrations/a2a-continuation-processor.js +34 -7
- package/dist/integrations/a2a-continuation-processor.js.map +1 -1
- package/dist/templates/workspace-root/_gitignore +1 -0
- package/dist/templates/workspace-root/netlify.toml +8 -0
- package/docs/content/deployment.md +16 -2
- package/docs/content/multi-app-workspace.md +7 -1
- package/package.json +1 -1
- package/src/templates/workspace-root/_gitignore +1 -0
- package/src/templates/workspace-root/netlify.toml +8 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
[build]
|
|
2
|
+
command = "export DATABASE_URL=${NETLIFY_DATABASE_URL:-$DATABASE_URL} && pnpm install && pnpm exec agent-native deploy --preset netlify --build-only"
|
|
3
|
+
publish = "dist"
|
|
4
|
+
functions = ".netlify/functions-internal"
|
|
5
|
+
|
|
6
|
+
[build.environment]
|
|
7
|
+
NITRO_PRESET = "netlify"
|
|
8
|
+
NPM_CONFIG_PRODUCTION = "false"
|