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

@netlify/edge-bundler

Package Overview
Dependencies
Maintainers
19
Versions
134
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@netlify/edge-bundler - npm Package Compare versions

Comparing version 11.2.1 to 11.2.2

2

dist/node/bridge.d.ts

@@ -55,5 +55,5 @@ /// <reference types="node" />

run(args: string[], { env: inputEnv, extendEnv, rejectOnExitCode, stderr, stdout }?: RunOptions): Promise<import("execa").ExecaReturnValue<string>>;
runInBackground(args: string[], ref?: ProcessRef, { env: inputEnv, extendEnv, stderr, stdout }?: RunOptions): Promise<void>;
runInBackground(args: string[], ref?: ProcessRef, { env: inputEnv, extendEnv, pipeOutput, stderr, stdout }?: RunOptions): Promise<void>;
}
export { DENO_VERSION_RANGE, DenoBridge };
export type { DenoOptions, OnAfterDownloadHook, OnBeforeDownloadHook, ProcessRef };

@@ -154,7 +154,7 @@ import { promises as fs } from 'fs';

// process to a `ps` property in the `ref` argument, if one is supplied.
async runInBackground(args, ref, { env: inputEnv, extendEnv = true, stderr, stdout } = {}) {
async runInBackground(args, ref, { env: inputEnv, extendEnv = true, pipeOutput, stderr, stdout } = {}) {
const { path: binaryPath } = await this.getBinaryPath();
const env = this.getEnvironmentVariables(inputEnv);
const options = { env, extendEnv };
const ps = DenoBridge.runWithBinary(binaryPath, args, { options, stderr, stdout });
const ps = DenoBridge.runWithBinary(binaryPath, args, { options, pipeOutput, stderr, stdout });
if (ref !== undefined) {

@@ -161,0 +161,0 @@ // eslint-disable-next-line no-param-reassign

{
"name": "@netlify/edge-bundler",
"version": "11.2.1",
"version": "11.2.2",
"description": "Intelligently prepare Netlify Edge Functions for deployment",

@@ -5,0 +5,0 @@ "type": "module",

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