@astrojs/partytown
Advanced tools
+2
-2
@@ -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}`); |
+3
-3
| { | ||
| "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 @@ }, |
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
15516
0.09%Updated