@veloxts/cli 0.6.63 → 0.6.64
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 +12 -0
- package/dist/cli.js +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @veloxts/cli
|
|
2
2
|
|
|
3
|
+
## 0.6.64
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix(create): add @veloxts/velox and @veloxts/mcp to root package.json
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @veloxts/auth@0.6.64
|
|
10
|
+
- @veloxts/core@0.6.64
|
|
11
|
+
- @veloxts/orm@0.6.64
|
|
12
|
+
- @veloxts/router@0.6.64
|
|
13
|
+
- @veloxts/validation@0.6.64
|
|
14
|
+
|
|
3
15
|
## 0.6.63
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/cli.js
CHANGED
|
@@ -27,7 +27,7 @@ function createCLI() {
|
|
|
27
27
|
const program = new Command();
|
|
28
28
|
program
|
|
29
29
|
.name('velox')
|
|
30
|
-
.description('VeloxTS Framework -
|
|
30
|
+
.description('VeloxTS Framework - TypeScript full-stack framework')
|
|
31
31
|
.version(CLI_VERSION, '-v, --version', 'Output the current version')
|
|
32
32
|
.helpOption('-h, --help', 'Display help for command');
|
|
33
33
|
// Register commands
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veloxts/cli",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.64",
|
|
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.64",
|
|
44
|
+
"@veloxts/auth": "0.6.64",
|
|
45
|
+
"@veloxts/orm": "0.6.64",
|
|
46
|
+
"@veloxts/router": "0.6.64",
|
|
47
|
+
"@veloxts/validation": "0.6.64"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"@prisma/client": ">=7.0.0"
|