@agilecustoms/envctl 0.3.0 → 0.3.2
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/README.md +1 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/README.md
CHANGED
|
@@ -45,3 +45,4 @@ big .js file (as I do for `gha-upload-3` and `gha-healthcheck`) but it will be h
|
|
|
45
45
|
So I ended up with publishing this client as npm package in npmjs
|
|
46
46
|
- CI environments can install & run it with one command via `npx`
|
|
47
47
|
- developer will install it globally via `npm install -g @agilecustoms/envctl`
|
|
48
|
+
|
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
|