ohdear-npm-audit 0.1.0 → 0.1.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/dist/next.d.ts +1 -1
- package/package.json +3 -3
package/dist/next.d.ts
CHANGED
|
@@ -3,4 +3,4 @@ export interface WithOhDearHealthOptions {
|
|
|
3
3
|
* Default: "src/app/api/health/deps-manifest.json" */
|
|
4
4
|
output?: string;
|
|
5
5
|
}
|
|
6
|
-
export declare function withOhDearHealth<T
|
|
6
|
+
export declare function withOhDearHealth<T>(nextConfig: T, options?: WithOhDearHealthOptions): T;
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ohdear-npm-audit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Oh Dear Application Health check for npm audit critical vulnerabilities",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
8
|
"types": "./dist/handler.d.ts",
|
|
9
|
-
"
|
|
9
|
+
"default": "./dist/handler.js"
|
|
10
10
|
},
|
|
11
11
|
"./next": {
|
|
12
12
|
"types": "./dist/next.d.ts",
|
|
13
|
-
"
|
|
13
|
+
"default": "./dist/next.js"
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"bin": {
|