@go-to-k/cdkd 0.230.18 → 0.230.19
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/dist/cli.js +14 -14
- package/dist/cli.js.map +1 -1
- package/dist/{deploy-engine-CXgQSFYL.js → deploy-engine-Bdy5xKSQ.js} +14 -2
- package/dist/deploy-engine-Bdy5xKSQ.js.map +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/deploy-engine-CXgQSFYL.js.map +0 -1
|
@@ -2007,6 +2007,18 @@ function isPreSynthesizedAssembly(app) {
|
|
|
2007
2007
|
return existsSync(appPath) && statSync(appPath).isDirectory();
|
|
2008
2008
|
}
|
|
2009
2009
|
/**
|
|
2010
|
+
* Pick the user-facing status line a command prints right before it invokes
|
|
2011
|
+
* {@link Synthesizer.synthesize}. When `--app` is a pre-synthesized assembly
|
|
2012
|
+
* directory, synthesis is skipped, so "Reading cloud assembly..." is accurate;
|
|
2013
|
+
* otherwise the command's own `synthesizingMessage` (e.g. "Synthesizing CDK
|
|
2014
|
+
* app...") is used. `app` may be undefined (the synthesize() call will then
|
|
2015
|
+
* throw the usual "no app specified" error) — that case keeps the synthesizing
|
|
2016
|
+
* message.
|
|
2017
|
+
*/
|
|
2018
|
+
function synthesisStatusMessage(app, synthesizingMessage) {
|
|
2019
|
+
return app !== void 0 && isPreSynthesizedAssembly(app) ? "Reading cloud assembly..." : synthesizingMessage;
|
|
2020
|
+
}
|
|
2021
|
+
/**
|
|
2010
2022
|
* CDK app synthesizer
|
|
2011
2023
|
*
|
|
2012
2024
|
* Replaces @aws-cdk/toolkit-lib with self-implemented:
|
|
@@ -14175,5 +14187,5 @@ var DeployEngine = class {
|
|
|
14175
14187
|
};
|
|
14176
14188
|
|
|
14177
14189
|
//#endregion
|
|
14178
|
-
export { warnDeprecatedNoPrefixCliFlag as $, LockManager as A, runDockerForeground as B, findActionableSilentDrops as C, DiffCalculator as D, applyRoleArnIfSet as E, stringifyValue as F,
|
|
14179
|
-
//# sourceMappingURL=deploy-engine-
|
|
14190
|
+
export { warnDeprecatedNoPrefixCliFlag as $, LockManager as A, runDockerForeground as B, findActionableSilentDrops as C, DiffCalculator as D, applyRoleArnIfSet as E, stringifyValue as F, synthesisStatusMessage as G, AssetManifestLoader as H, WorkGraph as I, resolveApp as J, getDefaultStateBucketName as K, buildDockerImage as L, rebuildClientForBucketRegion as M, shouldRetainResource as N, DagBuilder as O, AssetPublisher as P, resolveStateBucketWithDefaultAndSource as Q, formatDockerLoginError as R, ProviderRegistry as S, IntrinsicFunctionResolver as T, getDockerImageBySourceHash as U, runDockerStreaming as V, Synthesizer as W, resolveSkipPrefix as X, resolveCaptureObservedState as Y, resolveStateBucketWithDefault as Z, green as _, withRetry as a, AssemblyReader as at, IAMRoleProvider as b, computeImplicitDeleteEdges as c, isStatefulRecreateTargetSync as d, CFN_TEMPLATE_BODY_LIMIT as et, renderStatefulReason as f, gray as g, cyan as h, withResourceDeadline as i, uploadCfnTemplate as it, S3StateBackend as j, TemplateParser as k, extractDeploymentEventError as l, bold as m, DEFAULT_RESOURCE_WARN_AFTER_MS as n, MIGRATE_TMP_PREFIX as nt, isRetryableTransientError as o, clearBucketRegionCache as ot, formatResourceLine as p, getLegacyStateBucketName as q, DeployEngine as r, findLargeInlineResources as rt, IMPLICIT_DELETE_DEPENDENCIES as s, resolveBucketRegion as st, DEFAULT_RESOURCE_TIMEOUT_MS as t, CFN_TEMPLATE_URL_LIMIT as tt, MULTI_REGION_RECREATE_BLOCKED_TYPES as u, red as v, CloudControlProvider as w, collectInlinePolicyNamesManagedBySiblings as x, yellow as y, getDockerCmd as z };
|
|
14191
|
+
//# sourceMappingURL=deploy-engine-Bdy5xKSQ.js.map
|