@awsless/cli 0.1.32 → 0.1.33
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/bin.js +5 -0
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -193233,6 +193233,11 @@ var run = (program3) => {
|
|
|
193233
193233
|
process.env.APP_ID = appId;
|
|
193234
193234
|
process.env.AWS_REGION = region;
|
|
193235
193235
|
process.env.AWS_ACCOUNT_ID = accountId;
|
|
193236
|
+
for (const stack of stackConfigs) {
|
|
193237
|
+
for (const [id, props] of Object.entries(stack.tables ?? {})) {
|
|
193238
|
+
process.env[`TABLE_${constantCase(stack.name)}_${constantCase(id)}_KEYS`] = JSON.stringify(formatTableKeys(props));
|
|
193239
|
+
}
|
|
193240
|
+
}
|
|
193236
193241
|
const module = await import(command3.file);
|
|
193237
193242
|
const handler = module[command3.handler];
|
|
193238
193243
|
if (!handler) {
|