@lambda-kata/cdk 0.1.3-rc.23 → 0.1.3-rc.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/dist/index.js +16 -15
- package/out/tsc/src/aws-layer-manager.d.ts +7 -1
- package/package.json +1 -1
|
@@ -521,7 +521,10 @@ export declare class AWSLayerManager implements LayerManager {
|
|
|
521
521
|
*/
|
|
522
522
|
private calculateDirectorySize;
|
|
523
523
|
/**
|
|
524
|
-
* Fallback ZIP creation using system zip command.
|
|
524
|
+
* Fallback ZIP creation using system zip command with streaming.
|
|
525
|
+
*
|
|
526
|
+
* This method uses the system 'zip' command which handles large files
|
|
527
|
+
* efficiently without loading them into memory.
|
|
525
528
|
*
|
|
526
529
|
* @param layerDir - Directory containing the layer contents
|
|
527
530
|
* @param zipFilePath - Target ZIP file path
|
|
@@ -594,6 +597,9 @@ export declare class AWSLayerManager implements LayerManager {
|
|
|
594
597
|
/**
|
|
595
598
|
* Executes a system command with timeout and error handling.
|
|
596
599
|
*
|
|
600
|
+
* Enhanced with EPIPE error handling to prevent broken pipe errors
|
|
601
|
+
* when child process terminates unexpectedly.
|
|
602
|
+
*
|
|
597
603
|
* @param command - Command to execute
|
|
598
604
|
* @param args - Command arguments
|
|
599
605
|
* @param options - Execution options including working directory
|
package/package.json
CHANGED