forge-sql-orm-cli 2.0.20 → 2.0.21
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/package.json +11 -11
- package/src/.env +0 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "forge-sql-orm-cli",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.21",
|
|
4
4
|
"description": "CLI tool for Forge SQL ORM",
|
|
5
5
|
"main": "dist-cli/cli.js",
|
|
6
6
|
"types": "dist-cli/cli.d.ts",
|
|
@@ -42,9 +42,9 @@
|
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"commander": "^13.1.0",
|
|
44
44
|
"dotenv": "^16.5.0",
|
|
45
|
-
"drizzle-kit": "^0.31.
|
|
46
|
-
"forge-sql-orm": "^2.0.
|
|
47
|
-
"inquirer": "^12.6.
|
|
45
|
+
"drizzle-kit": "^0.31.1",
|
|
46
|
+
"forge-sql-orm": "^2.0.21",
|
|
47
|
+
"inquirer": "^12.6.1",
|
|
48
48
|
"mysql2": "^3.14.1",
|
|
49
49
|
"reflect-metadata": "^0.2.2"
|
|
50
50
|
},
|
|
@@ -52,15 +52,15 @@
|
|
|
52
52
|
"drizzle-orm": "^0.41.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@eslint/js": "^9.
|
|
56
|
-
"@types/inquirer": "^9.0.
|
|
57
|
-
"@types/node": "^22.15.
|
|
58
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
59
|
-
"@typescript-eslint/parser": "^8.
|
|
60
|
-
"eslint-config-prettier": "^10.1.
|
|
55
|
+
"@eslint/js": "^9.27.0",
|
|
56
|
+
"@types/inquirer": "^9.0.8",
|
|
57
|
+
"@types/node": "^22.15.18",
|
|
58
|
+
"@typescript-eslint/eslint-plugin": "^8.32.1",
|
|
59
|
+
"@typescript-eslint/parser": "^8.32.1",
|
|
60
|
+
"eslint-config-prettier": "^10.1.5",
|
|
61
61
|
"eslint-plugin-import": "^2.31.0",
|
|
62
62
|
"reflect-metadata": "^0.2.2",
|
|
63
63
|
"typescript": "^5.8.3",
|
|
64
|
-
"vite": "^6.3.
|
|
64
|
+
"vite": "^6.3.5"
|
|
65
65
|
}
|
|
66
66
|
}
|
package/src/.env
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export FORGE_SQL_ORM_HOST=localhost
|
|
2
|
-
export FORGE_SQL_ORM_PORT=3311
|
|
3
|
-
export FORGE_SQL_ORM_USER=root
|
|
4
|
-
export FORGE_SQL_ORM_PASSWORD=admin
|
|
5
|
-
export FORGE_SQL_ORM_DBNAME=testDb
|
|
6
|
-
export FORGE_SQL_ORM_OUTPUT=src/migration
|
|
7
|
-
export FORGE_SQL_ORM_ENTITIESPATH=src/migration
|