create-factory 0.1.3-alpha.4 → 0.1.3
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 +11 -0
- package/README.md +13 -19
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# create-factory
|
|
2
2
|
|
|
3
|
+
## 0.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Improved Factory onboarding so any key skips optional Mastra Platform setup while Ctrl+C cancels project creation. ([#20299](https://github.com/mastra-ai/mastra/pull/20299))
|
|
8
|
+
|
|
9
|
+
- Generated Factory projects now use the Factory UI bundled with the Mastra CLI instead of including editable browser source and its build dependencies. ([#20246](https://github.com/mastra-ai/mastra/pull/20246))
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`6ce9581`](https://github.com/mastra-ai/mastra/commit/6ce9581ba0ef671dd04e9ad6c6290f2aa7028550)]:
|
|
12
|
+
- mastra@1.20.3
|
|
13
|
+
|
|
3
14
|
## 0.1.3-alpha.4
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,32 +1,26 @@
|
|
|
1
|
-
# create-factory
|
|
1
|
+
# `create-factory`
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
`create-factory` scaffolds a Mastra Factory project.
|
|
4
4
|
|
|
5
|
-
```
|
|
5
|
+
```shell
|
|
6
6
|
npm create factory
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
It clones the public [`softwarefactory-template`](https://github.com/mastra-ai/softwarefactory-template), installs dependencies, and initializes Git. Run `npm create factory -- --help` for options.
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## Development
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
Usage: create-factory [options] [project-name]
|
|
13
|
+
This package owns prompts, template cloning, package-manager detection, optional Mastra platform setup, dependency installation, and Git initialization.
|
|
15
14
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
Options:
|
|
22
|
-
--template <template-name> Create a project from a template (public GitHub URL) (default: "https://github.com/mastra-ai/softwarefactory-template")
|
|
23
|
-
--no-platform Skip Mastra platform sign-in, project, and Neon provisioning
|
|
24
|
-
--org <org> Mastra organization id or name — skips the interactive org picker
|
|
25
|
-
--region <region> Platform project region (eu or us); prompts when omitted
|
|
26
|
-
-v, --version output the version number
|
|
27
|
-
-h, --help display help for command
|
|
15
|
+
```shell
|
|
16
|
+
pnpm --filter create-factory test
|
|
17
|
+
pnpm --filter create-factory check
|
|
18
|
+
pnpm --filter create-factory lint
|
|
19
|
+
pnpm --filter create-factory build
|
|
28
20
|
```
|
|
29
21
|
|
|
22
|
+
Generated project behavior belongs to the separate template repository.
|
|
23
|
+
|
|
30
24
|
## License
|
|
31
25
|
|
|
32
26
|
Apache-2.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-factory",
|
|
3
|
-
"version": "0.1.3
|
|
3
|
+
"version": "0.1.3",
|
|
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.3
|
|
41
|
+
"mastra": "1.20.3"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/node": "22.20.1",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"tsdown": "0.22.9",
|
|
47
47
|
"typescript": "^6.0.3",
|
|
48
48
|
"vitest": "4.1.10",
|
|
49
|
-
"@internal/lint": "0.0.
|
|
49
|
+
"@internal/lint": "0.0.118"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "tsdown --silent --config tsdown.config.ts",
|