@netlify/edge-bundler
Advanced tools
Comparing version 8.16.1 to 8.16.2
@@ -12,2 +12,4 @@ import { promises as fs } from 'fs'; | ||
const DENO_VERSION_FILE = 'version.txt'; | ||
// When updating DENO_VERSION_RANGE, ensure that the deno version installed in the | ||
// build-image/buildbot does satisfy this range! | ||
const DENO_VERSION_RANGE = '^1.30.0'; | ||
@@ -56,3 +58,5 @@ class DenoBridge { | ||
} | ||
catch { } | ||
catch (error) { | ||
this.logger.system('getBinaryVersion failed', error); | ||
} | ||
} | ||
@@ -59,0 +63,0 @@ async getCachedBinary() { |
@@ -23,5 +23,5 @@ import { createWriteStream, promises as fs } from 'fs'; | ||
await new Promise((resolve, reject) => { | ||
data.pipe(file); | ||
data.on('error', reject); | ||
file.on('finish', resolve); | ||
data.pipe(file); | ||
}); | ||
@@ -28,0 +28,0 @@ await extractBinaryFromZip(zipPath, binaryPath, binaryName); |
{ | ||
"name": "@netlify/edge-bundler", | ||
"version": "8.16.1", | ||
"version": "8.16.2", | ||
"description": "Intelligently prepare Netlify Edge Functions for deployment", | ||
@@ -5,0 +5,0 @@ "type": "module", |
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
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
3101700
7862