avo 3.2.7 → 3.2.8
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/cli.js +13 -8
- package/package.json +3 -3
package/cli.js
CHANGED
|
@@ -1338,14 +1338,19 @@ yargs(hideBin(process.argv)) // eslint-disable-line no-unused-expressions
|
|
|
1338
1338
|
command: 'track-install',
|
|
1339
1339
|
desc: false,
|
|
1340
1340
|
handler: async (argv) => {
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1341
|
+
try {
|
|
1342
|
+
Avo.cliInstalled({
|
|
1343
|
+
userId_: installIdOrUserId(),
|
|
1344
|
+
cliInvokedByCi: invokedByCi(),
|
|
1345
|
+
}).catch((error) => {
|
|
1346
|
+
if (argv.verbose) {
|
|
1347
|
+
console.error('Request to track cli installed failed', error);
|
|
1348
|
+
}
|
|
1349
|
+
});
|
|
1350
|
+
}
|
|
1351
|
+
catch (error) {
|
|
1352
|
+
console.error('Unexpected error failed to track cli installed', error);
|
|
1353
|
+
}
|
|
1349
1354
|
},
|
|
1350
1355
|
})
|
|
1351
1356
|
.command({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "avo",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "The command-line interface for Avo",
|
|
6
6
|
"author": "Avo (https://www.avo.app)",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"@typescript-eslint/parser": "^5.30.5",
|
|
63
63
|
"eslint": "^7.32.0 || ^8.2.0",
|
|
64
64
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
65
|
-
"eslint-config-prettier": "^
|
|
65
|
+
"eslint-config-prettier": "^9.0.0",
|
|
66
66
|
"eslint-plugin-import": "^2.25.2",
|
|
67
|
-
"prettier": "
|
|
67
|
+
"prettier": "3.0.3",
|
|
68
68
|
"typescript": "^5.0.2"
|
|
69
69
|
}
|
|
70
70
|
}
|