@koalarx/nest-cli 1.2.18 → 1.2.19

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.
@@ -26,7 +26,7 @@ export function newProject(projectName: string) {
26
26
  const gitIgnore = readFileSync(path.join(path.join(__dirname, 'code-base/gitignore', 'config.txt'))).toString()
27
27
  writeFileSync(path.join(process.cwd(), projectName, '.gitignore'), gitIgnore)
28
28
 
29
- execSync(`cd ${projectName} && npm install && npx prisma generate`, {
29
+ execSync(`cd ${projectName} && bun install && bunx prisma generate`, {
30
30
  stdio: 'inherit',
31
31
  })
32
32
 
package/index.js CHANGED
@@ -30624,7 +30624,7 @@ function newProject(projectName) {
30624
30624
  writeFileSync(path2.join(process.cwd(), projectName, ".env"), env);
30625
30625
  const gitIgnore = readFileSync(path2.join(path2.join(__dirname2, "code-base/gitignore", "config.txt"))).toString();
30626
30626
  writeFileSync(path2.join(process.cwd(), projectName, ".gitignore"), gitIgnore);
30627
- execSync(`cd ${projectName} && npm install && npx prisma generate`, {
30627
+ execSync(`cd ${projectName} && bun install && bunx prisma generate`, {
30628
30628
  stdio: "inherit"
30629
30629
  });
30630
30630
  console.log(`${import_chalk.default.green("Projeto criado com sucesso!")}`);
@@ -30635,7 +30635,7 @@ var import_chalk2 = __toESM(require_chalk(), 1);
30635
30635
  // package.json
30636
30636
  var package_default = {
30637
30637
  name: "@koalarx/nest-cli",
30638
- version: "1.2.18",
30638
+ version: "1.2.19",
30639
30639
  description: "Biblioteca de CLI para criação de projetos utilizando Koala Nest",
30640
30640
  scripts: {
30641
30641
  test: "vitest run",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koalarx/nest-cli",
3
- "version": "1.2.18",
3
+ "version": "1.2.19",
4
4
  "description": "Biblioteca de CLI para criação de projetos utilizando Koala Nest",
5
5
  "scripts": {
6
6
  "test": "vitest run",