@go-to-k/cdkd 0.57.1 → 0.58.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 +27 -0
- package/dist/cli.js +27 -3
- package/dist/cli.js.map +2 -2
- package/dist/go-to-k-cdkd-0.58.0.tgz +0 -0
- package/dist/index.js +4 -1
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
- package/dist/go-to-k-cdkd-0.57.1.tgz +0 -0
|
Binary file
|
package/dist/index.js
CHANGED
|
@@ -1337,7 +1337,10 @@ var AssemblyReader = class {
|
|
|
1337
1337
|
assetManifestPath,
|
|
1338
1338
|
dependencyNames,
|
|
1339
1339
|
region: env?.region !== "unknown-region" ? env?.region : void 0,
|
|
1340
|
-
account: env?.account !== "unknown-account" ? env?.account : void 0
|
|
1340
|
+
account: env?.account !== "unknown-account" ? env?.account : void 0,
|
|
1341
|
+
...props?.terminationProtection !== void 0 && {
|
|
1342
|
+
terminationProtection: props.terminationProtection
|
|
1343
|
+
}
|
|
1341
1344
|
};
|
|
1342
1345
|
}
|
|
1343
1346
|
/**
|