🚀 Big News:Socket Has Acquired Secure Annex.Learn More
Socket
Book a DemoSign in
Socket

@astrojs/partytown

Package Overview
Dependencies
Maintainers
2
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@astrojs/partytown - npm Package Compare versions

Comparing version
2.1.4
to
2.1.5
+2
-2
dist/sirv.js

@@ -86,4 +86,4 @@ /**

let [x, y] = req.headers.range.replace("bytes=", "").split("-");
let end = opts.end = parseInt(y, 10) || stats.size - 1;
let start = opts.start = parseInt(x, 10) || 0;
let end = opts.end = Number.parseInt(y, 10) || stats.size - 1;
let start = opts.start = Number.parseInt(x, 10) || 0;
if (start >= stats.size || end >= stats.size) {

@@ -90,0 +90,0 @@ res.setHeader("Content-Range", `bytes */${stats.size}`);

{
"name": "@astrojs/partytown",
"description": "Use Partytown to move scripts into a web worker in your Astro project",
"version": "2.1.4",
"version": "2.1.5",
"type": "module",

@@ -30,7 +30,7 @@ "types": "./dist/index.d.ts",

"dependencies": {
"@qwik.dev/partytown": "^0.11.0",
"@qwik.dev/partytown": "^0.11.2",
"mrmime": "^2.0.1"
},
"devDependencies": {
"astro": "5.4.2",
"astro": "6.0.1",
"astro-scripts": "0.0.14"

@@ -37,0 +37,0 @@ },