@veloxts/cli 0.6.55 → 0.6.57
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 +24 -0
- package/dist/commands/introspect.js +4 -2
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @veloxts/cli
|
|
2
2
|
|
|
3
|
+
## 0.6.57
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- feat: add DI support to ecosystem packages and main packages
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @veloxts/auth@0.6.57
|
|
10
|
+
- @veloxts/core@0.6.57
|
|
11
|
+
- @veloxts/orm@0.6.57
|
|
12
|
+
- @veloxts/router@0.6.57
|
|
13
|
+
- @veloxts/validation@0.6.57
|
|
14
|
+
|
|
15
|
+
## 0.6.56
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- fix(create): resolve TypeScript errors in RSC templates
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @veloxts/auth@0.6.56
|
|
22
|
+
- @veloxts/core@0.6.56
|
|
23
|
+
- @veloxts/orm@0.6.56
|
|
24
|
+
- @veloxts/router@0.6.56
|
|
25
|
+
- @veloxts/validation@0.6.56
|
|
26
|
+
|
|
3
27
|
## 0.6.55
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
|
@@ -245,8 +245,10 @@ function printRoutes(routes) {
|
|
|
245
245
|
*/
|
|
246
246
|
function printErrors(errors) {
|
|
247
247
|
console.log();
|
|
248
|
-
console.log(pc.bold('Error Catalog'));
|
|
248
|
+
console.log(pc.bold('Error Catalog') + pc.dim(' (reference documentation)'));
|
|
249
249
|
console.log(pc.dim('─'.repeat(60)));
|
|
250
|
+
console.log(pc.dim('These are all possible CLI error codes, not errors in your project.'));
|
|
251
|
+
console.log();
|
|
250
252
|
let currentCategory = '';
|
|
251
253
|
for (const error of errors) {
|
|
252
254
|
if (error.category !== currentCategory) {
|
|
@@ -278,7 +280,7 @@ function printSummary(result) {
|
|
|
278
280
|
parts.push(`${result.summary.routeCount} routes`);
|
|
279
281
|
}
|
|
280
282
|
if (result.summary.errorCount !== undefined) {
|
|
281
|
-
parts.push(`${result.summary.errorCount} error codes`);
|
|
283
|
+
parts.push(`${result.summary.errorCount} error codes in catalog`);
|
|
282
284
|
}
|
|
283
285
|
console.log(pc.bold(parts.join(' • ')));
|
|
284
286
|
if (result.summary.scannedFiles !== undefined) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veloxts/cli",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.57",
|
|
4
4
|
"description": "Developer tooling and CLI commands for VeloxTS framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"picocolors": "1.1.1",
|
|
41
41
|
"pluralize": "8.0.0",
|
|
42
42
|
"tsx": "4.21.0",
|
|
43
|
-
"@veloxts/
|
|
44
|
-
"@veloxts/
|
|
45
|
-
"@veloxts/
|
|
46
|
-
"@veloxts/
|
|
47
|
-
"@veloxts/
|
|
43
|
+
"@veloxts/core": "0.6.57",
|
|
44
|
+
"@veloxts/auth": "0.6.57",
|
|
45
|
+
"@veloxts/orm": "0.6.57",
|
|
46
|
+
"@veloxts/router": "0.6.57",
|
|
47
|
+
"@veloxts/validation": "0.6.57"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"@prisma/client": ">=7.0.0"
|