File tree Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Expand file tree Collapse file tree 1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,19 @@ const argv = process.argv.slice(2);
15
15
const pkg = require ( './package.json' ) ;
16
16
const updateNotifier = require ( 'update-notifier' ) ;
17
17
18
- // notify if there's an update
19
- updateNotifier ( { pkg} ) . notify ( { defer : false } ) ;
18
+ // Notify if there's an update in 7 days' interval
19
+ const notifier = updateNotifier ( {
20
+ pkg,
21
+ updateCheckInterval : 1000 * 60 * 60 * 24 * 7 ,
22
+ } ) ;
23
+
24
+ if ( notifier . update ) {
25
+ const updateMsg =
26
+ `Update available ${ notifier . update . current } -> ${ notifier . update . latest } ` +
27
+ '\nTo update:' +
28
+ '\n"npm i [-g] react-devtools" or "yarn add react-devtools"' ;
29
+ notifier . notify ( { defer : false , message : updateMsg } ) ;
30
+ }
20
31
21
32
const result = spawn . sync ( electron , [ require . resolve ( './app' ) ] . concat ( argv ) , {
22
33
stdio : 'ignore' ,
You can’t perform that action at this time.
0 commit comments