@koalarx/nest-cli 1.2.19 → 1.2.20

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/README.md CHANGED
@@ -9,10 +9,11 @@ Ferramenta oficial de CLI para scaffolding rápido de projetos NestJS estruturad
9
9
  ## 📦 Instalação
10
10
 
11
11
  ```bash
12
- npm install -g @koalarx/nest-cli
12
+ bun add -g @koalarx/nest-cli
13
13
  ```
14
14
 
15
- **Requisito:** Node.js 20.18.0+
15
+ **Requisitos:**
16
+ - Bun 1.0.0+ ([Instale o Bun](https://bun.sh))
16
17
 
17
18
  ## 🚀 Uso Rápido
18
19
 
@@ -23,13 +24,12 @@ koala-nest new meu-projeto
23
24
  # Entrar no diretório
24
25
  cd meu-projeto
25
26
 
26
- # Instalar dependências
27
- npm install
28
-
29
- # Iniciar desenvolvimento
30
- npm run start:dev
27
+ # Iniciar desenvolvimento (as dependências são instaladas automaticamente com bun)
28
+ bun start:dev
31
29
  ```
32
30
 
31
+ > **Nota:** A CLI utiliza **Bun** por debaixo dos panos para instalar os pacotes do projeto no comando `koala-nest new`. Isso torna o processo mais rápido e eficiente.
32
+
33
33
  ## 📖 Documentação Completa
34
34
 
35
35
  Para guias detalhados, exemplos avançados e referência de features, consulte:
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@koalarx/utils": "^4.2.1",
24
- "@koalarx/nest": "^1.18.1",
24
+ "@koalarx/nest": "^1.18.2",
25
25
  "@nestjs/common": "^11.0.12",
26
26
  "@nestjs/config": "^4.0.1",
27
27
  "@nestjs/core": "^11.0.12",
package/index.js CHANGED
@@ -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.19",
30638
+ version: "1.2.20",
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.19",
3
+ "version": "1.2.20",
4
4
  "description": "Biblioteca de CLI para criação de projetos utilizando Koala Nest",
5
5
  "scripts": {
6
6
  "test": "vitest run",