Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@serwist/build

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@serwist/build - npm Package Compare versions

Comparing version 9.0.9 to 9.1.0-preview.0

4

dist/chunks/injectManifest.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc