create-mastra 1.17.1-alpha.2 → 1.18.0-alpha.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 +2 -0
- package/dist/index.js +5 -4
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -14532,10 +14532,8 @@ var DepsService = class {
|
|
|
14532
14532
|
async installPackages(packages) {
|
|
14533
14533
|
const pm = this.packageManager;
|
|
14534
14534
|
const installCommand = getPackageManagerAddCommand(pm);
|
|
14535
|
-
|
|
14536
|
-
return execa(`${pm} ${installCommand} ${packageList}`, {
|
|
14535
|
+
return execa(pm, [...installCommand.split(" "), ...packages], {
|
|
14537
14536
|
all: true,
|
|
14538
|
-
shell: true,
|
|
14539
14537
|
stdio: "pipe"
|
|
14540
14538
|
});
|
|
14541
14539
|
}
|
|
@@ -15952,7 +15950,7 @@ var PinoLogger = class _PinoLogger extends MastraLogger {
|
|
|
15952
15950
|
};
|
|
15953
15951
|
|
|
15954
15952
|
var package_default = {
|
|
15955
|
-
version: "1.
|
|
15953
|
+
version: "1.18.0-alpha.3"};
|
|
15956
15954
|
var logger = createLogger(false);
|
|
15957
15955
|
function createLogger(debug = false) {
|
|
15958
15956
|
return new PinoLogger({
|
|
@@ -16666,6 +16664,9 @@ var createMastraProject = async ({
|
|
|
16666
16664
|
"pnpm-workspace.yaml",
|
|
16667
16665
|
`packages:
|
|
16668
16666
|
- '.'
|
|
16667
|
+
minimumReleaseAgeExclude:
|
|
16668
|
+
- mastra
|
|
16669
|
+
- "@mastra/*"
|
|
16669
16670
|
allowBuilds:
|
|
16670
16671
|
esbuild: true
|
|
16671
16672
|
sharp: true
|