@go-to-k/cdkd 0.25.0 → 0.26.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.
- package/README.md +59 -16
- package/dist/cli.js +775 -165
- package/dist/cli.js.map +4 -4
- package/dist/go-to-k-cdkd-0.26.0.tgz +0 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
- package/dist/go-to-k-cdkd-0.25.0.tgz +0 -0
|
Binary file
|
package/dist/index.js
CHANGED
|
@@ -8861,8 +8861,8 @@ var DeployEngine = class {
|
|
|
8861
8861
|
const baseLabel = `${verb} ${logicalId} (${resourceType})`;
|
|
8862
8862
|
renderer.addTask(logicalId, baseLabel);
|
|
8863
8863
|
const operationKind = change.changeType === "CREATE" ? "CREATE" : change.changeType === "DELETE" ? "DELETE" : "UPDATE";
|
|
8864
|
-
const warnAfterMs = this.options.resourceWarnAfterMs ?? DEFAULT_RESOURCE_WARN_AFTER_MS;
|
|
8865
|
-
const timeoutMs = this.options.resourceTimeoutMs ?? DEFAULT_RESOURCE_TIMEOUT_MS;
|
|
8864
|
+
const warnAfterMs = this.options.resourceWarnAfterByType?.[resourceType] ?? this.options.resourceWarnAfterMs ?? DEFAULT_RESOURCE_WARN_AFTER_MS;
|
|
8865
|
+
const timeoutMs = this.options.resourceTimeoutByType?.[resourceType] ?? this.options.resourceTimeoutMs ?? DEFAULT_RESOURCE_TIMEOUT_MS;
|
|
8866
8866
|
try {
|
|
8867
8867
|
await withResourceDeadline(
|
|
8868
8868
|
async () => {
|