@serwist/build
Advanced tools
Comparing version 9.0.9 to 9.1.0-preview.0
@@ -12,4 +12,4 @@ import { z } from 'zod'; | ||
const baseInjectPartial = z.object({ | ||
injectionPoint: z.string().default("self.__SW_MANIFEST"), | ||
swSrc: z.string() | ||
injectionPoint: z.string().min(1, "`injectionPoint` must not be empty!").default("self.__SW_MANIFEST"), | ||
swSrc: z.string().min(1, "`swSrc` must not be empty!") | ||
}).strict("Do not pass invalid properties to InjectPartial!"); | ||
@@ -16,0 +16,0 @@ const injectManifestOptions = basePartial.merge(globPartial).merge(baseInjectPartial).merge(requiredSwDestPartial).merge(requiredGlobDirectoryPartial).strict("Do not pass invalid properties to InjectManifestOptions!"); |
{ | ||
"name": "@serwist/build", | ||
"version": "9.0.9", | ||
"version": "9.1.0-preview.0", | ||
"type": "module", | ||
@@ -59,8 +59,8 @@ "description": "A module that integrates into your build process, helping you generate a manifest of local files that should be precached.", | ||
"@types/common-tags": "1.8.4", | ||
"@types/node": "22.7.4", | ||
"rollup": "4.22.5", | ||
"@types/node": "22.8.6", | ||
"rollup": "4.24.3", | ||
"type-fest": "4.26.1", | ||
"typescript": "5.6.2", | ||
"@serwist/configs": "9.0.9", | ||
"@serwist/utils": "9.0.9" | ||
"typescript": "5.6.3", | ||
"@serwist/configs": "9.1.0-preview.0", | ||
"@serwist/utils": "9.1.0-preview.0" | ||
}, | ||
@@ -67,0 +67,0 @@ "peerDependencies": { |
@@ -23,3 +23,3 @@ /* | ||
* Use `JSON.stringify` instead. | ||
* | ||
* | ||
* @deprecated | ||
@@ -26,0 +26,0 @@ */ |
@@ -22,2 +22,2 @@ /* | ||
} | ||
} | ||
}; |
@@ -10,4 +10,4 @@ import { z } from "zod"; | ||
.object({ | ||
injectionPoint: z.string().default("self.__SW_MANIFEST"), | ||
swSrc: z.string(), | ||
injectionPoint: z.string().min(1, "`injectionPoint` must not be empty!").default("self.__SW_MANIFEST"), | ||
swSrc: z.string().min(1, "`swSrc` must not be empty!"), | ||
}) | ||
@@ -14,0 +14,0 @@ .strict("Do not pass invalid properties to InjectPartial!"); |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 2 instances in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 2 instances in 1 package
154312
1