inboxd 1.0.7 → 1.0.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/package.json +3 -2
- package/src/cli.js +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "inboxd",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "CLI assistant for Gmail monitoring with multi-account support and AI-ready JSON output",
|
|
5
5
|
"main": "src/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
"commander": "^14.0.2",
|
|
45
45
|
"googleapis": "^169.0.0",
|
|
46
46
|
"node-notifier": "^10.0.1",
|
|
47
|
-
"open": "^10.1.0"
|
|
47
|
+
"open": "^10.1.0",
|
|
48
|
+
"update-notifier": "^7.3.1"
|
|
48
49
|
},
|
|
49
50
|
"devDependencies": {
|
|
50
51
|
"eslint": "^9.39.2",
|
package/src/cli.js
CHANGED
|
@@ -37,6 +37,10 @@ async function main() {
|
|
|
37
37
|
const chalk = (await import('chalk')).default;
|
|
38
38
|
const boxen = (await import('boxen')).default;
|
|
39
39
|
|
|
40
|
+
// Check for updates (non-blocking, cached)
|
|
41
|
+
const updateNotifier = (await import('update-notifier')).default;
|
|
42
|
+
updateNotifier({ pkg }).notify();
|
|
43
|
+
|
|
40
44
|
program
|
|
41
45
|
.name('inbox')
|
|
42
46
|
.description('Gmail monitoring CLI with multi-account support')
|