@agilecustoms/envctl 0.2.1 → 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/.github/workflows/build-and-release.yml +0 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
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
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
|