We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bb6ef2 commit c30d09dCopy full SHA for c30d09d
packages/doxdox-cli/src/index.ts
@@ -10,7 +10,7 @@ import { fileURLToPath } from 'url';
10
11
import { globby } from 'globby';
12
13
-import updateNotifier from 'update-notifier';
+import updateNotifier from 'simple-update-notifier';
14
15
import parseCmdArgs from 'parse-cmd-args';
16
@@ -89,9 +89,7 @@ const overridePackage = String(
89
if (pkgPath) {
90
const pkg = JSON.parse(await fs.readFile(pkgPath, 'utf8'));
91
92
- const notifier = updateNotifier({ pkg });
93
-
94
- notifier.notify();
+ updateNotifier({ pkg });
95
96
if (showVersion) {
97
process.stdout.write(`${pkg.version}${EOL}`);
0 commit comments