@koalarx/nest-cli 1.2.21 → 1.2.23

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.
@@ -1,15 +1,12 @@
1
1
  {
2
- // Use o IntelliSense para saber mais sobre os atributos possíveis.
3
- // Focalizar para exibir as descrições dos atributos existentes.
4
- // Para obter mais informações, acesse: https://go.microsoft.com/fwlink/?linkid=830387
5
2
  "version": "0.2.0",
6
3
  "configurations": [
7
4
  {
8
5
  "type": "node",
9
6
  "request": "launch",
10
- "name": "Nest Debug",
11
- "runtimeExecutable": "npm",
12
- "runtimeArgs": ["run", "start:debug", "--", "--inspect-brk"],
7
+ "name": "Nest Debug (Bun)",
8
+ "runtimeExecutable": "bun",
9
+ "runtimeArgs": ["run", "start:debug"],
13
10
  "console": "integratedTerminal",
14
11
  "restart": true,
15
12
  "protocol": "auto",
@@ -19,22 +16,24 @@
19
16
  {
20
17
  "type": "node",
21
18
  "request": "launch",
22
- "name": "Debug Unit Tests",
23
- "autoAttachChildProcesses": true,
24
- "skipFiles": ["<node_internals>/**"],
19
+ "name": "Debug Unit Tests (Bun)",
20
+ "runtimeExecutable": "bun",
25
21
  "program": "${workspaceFolder}/node_modules/vitest/vitest.mjs",
26
22
  "args": ["run", "${relativeFile}"],
23
+ "autoAttachChildProcesses": true,
24
+ "skipFiles": ["<node_internals>/**"],
27
25
  "smartStep": true,
28
26
  "console": "integratedTerminal"
29
27
  },
30
28
  {
31
29
  "type": "node",
32
30
  "request": "launch",
33
- "name": "Debug E2E Tests",
34
- "autoAttachChildProcesses": true,
35
- "skipFiles": ["<node_internals>/**"],
31
+ "name": "Debug E2E Tests (Bun)",
32
+ "runtimeExecutable": "bun",
36
33
  "program": "${workspaceFolder}/node_modules/vitest/vitest.mjs",
37
34
  "args": ["run", "${relativeFile}", "--config", "./vitest.config.e2e.ts"],
35
+ "autoAttachChildProcesses": true,
36
+ "skipFiles": ["<node_internals>/**"],
38
37
  "smartStep": true,
39
38
  "console": "integratedTerminal"
40
39
  }
@@ -1,6 +1,4 @@
1
1
  {
2
- "vsicons.presets.angular": false,
3
- "vsicons.presets.nestjs": true,
4
2
  "material-icon-theme.activeIconPack": "nest",
5
3
  "editor.fontFamily": "Fira Code",
6
4
  "editor.fontSize": 15,
@@ -99,27 +97,13 @@
99
97
  "repositories": "mappings",
100
98
  "filters": "pipe"
101
99
  },
102
- "symbols.folders.associations": {
103
- "data": "folder-database",
104
- "auth": "folder-purple",
105
- "common": "folder-green",
106
- "controllers": "folder-yellow",
107
- "decorators": "folder-yellow",
108
- "repositories": "folder-yellow",
109
- "services": "folder-yellow",
110
- "filters": "folder-blue",
111
- "guards": "folder-orange",
112
- "test": "folder-context"
100
+ "[javascript]": {
101
+ "editor.defaultFormatter": "esbenp.prettier-vscode"
113
102
  },
114
- "symbols.files.associations": {
115
- "*.module.ts": "nest",
116
- "*.controller.ts": "nest",
117
- "*.guard.ts": "nest",
118
- "*.spec.ts": "ts-test",
119
- "*.e2e-spec.ts": "ts-test",
120
- "vitest.config.e2e.ts": "vite",
121
- ".env.example": "gear"
103
+ "[typescript]": {
104
+ "editor.defaultFormatter": "esbenp.prettier-vscode"
122
105
  },
106
+ "prettier.documentSelectors": ["**/*.ts", "**/*.tsx", "**/*.js"],
123
107
  "editor.codeActionsOnSave": {
124
108
  "source.fixAll.eslint": "explicit"
125
109
  },
@@ -131,6 +115,4 @@
131
115
  "npm.packageManager": "npm",
132
116
  "editor.wordWrap": "on",
133
117
  "editor.wrappingIndent": "indent",
134
- "a-file-icon-vscode.activeIconPacks": ["nest"],
135
- "a-file-icon-vscode.arrowTheme": "plusMinus"
136
118
  }
@@ -2,12 +2,16 @@
2
2
  "version": "2.0.0",
3
3
  "tasks": [
4
4
  {
5
- "type": "npm",
6
- "script": "start:debug",
7
- "group": "build",
5
+ "label": "bun: start:debug",
6
+ "type": "shell",
7
+ "command": "bun",
8
+ "args": ["run", "start:debug"],
9
+ "group": {
10
+ "kind": "build",
11
+ "isDefault": true
12
+ },
8
13
  "problemMatcher": [],
9
- "label": "npm: start:debug",
10
- "detail": "nest start --debug --watch"
14
+ "isBackground": true
11
15
  }
12
16
  ]
13
17
  }
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@koalarx/utils": "^4.2.1",
24
- "@koalarx/nest": "^1.18.3",
24
+ "@koalarx/nest": "^1.18.4",
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.21",
30638
+ version: "1.2.23",
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.21",
3
+ "version": "1.2.23",
4
4
  "description": "Biblioteca de CLI para criação de projetos utilizando Koala Nest",
5
5
  "scripts": {
6
6
  "test": "vitest run",