@mastra/deployer-cloudflare 0.0.1-alpha.32 → 0.0.1-alpha.34

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,19 @@
1
1
  # @mastra/deployer-cloudflare
2
2
 
3
+ ## 0.0.1-alpha.34
4
+
5
+ ### Patch Changes
6
+
7
+ - 32d15ec: Fix cloudflareDeployer build
8
+
9
+ ## 0.0.1-alpha.33
10
+
11
+ ### Patch Changes
12
+
13
+ - e27fe69: Add dir to deployer
14
+ - Updated dependencies [e27fe69]
15
+ - @mastra/deployer@0.0.1-alpha.30
16
+
3
17
  ## 0.0.1-alpha.32
4
18
 
5
19
  ### Patch Changes
package/dist/index.js CHANGED
@@ -103,9 +103,9 @@ export default {
103
103
  external: [/^@opentelemetry\//],
104
104
  treeshake: "smallest"
105
105
  },
106
- "browser"
106
+ { platform: "browser" }
107
107
  );
108
- bundler.write({
108
+ await bundler.write({
109
109
  inlineDynamicImports: true,
110
110
  file: join(outputDirectory, "index.mjs"),
111
111
  format: "es"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/deployer-cloudflare",
3
- "version": "0.0.1-alpha.32",
3
+ "version": "0.0.1-alpha.34",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -29,8 +29,8 @@
29
29
  "rollup-plugin-shim": "^1.0.0",
30
30
  "wrangler": "^3.103.2",
31
31
  "zod": "^3.24.1",
32
- "@mastra/core": "0.2.0-alpha.84",
33
- "@mastra/deployer": "0.0.1-alpha.29"
32
+ "@mastra/deployer": "0.0.1-alpha.30",
33
+ "@mastra/core": "0.2.0-alpha.84"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@babel/preset-env": "^7.26.0",
package/src/index.ts CHANGED
@@ -71,7 +71,7 @@ export class CloudflareDeployer extends Deployer {
71
71
  author: 'Mastra',
72
72
  license: 'ISC',
73
73
  dependencies: {
74
- '@mastra/core': 'latest'
74
+ '@mastra/core': 'latest',
75
75
  },
76
76
  },
77
77
  null,
@@ -132,10 +132,10 @@ export default {
132
132
  external: [/^@opentelemetry\//],
133
133
  treeshake: 'smallest',
134
134
  },
135
- 'browser',
135
+ { platform: 'browser' },
136
136
  );
137
137
 
138
- bundler.write({
138
+ await bundler.write({
139
139
  inlineDynamicImports: true,
140
140
  file: join(outputDirectory, 'index.mjs'),
141
141
  format: 'es',