@go-to-k/cdkd 0.32.0 → 0.33.0

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.
Binary file
package/dist/index.js CHANGED
@@ -4030,7 +4030,7 @@ var DagBuilder = class {
4030
4030
  if (skip?.has(depId)) {
4031
4031
  relaxedEdgeCount++;
4032
4032
  this.logger.debug(
4033
- `Skipped CDK-defensive DependsOn edge: ${depId} -> ${logicalId} (--aggressive-vpc-parallel)`
4033
+ `Skipped CDK-defensive DependsOn edge: ${depId} -> ${logicalId} (default; opt out with --no-aggressive-vpc-parallel)`
4034
4034
  );
4035
4035
  continue;
4036
4036
  }
@@ -4047,7 +4047,7 @@ var DagBuilder = class {
4047
4047
  }
4048
4048
  if (relaxedEdgeCount > 0) {
4049
4049
  this.logger.info(
4050
- `[DagBuilder] Relaxed ${relaxedEdgeCount} CDK-defensive DependsOn edge(s) (--aggressive-vpc-parallel)`
4050
+ `[DagBuilder] Relaxed ${relaxedEdgeCount} CDK-defensive DependsOn edge(s) (default; opt out with --no-aggressive-vpc-parallel)`
4051
4051
  );
4052
4052
  }
4053
4053
  this.logger.debug(`Dependency graph built: ${resourceIds.length} nodes, ${edgeCount} edges`);