@awsless/awsless 0.0.597 → 0.0.598

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
@@ -9662,6 +9662,7 @@ var domain = (program2) => {
9662
9662
  // src/cli/command/logs.ts
9663
9663
  import { CloudWatchLogsClient, StartLiveTailCommand } from "@aws-sdk/client-cloudwatch-logs";
9664
9664
  import { log as log24 } from "@awsless/clui";
9665
+ import { aws as aws30 } from "@terraforge/aws";
9665
9666
  import chalk5 from "chalk";
9666
9667
  import chunk2 from "chunk";
9667
9668
  import { formatDate } from "date-fns";
@@ -9685,9 +9686,8 @@ var logs = (program2) => {
9685
9686
  for (const stack of app.stacks) {
9686
9687
  if (filters.find((f) => wildstring6.match(f, stack.name))) {
9687
9688
  for (const resource of stack.resources) {
9688
- if (resource.type === "aws_cloudwatch_log_group") {
9689
- const logGroup = resource;
9690
- logGroupArns.push(await logGroup.arn);
9689
+ if (resource instanceof aws30.cloudwatch.LogGroup) {
9690
+ logGroupArns.push(await resource.arn);
9691
9691
  }
9692
9692
  }
9693
9693
  }
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awsless/awsless",
3
- "version": "0.0.597",
3
+ "version": "0.0.598",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -34,22 +34,22 @@
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@awsless/big-float": "^0.1.5",
37
- "@awsless/cloudwatch": "^0.0.1",
38
- "@awsless/duration": "^0.0.4",
39
- "@awsless/json": "^0.0.10",
40
37
  "@awsless/clui": "^0.0.8",
41
- "@awsless/dynamodb": "^0.3.8",
38
+ "@awsless/duration": "^0.0.4",
42
39
  "@awsless/iot": "^0.0.3",
40
+ "@awsless/json": "^0.0.10",
43
41
  "@awsless/lambda": "^0.0.35",
44
- "@awsless/redis": "^0.0.14",
42
+ "@awsless/mqtt": "^0.0.2",
43
+ "@awsless/open-search": "^0.0.21",
44
+ "@awsless/sns": "^0.0.10",
45
45
  "@awsless/s3": "^0.0.21",
46
+ "@awsless/redis": "^0.0.14",
46
47
  "@awsless/ssm": "^0.0.7",
48
+ "@awsless/dynamodb": "^0.3.8",
49
+ "@awsless/cloudwatch": "^0.0.1",
47
50
  "@awsless/sqs": "^0.0.16",
48
- "@awsless/open-search": "^0.0.21",
49
- "@awsless/sns": "^0.0.10",
50
51
  "@awsless/validate": "^0.1.3",
51
- "@awsless/weak-cache": "^0.0.1",
52
- "@awsless/mqtt": "^0.0.2"
52
+ "@awsless/weak-cache": "^0.0.1"
53
53
  },
54
54
  "dependencies": {
55
55
  "@arcanyx/cidr-slicer": "^0.3.0",
@@ -76,7 +76,7 @@
76
76
  "@swc/core": "^1.3.70",
77
77
  "@terraforge/aws": "^6.28.0",
78
78
  "@terraforge/core": "^0.0.19",
79
- "@terraforge/terraform": "^0.0.13",
79
+ "@terraforge/terraform": "^0.0.14",
80
80
  "@types/aws-lambda": "^8.10.110",
81
81
  "@types/bun": "1.3.8",
82
82
  "@types/chunk": "^0.0.0",
@@ -142,13 +142,13 @@
142
142
  "@awsless/big-float": "^0.1.5",
143
143
  "@awsless/cloudwatch": "^0.0.1",
144
144
  "@awsless/duration": "^0.0.4",
145
- "@awsless/json": "^0.0.10",
145
+ "@awsless/clui": "^0.0.8",
146
146
  "@awsless/graphql": "^0.0.9",
147
+ "@awsless/json": "^0.0.10",
147
148
  "@awsless/size": "^0.0.2",
148
149
  "@awsless/scheduler": "^0.0.4",
149
150
  "@awsless/validate": "^0.1.3",
150
- "@awsless/ts-file-cache": "^0.0.12",
151
- "@awsless/clui": "^0.0.8"
151
+ "@awsless/ts-file-cache": "^0.0.12"
152
152
  },
153
153
  "devDependencies": {
154
154
  "@hono/node-server": "1.19.9",