@agilecustoms/envctl 0.3.0 → 0.3.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.
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ import updateNotifier from 'update-notifier';
5
5
  import { deleteIt, ephemeral, register } from './commands/index.js';
6
6
  const require = createRequire(import.meta.url);
7
7
  const pkg = require('../package.json');
8
- updateNotifier({ pkg }).notify();
8
+ updateNotifier({ pkg, updateCheckInterval: 0 }).notify();
9
9
  const program = new Command();
10
10
  program
11
11
  .name('envctl')
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@agilecustoms/envctl",
3
3
  "description": "node.js CLI client for manage environments",
4
- "version": "0.3.0",
4
+ "version": "0.3.1",
5
5
  "author": "Alex Chekulaev",
6
6
  "type": "module",
7
7
  "bin": {
package/src/index.ts CHANGED
@@ -9,7 +9,7 @@ const require = createRequire(import.meta.url) // custom 'require' relative to c
9
9
  const pkg = require('../package.json')
10
10
 
11
11
  // Check for updates
12
- updateNotifier({ pkg }).notify()
12
+ updateNotifier({ pkg, updateCheckInterval: 0 }).notify()
13
13
 
14
14
  const program = new Command()
15
15
  program