@go-to-k/cdkd 0.101.2 → 0.102.1
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 +14 -1
- package/dist/cli.js +46 -34
- package/dist/cli.js.map +1 -1
- package/dist/{deploy-engine-BzsWm3DG.js → deploy-engine-D4t--jpp.js} +14 -3
- package/dist/{deploy-engine-BzsWm3DG.js.map → deploy-engine-D4t--jpp.js.map} +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -8737,7 +8737,8 @@ var DeployEngine = class {
|
|
|
8737
8737
|
updated: 0,
|
|
8738
8738
|
deleted: 0,
|
|
8739
8739
|
unchanged: Object.keys(currentState.resources).length,
|
|
8740
|
-
durationMs: Date.now() - startTime
|
|
8740
|
+
durationMs: Date.now() - startTime,
|
|
8741
|
+
outputs: this.buildDisplayOutputs(template, currentState.outputs ?? {})
|
|
8741
8742
|
};
|
|
8742
8743
|
}
|
|
8743
8744
|
const createChanges = this.diffCalculator.filterByType(changes, "CREATE");
|
|
@@ -8772,7 +8773,8 @@ var DeployEngine = class {
|
|
|
8772
8773
|
updated: actualCounts.updated,
|
|
8773
8774
|
deleted: actualCounts.deleted,
|
|
8774
8775
|
unchanged: unchangedCount,
|
|
8775
|
-
durationMs
|
|
8776
|
+
durationMs,
|
|
8777
|
+
outputs: this.buildDisplayOutputs(template, newState.outputs ?? {})
|
|
8776
8778
|
};
|
|
8777
8779
|
} finally {
|
|
8778
8780
|
renderer.stop();
|
|
@@ -9519,8 +9521,17 @@ var DeployEngine = class {
|
|
|
9519
9521
|
}
|
|
9520
9522
|
return outputs;
|
|
9521
9523
|
}
|
|
9524
|
+
buildDisplayOutputs(template, resolvedOutputs) {
|
|
9525
|
+
const display = {};
|
|
9526
|
+
if (!template.Outputs) return display;
|
|
9527
|
+
for (const key of Object.keys(template.Outputs)) {
|
|
9528
|
+
const v = resolvedOutputs[key];
|
|
9529
|
+
if (v !== void 0) display[key] = v;
|
|
9530
|
+
}
|
|
9531
|
+
return display;
|
|
9532
|
+
}
|
|
9522
9533
|
};
|
|
9523
9534
|
|
|
9524
9535
|
//#endregion
|
|
9525
9536
|
export { SynthesisError as $, resolveApp as A, CdkdError as B, AssetPublisher as C, Synthesizer as D, buildDockerImage as E, warnDeprecatedNoPrefixCliFlag as F, PartialFailureError as G, DependencyError as H, AssemblyReader as I, ResourceUpdateNotSupportedError as J, ProvisioningError as K, clearBucketRegionCache as L, resolveSkipPrefix as M, resolveStateBucketWithDefault as N, getDefaultStateBucketName as O, resolveStateBucketWithDefaultAndSource as P, StateError as Q, resolveBucketRegion as R, shouldRetainResource as S, WorkGraph as T, LocalInvokeBuildError as U, ConfigError as V, LockError as W, StackHasActiveImportsError as X, RouteDiscoveryError as Y, StackTerminationProtectionError as Z, DiffCalculator as _, withRetry as a, getLogger as at, LockManager as b, collectInlinePolicyNamesManagedBySiblings as c, getLiveRenderer as ct, normalizeAwsTagsToCfn as d, generateResourceName as dt, formatError as et, resolveExplicitPhysicalId as f, generateResourceNameWithFallback as ft, IntrinsicFunctionResolver as g, assertRegionMatch as h, withResourceDeadline as i, ConsoleLogger as it, resolveCaptureObservedState as j, getLegacyStateBucketName as k, CDK_PATH_TAG as l, PATTERN_B_NAME_PROPERTIES as lt, CloudControlProvider as m, withStackName as mt, DEFAULT_RESOURCE_WARN_AFTER_MS as n, normalizeAwsError as nt, IMPLICIT_DELETE_DEPENDENCIES as o, setLogger as ot, ProviderRegistry as p, withSkipPrefix as pt, ResourceTimeoutError as q, DeployEngine as r, withErrorHandling as rt, IAMRoleProvider as s, runStackBuffered as st, DEFAULT_RESOURCE_TIMEOUT_MS as t, isCdkdError as tt, matchesCdkPath as u, PATTERN_B_RESOURCE_TYPES as ut, DagBuilder as v, stringifyValue as w, S3StateBackend as x, TemplateParser as y, AssetError as z };
|
|
9526
|
-
//# sourceMappingURL=deploy-engine-
|
|
9537
|
+
//# sourceMappingURL=deploy-engine-D4t--jpp.js.map
|