(outputDir: string)
| 121 | //Local bundling |
| 122 | if (!props.forcedDockerBundling) { // only if Docker is not forced |
| 123 | const createLocalCommand = (outputDir: string) => { |
| 124 | return this.createBundlingCommand({ |
| 125 | osPlatform, |
| 126 | manifest, |
| 127 | outputDir, |
| 128 | cargoLambdaFlags, |
| 129 | profile, |
| 130 | inputDir: projectRoot, |
| 131 | binaryName: props.binaryName, |
| 132 | architecture: props.architecture, |
| 133 | lambdaExtension: props.lambdaExtension, |
| 134 | }); |
| 135 | }; |
| 136 | |
| 137 | this.local = { |
| 138 | tryBundle(outputDir: string) { |
nothing calls this directly
no test coverage detected