create-factory 0.1.0-alpha.8 → 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 +6 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
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
|
+
|
|
3
9
|
## 0.1.0-alpha.8
|
|
4
10
|
|
|
5
11
|
### Patch 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.
|
|
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",
|