@bafsllc/nx-serverless
Advanced tools
Comparing version 0.0.7 to 0.0.8
{ | ||
"name": "@bafsllc/nx-serverless", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"main": "src/index.js", | ||
@@ -5,0 +5,0 @@ "schematics": "./collection.json", |
@@ -37,4 +37,2 @@ import { BuilderContext, BuilderOutput } from "@angular-devkit/architect"; | ||
readyWhen: string; | ||
debugPort?: number; | ||
debugHost?: number; | ||
} | ||
@@ -41,0 +39,0 @@ declare const _default: import("@angular-devkit/architect/src/internal").Builder<ServerlessExecuteBuilderOptions & JsonObject>; |
@@ -69,8 +69,2 @@ "use strict"; | ||
const args = []; | ||
if (options.inspect) { | ||
args.push(`--inspect=${options.debugHost}:${options.debugPort}`); | ||
delete options.inspect; | ||
delete options.debugHost; | ||
delete options.debugPort; | ||
} | ||
args.push("offline"); | ||
@@ -77,0 +71,0 @@ for (const key in options) { |
@@ -55,4 +55,2 @@ import { | ||
readyWhen: string; | ||
debugPort?: number; | ||
debugHost?: number; | ||
} | ||
@@ -142,9 +140,2 @@ | ||
const args = []; | ||
if (options.inspect) { | ||
args.push(`--inspect=${options.debugHost}:${options.debugPort}`); | ||
delete options.inspect; | ||
delete options.debugHost; | ||
delete options.debugPort; | ||
} | ||
args.push("offline"); | ||
@@ -151,0 +142,0 @@ for (const key in options) { |
@@ -26,12 +26,2 @@ { | ||
}, | ||
"debugHost": { | ||
"type": "string", | ||
"default": "localhost", | ||
"description": "The host to inspect the process on" | ||
}, | ||
"debugPort": { | ||
"type": "number", | ||
"default": "9229", | ||
"description": "The port to inspect the process on. Setting port to 0 will assign random free ports to all forked processes." | ||
}, | ||
"port": { | ||
@@ -45,6 +35,2 @@ "type": "number", | ||
"description": "Generate source maps with the compiled source." | ||
}, | ||
"inspect": { | ||
"type": "boolean", | ||
"default": false | ||
} | ||
@@ -51,0 +37,0 @@ }, |
Sorry, the diff of this file is not supported yet
29
232474
4051