create-mastra 0.13.0-alpha.3 → 0.13.0-alpha.4

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,11 @@
1
1
  # create-mastra
2
2
 
3
+ ## 0.13.0-alpha.4
4
+
5
+ ### Patch Changes
6
+
7
+ - clean up console logs in monorepo ([#7926](https://github.com/mastra-ai/mastra/pull/7926))
8
+
3
9
  ## 0.13.0-alpha.3
4
10
 
5
11
  ## 0.13.0-alpha.2
package/dist/index.js CHANGED
@@ -1596,7 +1596,7 @@ var FileEnvService = class extends EnvService {
1596
1596
  ${key}=${value}`;
1597
1597
  }
1598
1598
  await this.writeFile({ filePath, data });
1599
- console.log(`${key} set to ${value} in ENV file.`);
1599
+ console.info(`${key} set to ${value} in ENV file.`);
1600
1600
  return data;
1601
1601
  }
1602
1602
  async getEnvValue(key) {
@@ -1633,7 +1633,7 @@ var FileService = class {
1633
1633
  const filePath = path3.resolve(__dirname, "starter-files", inputFile);
1634
1634
  const fileString = fs4__default__default.readFileSync(filePath, "utf8");
1635
1635
  if (fs4__default__default.existsSync(outputFilePath) && !replaceIfExists) {
1636
- console.log(`${outputFilePath} already exists`);
1636
+ console.info(`${outputFilePath} already exists`);
1637
1637
  return false;
1638
1638
  }
1639
1639
  await fsExtra.outputFile(outputFilePath, fileString);
@@ -2432,7 +2432,7 @@ var createMastraProject = async ({
2432
2432
  }
2433
2433
  s2.stop(".gitignore added");
2434
2434
  Se("Project created successfully");
2435
- console.log("");
2435
+ console.info("");
2436
2436
  return { projectName };
2437
2437
  } catch (error) {
2438
2438
  s2.stop();
@@ -2672,7 +2672,7 @@ program.version(`${version}`, "-v, --version").description(`create-mastra ${vers
2672
2672
  analytics.trackCommand({
2673
2673
  command: "version"
2674
2674
  });
2675
- console.log(`create-mastra ${version}`);
2675
+ console.info(`create-mastra ${version}`);
2676
2676
  } catch {
2677
2677
  }
2678
2678
  });