mastra 0.6.0-alpha.4 → 0.6.0-alpha.6

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.js CHANGED
@@ -106,6 +106,10 @@ async function build({ dir, tools }) {
106
106
  const deployer = new BuildBundler();
107
107
  await deployer.prepare(outputDirectory);
108
108
  await deployer.bundle(mastraEntryFile, outputDirectory, discoveredTools);
109
+ logger.info(`Build successful, you can now deploy the .mastra/output directory to your target platform.`);
110
+ logger.info(
111
+ `To start the server, run: node --import=./.mastra/output/instrumentation.mjs .mastra/output/index.mjs`
112
+ );
109
113
  return;
110
114
  }
111
115
  logger.info("Deployer found, preparing deployer build...");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mastra",
3
- "version": "0.6.0-alpha.4",
3
+ "version": "0.6.0-alpha.6",
4
4
  "license": "Elastic-2.0",
5
5
  "description": "cli for mastra",
6
6
  "type": "module",
@@ -54,11 +54,11 @@
54
54
  "yocto-spinner": "^0.1.2",
55
55
  "zod": "^3.24.2",
56
56
  "zod-to-json-schema": "^3.24.3",
57
- "@mastra/core": "^0.9.1-alpha.3",
58
- "@mastra/deployer": "^0.3.1-alpha.3"
57
+ "@mastra/deployer": "^0.3.1-alpha.4",
58
+ "@mastra/core": "^0.9.1-alpha.4"
59
59
  },
60
60
  "devDependencies": {
61
- "@microsoft/api-extractor": "^7.52.1",
61
+ "@microsoft/api-extractor": "^7.52.5",
62
62
  "@types/fs-extra": "^11.0.4",
63
63
  "@types/node": "^20.17.27",
64
64
  "@types/prompt": "^1.1.9",
@@ -67,14 +67,14 @@
67
67
  "eslint": "^9.23.0",
68
68
  "memfs": "^4.17.0",
69
69
  "npm-run-all2": "^7.0.2",
70
- "rollup": "^4.35.0",
70
+ "rollup": "^4.40.1",
71
71
  "tsup": "^8.4.0",
72
72
  "type-fest": "^4.37.0",
73
73
  "typescript": "^5.8.2",
74
- "vitest": "^3.0.9",
74
+ "vitest": "^3.1.2",
75
75
  "@internal/lint": "0.0.2",
76
- "@mastra/playground-ui": "5.0.1-alpha.3",
77
- "@mastra/client-js": "0.1.19-alpha.3"
76
+ "@mastra/client-js": "0.1.19-alpha.4",
77
+ "@mastra/playground-ui": "5.0.1-alpha.4"
78
78
  },
79
79
  "scripts": {
80
80
  "build": "npm-run-all --serial build:lib copy-starter-files copy-templates build:playground",