@mastra/deployer-cloudflare 0.10.15 → 0.10.16-alpha.1
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 +1 -8
- package/dist/index.js +1 -8
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -145,14 +145,7 @@ process.versions.node = '${process.versions.node}';
|
|
|
145
145
|
return inputOptions;
|
|
146
146
|
}
|
|
147
147
|
async bundle(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
|
-
);
|
|
148
|
+
return this._bundle(this.getEntry(), entryFile, outputDirectory, toolsPaths);
|
|
156
149
|
}
|
|
157
150
|
async deploy() {
|
|
158
151
|
this.logger?.info("Deploying to Cloudflare failed. Please use the Cloudflare dashboard to deploy.");
|
package/dist/index.js
CHANGED
|
@@ -139,14 +139,7 @@ process.versions.node = '${process.versions.node}';
|
|
|
139
139
|
return inputOptions;
|
|
140
140
|
}
|
|
141
141
|
async bundle(entryFile, outputDirectory, toolsPaths) {
|
|
142
|
-
return this._bundle(
|
|
143
|
-
this.getEntry(),
|
|
144
|
-
entryFile,
|
|
145
|
-
outputDirectory,
|
|
146
|
-
toolsPaths,
|
|
147
|
-
join(outputDirectory, this.outputDir),
|
|
148
|
-
false
|
|
149
|
-
);
|
|
142
|
+
return this._bundle(this.getEntry(), entryFile, outputDirectory, toolsPaths);
|
|
150
143
|
}
|
|
151
144
|
async deploy() {
|
|
152
145
|
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.
|
|
3
|
+
"version": "0.10.16-alpha.1",
|
|
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.
|
|
43
|
+
"@mastra/deployer": "^0.11.0-alpha.1"
|
|
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
|
-
"@
|
|
53
|
-
"@
|
|
52
|
+
"@mastra/core": "0.11.0-alpha.1",
|
|
53
|
+
"@internal/lint": "0.0.20"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"@mastra/core": "^0.10.1-alpha.0"
|