create-factory 0.1.0 → 0.1.1
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 +20 -0
- package/dist/index.js +1 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# create-factory
|
|
2
2
|
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fixed generated Factory projects installing stale Mastra package versions. ([#20087](https://github.com/mastra-ai/mastra/pull/20087))
|
|
8
|
+
|
|
9
|
+
- Fixed the Factory template sync to replace linked dependencies with the exact versions currently published under npm's latest tag. ([#20093](https://github.com/mastra-ai/mastra/pull/20093))
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`7d3a12e`](https://github.com/mastra-ai/mastra/commit/7d3a12ecfd0c4994ace2583e5497cb3a544ae350)]:
|
|
12
|
+
- mastra@1.20.1
|
|
13
|
+
|
|
14
|
+
## 0.1.1-alpha.0
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Fixed generated Factory projects installing stale Mastra package versions. ([#20087](https://github.com/mastra-ai/mastra/pull/20087))
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [[`7d3a12e`](https://github.com/mastra-ai/mastra/commit/7d3a12ecfd0c4994ace2583e5497cb3a544ae350)]:
|
|
21
|
+
- mastra@1.20.1-alpha.0
|
|
22
|
+
|
|
3
23
|
## 0.1.0
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
package/dist/index.js
CHANGED
|
@@ -376,9 +376,7 @@ function detectPackageManager() {
|
|
|
376
376
|
function getInstallArgs(packageManager) {
|
|
377
377
|
switch (packageManager) {
|
|
378
378
|
case "npm":
|
|
379
|
-
return ["install", "--
|
|
380
|
-
case "pnpm":
|
|
381
|
-
return ["install", "--prefer-offline"];
|
|
379
|
+
return ["install", "--no-audit", "--no-fund"];
|
|
382
380
|
default:
|
|
383
381
|
return ["install"];
|
|
384
382
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-factory",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
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.
|
|
41
|
+
"mastra": "1.20.1"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@types/node": "22.20.1",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"tsup": "^8.5.1",
|
|
47
47
|
"typescript": "^6.0.3",
|
|
48
48
|
"vitest": "4.1.10",
|
|
49
|
-
"@internal/lint": "0.0.
|
|
49
|
+
"@internal/lint": "0.0.116"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "tsup --silent --config tsup.config.ts",
|