@koalarx/nest-cli 1.0.4 → 1.0.5

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.
@@ -0,0 +1,42 @@
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
+ "version": "0.2.0",
6
+ "configurations": [
7
+ {
8
+ "type": "node",
9
+ "request": "launch",
10
+ "name": "Nest Debug",
11
+ "runtimeExecutable": "npm",
12
+ "runtimeArgs": ["run", "start:debug", "--", "--inspect-brk"],
13
+ "console": "integratedTerminal",
14
+ "restart": true,
15
+ "protocol": "auto",
16
+ "port": 9229,
17
+ "autoAttachChildProcesses": true
18
+ },
19
+ {
20
+ "type": "node",
21
+ "request": "launch",
22
+ "name": "Debug Unit Tests",
23
+ "autoAttachChildProcesses": true,
24
+ "skipFiles": ["<node_internals>/**"],
25
+ "program": "${workspaceFolder}/node_modules/vitest/vitest.mjs",
26
+ "args": ["run", "${relativeFile}"],
27
+ "smartStep": true,
28
+ "console": "integratedTerminal"
29
+ },
30
+ {
31
+ "type": "node",
32
+ "request": "launch",
33
+ "name": "Debug E2E Tests",
34
+ "autoAttachChildProcesses": true,
35
+ "skipFiles": ["<node_internals>/**"],
36
+ "program": "${workspaceFolder}/node_modules/vitest/vitest.mjs",
37
+ "args": ["run", "${relativeFile}", "--config", "./vitest.config.e2e.ts"],
38
+ "smartStep": true,
39
+ "console": "integratedTerminal"
40
+ }
41
+ ]
42
+ }
@@ -0,0 +1,136 @@
1
+ {
2
+ "vsicons.presets.angular": false,
3
+ "vsicons.presets.nestjs": true,
4
+ "material-icon-theme.activeIconPack": "nest",
5
+ "editor.fontFamily": "Fira Code",
6
+ "editor.fontSize": 15,
7
+ "editor.fontLigatures": true,
8
+ "emmet.syntaxProfiles": {
9
+ "javascript": "jsx"
10
+ },
11
+ "workbench.startupEditor": "newUntitledFile",
12
+ "javascript.suggest.autoImports": true,
13
+ "javascript.updateImportsOnFileMove.enabled": "always",
14
+ "editor.rulers": [80, 120],
15
+ "extensions.ignoreRecommendations": true,
16
+ "typescript.tsserver.log": "off",
17
+ "files.associations": {
18
+ ".sequelizerc": "javascript",
19
+ ".stylelintrc": "json",
20
+ "*.tsx": "typescriptreact",
21
+ ".env.*": "dotenv",
22
+ ".prettierrc": "json"
23
+ },
24
+ "editor.parameterHints.enabled": false,
25
+ "editor.renderLineHighlight": "gutter",
26
+ "editor.lineHeight": 26,
27
+ "editor.suggestSelection": "first",
28
+ "explorer.confirmDelete": false,
29
+ "gitlens.codeLens.recentChange.enabled": false,
30
+ "terminal.integrated.showExitAlert": false,
31
+ "[prisma]": {
32
+ "editor.formatOnSave": true
33
+ },
34
+ "typescript.suggest.autoImports": true,
35
+ "terminal.integrated.env.osx": {
36
+ "FIG_NEW_SESSION": "1"
37
+ },
38
+ "workbench.editor.labelFormat": "short",
39
+ "editor.acceptSuggestionOnCommitCharacter": false,
40
+ "explorer.compactFolders": false,
41
+ "git.enableSmartCommit": true,
42
+ "editor.accessibilitySupport": "off",
43
+ "explorer.confirmDragAndDrop": false,
44
+ "terminal.integrated.fontSize": 14,
45
+ "editor.semanticHighlighting.enabled": false,
46
+ "breadcrumbs.enabled": true,
47
+ "gitlens.codeLens.authors.enabled": false,
48
+ "editor.tabSize": 2,
49
+ "files.exclude": {
50
+ "**/CVS": true,
51
+ "**/.DS_Store": true,
52
+ "**/.hg": true,
53
+ "**/.svn": true,
54
+ "**/.git": true
55
+ },
56
+ "gitlens.codeLens.enabled": false,
57
+ "workbench.iconTheme": "material-icon-theme",
58
+ "material-icon-theme.languages.associations": {
59
+ "dotenv": "tune"
60
+ },
61
+ "material-icon-theme.files.associations": {
62
+ "vitest.config.e2e.ts": "vitest",
63
+ "*.e2e-spec.ts": "test-js",
64
+ "*.dto.ts": "diff",
65
+ "*.request.ts": "log",
66
+ "*.schema.ts": "scheme",
67
+ "*.response.ts": "commitlint"
68
+ },
69
+ "material-icon-theme.folders.associations": {
70
+ "adapters": "contract",
71
+ "grpc": "pipe",
72
+ "kube": "kubernetes",
73
+ "main": "lib",
74
+ "websockets": "pipe",
75
+ "implementations": "core",
76
+ "protos": "pipe",
77
+ "entities": "class",
78
+ "kafka": "pipe",
79
+ "use-cases": "functions",
80
+ "migrations": "tools",
81
+ "schemas": "class",
82
+ "useCases": "functions",
83
+ "eslint-config": "tools",
84
+ "typeorm": "database",
85
+ "_shared": "shared",
86
+ "mappers": "meta",
87
+ "fakes": "mock",
88
+ "modules": "components",
89
+ "subscribers": "messages",
90
+ "domain": "class",
91
+ "protocols": "contract",
92
+ "infra": "app",
93
+ "view-models": "views",
94
+ "presentation": "template",
95
+ "dtos": "typescript",
96
+ "http": "container",
97
+ "providers": "include",
98
+ "factories": "class",
99
+ "repositories": "mappings",
100
+ "filters": "pipe"
101
+ },
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"
113
+ },
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"
122
+ },
123
+ "editor.codeActionsOnSave": {
124
+ "source.fixAll.eslint": "explicit"
125
+ },
126
+ "terminal.integrated.defaultProfile.windows": "Command Prompt",
127
+ "git.confirmSync": false,
128
+ "files.eol": "\n",
129
+ "workbench.productIconTheme": "Default",
130
+ "npm.scriptExplorerAction": "run",
131
+ "npm.packageManager": "npm",
132
+ "editor.wordWrap": "on",
133
+ "editor.wrappingIndent": "indent",
134
+ "a-file-icon-vscode.activeIconPacks": ["nest"],
135
+ "a-file-icon-vscode.arrowTheme": "plusMinus"
136
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "type": "npm",
6
+ "script": "start:debug",
7
+ "group": "build",
8
+ "problemMatcher": [],
9
+ "label": "npm: start:debug",
10
+ "detail": "nest start --debug --watch"
11
+ }
12
+ ]
13
+ }
package/index.js CHANGED
@@ -30,7 +30,7 @@ var import_inquirer = __toESM(require("inquirer"));
30
30
  // package.json
31
31
  var package_default = {
32
32
  name: "@koalarx/nest-cli",
33
- version: "1.0.4",
33
+ version: "1.0.5",
34
34
  description: "Biblioteca de CLI para cria\xE7\xE3o de projetos utilizando Koala Nest",
35
35
  scripts: {
36
36
  test: "vitest run",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koalarx/nest-cli",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Biblioteca de CLI para criação de projetos utilizando Koala Nest",
5
5
  "scripts": {
6
6
  "test": "vitest run",