npm-check-updates 22.2.7 → 22.2.8
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 +4 -11
- package/build/cli.cjs +21 -21
- package/build/cli.cjs.map +1 -1
- package/build/cli.js +377 -410
- package/build/cli.js.map +1 -1
- package/build/index.cjs +127 -131
- package/build/index.cjs.map +1 -1
- package/build/index.d.ts +2 -5
- package/build/index.js +3968 -6093
- package/build/index.js.map +1 -1
- package/package.json +33 -31
- package/build/cli.d.ts +0 -1
package/build/index.d.ts
CHANGED
|
@@ -64,11 +64,8 @@ export declare type RcOptions = Omit<RunOptions, Nonsensical> & {
|
|
|
64
64
|
|
|
65
65
|
/** Main entry point.
|
|
66
66
|
*
|
|
67
|
-
* @returns
|
|
68
|
-
*
|
|
69
|
-
* | Index<VersionSpec> --jsonUpgraded returns only upgraded dependencies.
|
|
70
|
-
* | void --global upgrade returns void.
|
|
71
|
-
* >
|
|
67
|
+
* @returns The upgraded package file by default, an {@link Index} of only the
|
|
68
|
+
* upgraded dependencies with `--jsonUpgraded`, or `void` with `--global`.
|
|
72
69
|
*/
|
|
73
70
|
declare function run_2(runOptions?: RunOptions, { cli }?: {
|
|
74
71
|
cli?: boolean;
|