@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.
Files changed (2) hide show
  1. package/dist/bin.js +5 -0
  2. 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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awsless/cli",
3
- "version": "0.1.32",
3
+ "version": "0.1.33",
4
4
  "bugs": {
5
5
  "url": "https://github.com/awsless/awsless/issues"
6
6
  },