Skip to content

Commit 2171a21

Browse files
committed
fix: remove update notifier
Dependabot is better for this.
1 parent e9c458a commit 2171a21

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

package.json

-2
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,6 @@
310310
"typedoc-plugin-missing-exports": "^2.0.0",
311311
"typescript": "^5.1.6",
312312
"typescript-docs-verifier": "^2.5.0",
313-
"update-notifier": "^7.0.0",
314313
"wherearewe": "^2.0.1",
315314
"yargs": "^17.1.1",
316315
"yargs-parser": "^21.1.1"
@@ -331,7 +330,6 @@
331330
"@types/proper-lockfile": "^4.1.1",
332331
"@types/semver": "^7.3.4",
333332
"@types/strong-log-transformer": "^1.0.2",
334-
"@types/update-notifier": "^6.0.1",
335333
"@types/yargs": "^17.0.0",
336334
"electron": "^27.0.2",
337335
"uint8arrays": "^5.0.1",

src/index.js

-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/* eslint-disable no-console */
33

44
import { readPackageUpSync } from 'read-pkg-up'
5-
import updateNotifier from 'update-notifier'
65
import yargs from 'yargs'
76
import { hideBin } from 'yargs/helpers'
87
import buildCmd from './cmds/build.js'
@@ -46,10 +45,6 @@ async function main () {
4645
throw new Error('Could not read package.json')
4746
}
4847

49-
updateNotifier({
50-
pkg: pkg.packageJson
51-
}).notify()
52-
5348
const userConfig = await loadUserConfig()
5449

5550
const res = yargs(hideBin(process.argv))

0 commit comments

Comments
 (0)