@mastra/deployer-vercel 1.1.37-alpha.0 → 1.1.38
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.
Potentially problematic release.
This version of @mastra/deployer-vercel might be problematic. Click here for more details.
- package/CHANGELOG.md +8 -0
- package/dist/studio/assets/CommitMono-400-Regular-DzkyLZ26.woff2 +0 -0
- package/dist/studio/assets/CommitMono-700-Regular-DmOSN4kd.woff2 +0 -0
- package/dist/studio/assets/MonaSans-VariableFont_wdth-wght-CX-7s9jm.ttf +0 -0
- package/dist/studio/assets/{core-BbWYOQb7.js → core-Cp2Ep0UF.js} +1 -1
- package/dist/studio/assets/index-B2pqw6MA.js +2 -0
- package/dist/studio/assets/{main-Ddlvwwwj.js → main-E7ERv9AI.js} +228 -236
- package/dist/studio/assets/python-DhUJRlN_.js +1 -0
- package/dist/studio/assets/style-BfrtpaHt.css +1 -0
- package/dist/studio/index.html +2 -2
- package/dist/studio/routes-manifest.json +1 -0
- package/package.json +47 -46
- package/dist/studio/assets/GeistMonoVF-BHyMa335.woff +0 -0
- package/dist/studio/assets/InterVariable-H_M6nIbt.ttf +0 -0
- package/dist/studio/assets/TASAExplorerVF-FO8P5krV.woff2 +0 -0
- package/dist/studio/assets/index-BqdlHSNB.js +0 -2
- package/dist/studio/assets/style-D-K-o1wx.css +0 -1
package/dist/studio/index.html
CHANGED
|
@@ -85,9 +85,9 @@
|
|
|
85
85
|
connectSSE();
|
|
86
86
|
})();
|
|
87
87
|
</script>
|
|
88
|
-
<script type="module" crossorigin src="./assets/index-
|
|
88
|
+
<script type="module" crossorigin src="./assets/index-B2pqw6MA.js"></script>
|
|
89
89
|
<link rel="modulepreload" crossorigin href="./assets/preload-helper-PPVm8Dsz.js">
|
|
90
|
-
<link rel="stylesheet" crossorigin href="./assets/style-
|
|
90
|
+
<link rel="stylesheet" crossorigin href="./assets/style-BfrtpaHt.css">
|
|
91
91
|
</head>
|
|
92
92
|
|
|
93
93
|
<body class="overflow-hidden">
|
package/package.json
CHANGED
|
@@ -1,35 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "@mastra/deployer-vercel",
|
|
3
|
-
"version": "1.1.37-alpha.0",
|
|
4
|
-
"description": "",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"files": [
|
|
7
|
-
"dist",
|
|
8
|
-
"CHANGELOG.md"
|
|
9
|
-
],
|
|
10
|
-
"main": "dist/index.js",
|
|
11
|
-
"types": "dist/index.d.ts",
|
|
12
|
-
"exports": {
|
|
13
|
-
".": {
|
|
14
|
-
"import": {
|
|
15
|
-
"types": "./dist/index.d.ts",
|
|
16
|
-
"default": "./dist/index.js"
|
|
17
|
-
},
|
|
18
|
-
"require": {
|
|
19
|
-
"types": "./dist/index.d.ts",
|
|
20
|
-
"default": "./dist/index.cjs"
|
|
21
|
-
}
|
|
22
|
-
},
|
|
23
|
-
"./package.json": "./package.json"
|
|
24
|
-
},
|
|
25
|
-
"keywords": [],
|
|
26
2
|
"author": "",
|
|
27
|
-
"
|
|
3
|
+
"bugs": {
|
|
4
|
+
"url": "https://github.com/mastra-ai/mastra/issues"
|
|
5
|
+
},
|
|
28
6
|
"dependencies": {
|
|
29
|
-
"
|
|
30
|
-
"
|
|
7
|
+
"@mastra/deployer": "^1.42.0",
|
|
8
|
+
"easy-day-js": "^1.11.21",
|
|
9
|
+
"fs-extra": "^11.3.4"
|
|
31
10
|
},
|
|
11
|
+
"description": "",
|
|
32
12
|
"devDependencies": {
|
|
13
|
+
"@internal/lint": "0.0.104",
|
|
14
|
+
"@internal/playground": "1.13.0",
|
|
15
|
+
"@internal/types-builder": "0.0.79",
|
|
16
|
+
"@mastra/core": "1.42.0",
|
|
33
17
|
"@types/fs-extra": "^11.0.4",
|
|
34
18
|
"@types/node": "22.19.15",
|
|
35
19
|
"@vitest/coverage-v8": "4.1.5",
|
|
@@ -37,31 +21,48 @@
|
|
|
37
21
|
"eslint": "^10.4.1",
|
|
38
22
|
"tsup": "^8.5.1",
|
|
39
23
|
"typescript": "^6.0.3",
|
|
40
|
-
"vitest": "4.1.5"
|
|
41
|
-
"@internal/lint": "0.0.103",
|
|
42
|
-
"@internal/playground": "1.12.3-alpha.0",
|
|
43
|
-
"@internal/types-builder": "0.0.78",
|
|
44
|
-
"@mastra/core": "1.42.0-alpha.0"
|
|
24
|
+
"vitest": "4.1.5"
|
|
45
25
|
},
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
"type": "git",
|
|
49
|
-
"url": "git+https://github.com/mastra-ai/mastra.git",
|
|
50
|
-
"directory": "deployers/vercel"
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": "\u003e=22.13.0"
|
|
51
28
|
},
|
|
52
|
-
"
|
|
53
|
-
"
|
|
29
|
+
"exports": {
|
|
30
|
+
".": {
|
|
31
|
+
"import": {
|
|
32
|
+
"default": "./dist/index.js",
|
|
33
|
+
"types": "./dist/index.d.ts"
|
|
34
|
+
},
|
|
35
|
+
"require": {
|
|
36
|
+
"default": "./dist/index.cjs",
|
|
37
|
+
"types": "./dist/index.d.ts"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"./package.json": "./package.json"
|
|
54
41
|
},
|
|
42
|
+
"files": [
|
|
43
|
+
"dist",
|
|
44
|
+
"CHANGELOG.md"
|
|
45
|
+
],
|
|
46
|
+
"homepage": "https://mastra.ai",
|
|
47
|
+
"keywords": [],
|
|
48
|
+
"license": "Apache-2.0",
|
|
49
|
+
"main": "dist/index.js",
|
|
50
|
+
"name": "@mastra/deployer-vercel",
|
|
55
51
|
"peerDependencies": {
|
|
56
|
-
"@mastra/core": "
|
|
52
|
+
"@mastra/core": "\u003e=1.34.0-0 \u003c2.0.0-0"
|
|
57
53
|
},
|
|
58
|
-
"
|
|
59
|
-
"
|
|
54
|
+
"repository": {
|
|
55
|
+
"directory": "deployers/vercel",
|
|
56
|
+
"type": "git",
|
|
57
|
+
"url": "git+https://github.com/mastra-ai/mastra.git"
|
|
60
58
|
},
|
|
61
59
|
"scripts": {
|
|
62
60
|
"build": "tsup --silent --config tsup.config.ts",
|
|
63
61
|
"build:watch": "tsup --watch --silent --config tsup.config.ts",
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
}
|
|
67
|
-
|
|
62
|
+
"lint": "eslint .",
|
|
63
|
+
"test": "vitest run"
|
|
64
|
+
},
|
|
65
|
+
"type": "module",
|
|
66
|
+
"types": "dist/index.d.ts",
|
|
67
|
+
"version": "1.1.38"
|
|
68
|
+
}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
const __vite__mapDeps=(i,m=__vite__mapDeps,d=(m.f||(m.f=["./main-Ddlvwwwj.js","./preload-helper-PPVm8Dsz.js"])))=>i.map(i=>d[i]);
|
|
2
|
-
import{_ as a}from"./preload-helper-PPVm8Dsz.js";(function(){const o=document.createElement("link").relList;if(o&&o.supports&&o.supports("modulepreload"))return;for(const e of document.querySelectorAll('link[rel="modulepreload"]'))n(e);new MutationObserver(e=>{for(const t of e)if(t.type==="childList")for(const s of t.addedNodes)s.tagName==="LINK"&&s.rel==="modulepreload"&&n(s)}).observe(document,{childList:!0,subtree:!0});function i(e){const t={};return e.integrity&&(t.integrity=e.integrity),e.referrerPolicy&&(t.referrerPolicy=e.referrerPolicy),e.crossOrigin==="use-credentials"?t.credentials="include":e.crossOrigin==="anonymous"?t.credentials="omit":t.credentials="same-origin",t}function n(e){if(e.ep)return;e.ep=!0;const t=i(e);fetch(e.href,t)}})();const c=!1;function d(r){return r instanceof Error?r.stack||r.message:String(r)}function l(r,{showDetails:o=c}={}){const i=document.getElementById("root");if(!i||i.childElementCount>0)return;const n=document.createElement("main");n.setAttribute("role","alert"),n.style.cssText="min-height:100vh;background:#0b0d10;color:#f4f4f5;font-family:Inter,ui-sans-serif,system-ui,sans-serif;padding:32px;box-sizing:border-box;";const e=document.createElement("h1");e.textContent="Mastra Studio failed to start",e.style.cssText="font-size:20px;line-height:1.4;margin:0 0 8px;";const t=document.createElement("p");if(t.textContent=o?"The startup module failed before React could render. Check the Vite terminal and browser console for the original request details.":"The startup module failed before React could render. Run Studio in development mode to view detailed diagnostics.",t.style.cssText="color:#a1a1aa;max-width:760px;margin:0 0 20px;line-height:1.6;",n.append(e,t),o){const s=document.createElement("pre");s.textContent=d(r),s.style.cssText="white-space:pre-wrap;overflow:auto;background:#18181b;border:1px solid #3f3f46;border-radius:8px;padding:16px;max-width:100%;line-height:1.5;",n.append(s)}i.replaceChildren(n)}try{const{startStudio:r}=await a(async()=>{const{startStudio:o}=await import("./main-Ddlvwwwj.js").then(i=>i.m);return{startStudio:o}},__vite__mapDeps([0,1]),import.meta.url);r()}catch(r){console.error("Mastra Studio failed to start",r),l(r)}
|