create-factory 0.1.0-alpha.7 → 0.1.0-alpha.9

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,20 @@
1
1
  # create-factory
2
2
 
3
+ ## 0.1.0-alpha.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Simplified the create-factory success message: sandboxes now appear as a bullet in the provisioned resources list so users know code agent sessions run inside Mastra platform sandboxes. ([#20062](https://github.com/mastra-ai/mastra/pull/20062))
8
+
9
+ ## 0.1.0-alpha.8
10
+
11
+ ### Patch Changes
12
+
13
+ - The factory template now ships a pnpm-workspace.yaml with allowBuilds, preventing pnpm v10+ from exiting with ERR_PNPM_IGNORED_BUILDS during install or build. The file mirrors the mastracode/web build-approval policy minus test-only deps stripped by the template. ([#20056](https://github.com/mastra-ai/mastra/pull/20056))
14
+
15
+ - Updated dependencies [[`0182be3`](https://github.com/mastra-ai/mastra/commit/0182be35cd402209182097098e7ebc07a5a54a2a)]:
16
+ - mastra@1.20.0-alpha.15
17
+
3
18
  ## 0.1.0-alpha.7
4
19
 
5
20
  ### Minor Changes
package/dist/index.js CHANGED
@@ -506,8 +506,8 @@ You can retry manually: cd ${projectName} && ${packageManager} install`
506
506
  `${color.green("Provisioned on Mastra platform")} in ${color.cyan(platformResult.orgName)}:`,
507
507
  ` - Project ${color.cyan(platformResult.project.name)}`,
508
508
  ` - Postgres database (credentials written to ${color.cyan(".env")})`,
509
+ ` - Sandboxes (code agent sessions run here)`,
509
510
  "",
510
- "When deployed, code agent sessions run inside Mastra platform sandboxes.",
511
511
  `Manage your project at ${color.underline("https://projects.mastra.ai")}`
512
512
  );
513
513
  } else if (args.noPlatform) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-factory",
3
- "version": "0.1.0-alpha.7",
3
+ "version": "0.1.0-alpha.9",
4
4
  "description": "Create a Mastra Factory project: an agent-powered software delivery environment built on Mastra. Run `npm create factory` to scaffold and get started.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -38,7 +38,7 @@
38
38
  "picocolors": "^1.1.1",
39
39
  "posthog-node": "^5.37.0",
40
40
  "tinyexec": "^1.2.4",
41
- "mastra": "1.20.0-alpha.14"
41
+ "mastra": "1.20.0-alpha.15"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/node": "22.20.1",