@awsless/awsless 0.0.421 → 0.0.422

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 CHANGED
@@ -14108,7 +14108,9 @@ var assertDepsExists = (stack, stacks) => {
14108
14108
  };
14109
14109
  var createApp = (props) => {
14110
14110
  const app = new App2(props.appConfig.name);
14111
+ app.setTag("app", app.name);
14111
14112
  const base2 = new Stack(app, "base");
14113
+ base2.setTag("stack", base2.name);
14112
14114
  const shared = new SharedData();
14113
14115
  const appId = generateGlobalAppId({
14114
14116
  accountId: props.accountId,
@@ -14191,6 +14193,7 @@ var createApp = (props) => {
14191
14193
  }
14192
14194
  for (const stackConfig of props.stackConfigs) {
14193
14195
  const stack = new Stack(app, stackConfig.name);
14196
+ stack.setTag("stack", stack.name);
14194
14197
  const stackPolicyListeners = [];
14195
14198
  const stackPolicies = [];
14196
14199
  const localEnvListeners = [];
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awsless/awsless",
3
- "version": "0.0.421",
3
+ "version": "0.0.422",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -28,19 +28,19 @@
28
28
  }
29
29
  },
30
30
  "peerDependencies": {
31
+ "@awsless/dynamodb": "^0.1.5",
31
32
  "@awsless/iot": "^0.0.3",
32
- "@awsless/lambda": "^0.0.30",
33
33
  "@awsless/json": "^0.0.6",
34
- "@awsless/mqtt": "^0.0.2",
35
- "@awsless/sqs": "^0.0.8",
34
+ "@awsless/lambda": "^0.0.30",
36
35
  "@awsless/s3": "^0.0.20",
37
- "@awsless/dynamodb": "^0.1.4",
38
- "@awsless/open-search": "^0.0.15",
39
- "@awsless/redis": "^0.0.13",
40
- "@awsless/ssm": "^0.0.7",
36
+ "@awsless/sqs": "^0.0.8",
41
37
  "@awsless/sns": "^0.0.10",
38
+ "@awsless/validate": "^0.0.16",
39
+ "@awsless/mqtt": "^0.0.2",
40
+ "@awsless/redis": "^0.0.13",
41
+ "@awsless/open-search": "^0.0.15",
42
42
  "@awsless/weak-cache": "^0.0.1",
43
- "@awsless/validate": "^0.0.16"
43
+ "@awsless/ssm": "^0.0.7"
44
44
  },
45
45
  "dependencies": {
46
46
  "@arcanyx/cidr-slicer": "^0.3.0",