@mastra/deployer-cloudflare 0.10.15-alpha.0 → 0.10.15

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/index.cjs CHANGED
@@ -145,7 +145,14 @@ process.versions.node = '${process.versions.node}';
145
145
  return inputOptions;
146
146
  }
147
147
  async bundle(entryFile, outputDirectory, toolsPaths) {
148
- return this._bundle(this.getEntry(), entryFile, outputDirectory, toolsPaths);
148
+ return this._bundle(
149
+ this.getEntry(),
150
+ entryFile,
151
+ outputDirectory,
152
+ toolsPaths,
153
+ path.join(outputDirectory, this.outputDir),
154
+ false
155
+ );
149
156
  }
150
157
  async deploy() {
151
158
  this.logger?.info("Deploying to Cloudflare failed. Please use the Cloudflare dashboard to deploy.");
package/dist/index.js CHANGED
@@ -139,7 +139,14 @@ process.versions.node = '${process.versions.node}';
139
139
  return inputOptions;
140
140
  }
141
141
  async bundle(entryFile, outputDirectory, toolsPaths) {
142
- return this._bundle(this.getEntry(), entryFile, outputDirectory, toolsPaths);
142
+ return this._bundle(
143
+ this.getEntry(),
144
+ entryFile,
145
+ outputDirectory,
146
+ toolsPaths,
147
+ join(outputDirectory, this.outputDir),
148
+ false
149
+ );
143
150
  }
144
151
  async deploy() {
145
152
  this.logger?.info("Deploying to Cloudflare failed. Please use the Cloudflare dashboard to deploy.");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/deployer-cloudflare",
3
- "version": "0.10.15-alpha.0",
3
+ "version": "0.10.15",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "files": [
@@ -40,7 +40,7 @@
40
40
  "cloudflare": "^4.4.1",
41
41
  "rollup": "~4.44.2",
42
42
  "zod": "^3.25.67",
43
- "@mastra/deployer": "^0.10.15-alpha.0"
43
+ "@mastra/deployer": "^0.10.15"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@microsoft/api-extractor": "^7.52.8",
@@ -49,8 +49,8 @@
49
49
  "tsup": "^8.5.0",
50
50
  "typescript": "^5.8.3",
51
51
  "vitest": "^3.2.4",
52
- "@mastra/core": "0.10.15-alpha.0",
53
- "@internal/lint": "0.0.19"
52
+ "@internal/lint": "0.0.20",
53
+ "@mastra/core": "0.10.15"
54
54
  },
55
55
  "peerDependencies": {
56
56
  "@mastra/core": "^0.10.1-alpha.0"