cherrypick-interactive 1.10.0 → 1.10.1

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.
Files changed (2) hide show
  1. package/cli.js +1 -0
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -21,6 +21,7 @@ const pkg = JSON.parse(readFileSync(join(__dirname, 'package.json'), 'utf8'));
21
21
 
22
22
  const notifier = updateNotifier({
23
23
  pkg,
24
+ updateCheckInterval: 1000 * 60 * 60, // 1 hour
24
25
  });
25
26
 
26
27
  // Only print if a *real* newer version exists
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cherrypick-interactive",
3
- "version": "1.10.0",
3
+ "version": "1.10.1",
4
4
  "description": "Interactively cherry-pick commits that are in dev but not in main, using subject-based comparison.",
5
5
  "main": "cli.js",
6
6
  "bin": "cli.js",