npm-check-updates 22.2.5 → 22.2.7
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 +6 -6
- package/build/cli.cjs +44 -54
- package/build/cli.cjs.map +1 -1
- package/build/cli.js +5838 -6037
- package/build/cli.js.map +1 -1
- package/build/index.cjs +407 -579
- package/build/index.cjs.map +1 -1
- package/build/index.d.ts +11 -2
- package/build/index.js +36302 -43468
- package/build/index.js.map +1 -1
- package/package.json +10 -51
- package/build/chunks/chunk-D-V8JGID.js +0 -29
- package/build/chunks/chunk-jrEOD7hJ.cjs +0 -1
package/build/index.d.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { SemVer } from 'semver-utils';
|
|
2
|
-
|
|
3
1
|
/** A function that can be provided to the --cooldown option for custom cooldown predicate. */
|
|
4
2
|
declare type CooldownFunction = (packageName: string) => number | string | null;
|
|
5
3
|
|
|
@@ -218,6 +216,17 @@ export declare interface RunOptions {
|
|
|
218
216
|
workspaces?: boolean;
|
|
219
217
|
}
|
|
220
218
|
|
|
219
|
+
declare interface SemVer {
|
|
220
|
+
semver?: string | undefined;
|
|
221
|
+
version?: string | undefined;
|
|
222
|
+
major?: string | undefined;
|
|
223
|
+
minor?: string | undefined;
|
|
224
|
+
patch?: string | undefined;
|
|
225
|
+
release?: string | undefined;
|
|
226
|
+
build?: string | undefined;
|
|
227
|
+
operator?: string | undefined;
|
|
228
|
+
}
|
|
229
|
+
|
|
221
230
|
/** A function that can be provided to the --target option for custom filtering. */
|
|
222
231
|
declare type TargetFunction = (packageName: string, versionRange: SemVer[]) => string;
|
|
223
232
|
|