uranio 0.1.71 → 0.1.72
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/.uranio/package.json +1 -1
- package/package.json +3 -3
- package/scripts/version.sh +3 -3
package/.uranio/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uranio",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.72",
|
|
4
4
|
"description": "Uranio is a type-safe ODM for MongoDB",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"repository": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"upgrade:plutonio": "npx remove plutonio && npx add plutonio"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@types/inquirer": "^
|
|
41
|
+
"@types/inquirer": "^8.2.10",
|
|
42
42
|
"@types/node": "^20.9.0",
|
|
43
43
|
"@typescript-eslint/eslint-plugin": "^5.59.1",
|
|
44
44
|
"@typescript-eslint/parser": "^5.59.1",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@aws-sdk/util-dynamodb": "^3.969.0",
|
|
61
61
|
"app-root-path": "^3.1.0",
|
|
62
62
|
"i0n": "^0.9.0",
|
|
63
|
-
"inquirer": "^
|
|
63
|
+
"inquirer": "^8.2.6",
|
|
64
64
|
"mongodb": "^7.0.0",
|
|
65
65
|
"mysql2": "^3.16.0",
|
|
66
66
|
"plutonio": "^0.7.2",
|
package/scripts/version.sh
CHANGED
|
@@ -14,7 +14,7 @@ if ! npm whoami --loglevel=error > /dev/null 2>&1; then
|
|
|
14
14
|
echo "You are not logged in to npm."
|
|
15
15
|
echo "Please log in to continue."
|
|
16
16
|
echo
|
|
17
|
-
npm login
|
|
17
|
+
npm login 2>&1 | grep -v "npm warn Unknown"
|
|
18
18
|
if ! npm whoami --loglevel=error > /dev/null 2>&1; then
|
|
19
19
|
echo
|
|
20
20
|
echo "Error: npm login failed. Aborting."
|
|
@@ -22,10 +22,10 @@ if ! npm whoami --loglevel=error > /dev/null 2>&1; then
|
|
|
22
22
|
exit 1
|
|
23
23
|
fi
|
|
24
24
|
echo
|
|
25
|
-
echo "Successfully logged in to npm as: $(npm whoami)"
|
|
25
|
+
echo "Successfully logged in to npm as: $(npm whoami 2>/dev/null)"
|
|
26
26
|
echo
|
|
27
27
|
else
|
|
28
|
-
echo "Already logged in to npm as: $(npm whoami --loglevel=error)"
|
|
28
|
+
echo "Already logged in to npm as: $(npm whoami --loglevel=error 2>/dev/null)"
|
|
29
29
|
echo
|
|
30
30
|
fi
|
|
31
31
|
|