@mastra/deployer-netlify 0.0.1-alpha.31 → 0.0.1-alpha.32

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @mastra/deployer-netlify
2
2
 
3
+ ## 0.0.1-alpha.32
4
+
5
+ ### Patch Changes
6
+
7
+ - e27fe69: Add dir to deployer
8
+ - Updated dependencies [e27fe69]
9
+ - @mastra/deployer@0.0.1-alpha.30
10
+
3
11
  ## 0.0.1-alpha.31
4
12
 
5
13
  ### Patch Changes
package/dist/index.js CHANGED
@@ -126,7 +126,7 @@ to = "/.netlify/functions/api/:splat"
126
126
  external: [/^@opentelemetry\//],
127
127
  plugins: [virtual({ "#entry": this.getEntry() })]
128
128
  });
129
- bundler.write({
129
+ await bundler.write({
130
130
  inlineDynamicImports: true,
131
131
  file: join(outputDirectory, "netlify", "functions", "api", "index.mjs"),
132
132
  format: "es"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/deployer-netlify",
3
- "version": "0.0.1-alpha.31",
3
+ "version": "0.0.1-alpha.32",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -23,7 +23,7 @@
23
23
  "netlify-cli": "^18.0.1",
24
24
  "zod": "^3.24.1",
25
25
  "@mastra/core": "0.2.0-alpha.84",
26
- "@mastra/deployer": "0.0.1-alpha.29"
26
+ "@mastra/deployer": "0.0.1-alpha.30"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@babel/preset-env": "^7.26.0",
package/src/index.ts CHANGED
@@ -84,7 +84,7 @@ to = "/.netlify/functions/api/:splat"
84
84
  plugins: [virtual({ '#entry': this.getEntry() })],
85
85
  });
86
86
 
87
- bundler.write({
87
+ await bundler.write({
88
88
  inlineDynamicImports: true,
89
89
  file: join(outputDirectory, 'netlify', 'functions', 'api', 'index.mjs'),
90
90
  format: 'es',