@netlify/edge-bundler
Advanced tools
Comparing version 11.2.1 to 11.2.2
@@ -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", |
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
3797177