@awsless/awsless 0.0.234 → 0.0.235
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 +3 -3
- package/dist/build-json-schema.js +1 -1
- package/package.json +5 -5
package/dist/bin.js
CHANGED
|
@@ -674,7 +674,7 @@ import { z as z18 } from "zod";
|
|
|
674
674
|
var StoresSchema = z18.union([
|
|
675
675
|
z18.array(ResourceIdSchema).transform((list4) => {
|
|
676
676
|
const stores = {};
|
|
677
|
-
for (const key
|
|
677
|
+
for (const key of list4) {
|
|
678
678
|
stores[key] = {};
|
|
679
679
|
}
|
|
680
680
|
return stores;
|
|
@@ -1433,7 +1433,7 @@ var formatOperation = (operation) => {
|
|
|
1433
1433
|
};
|
|
1434
1434
|
var logStackError = (error) => {
|
|
1435
1435
|
log2.message(
|
|
1436
|
-
wrap([color.error(error.message),
|
|
1436
|
+
wrap([color.error(error.message), `Stack: ${error.stack}`].join("\n"), {
|
|
1437
1437
|
hard: true
|
|
1438
1438
|
}),
|
|
1439
1439
|
{ symbol: color.error(icon.error) }
|
|
@@ -1477,7 +1477,7 @@ import { StackError as StackError2 } from "@awsless/formation";
|
|
|
1477
1477
|
import { log as log4 } from "@clack/prompts";
|
|
1478
1478
|
var logAppError = (error) => {
|
|
1479
1479
|
log4.message(
|
|
1480
|
-
wrap([color.error(error.message),
|
|
1480
|
+
wrap([color.error(error.message), `App: ${error.app}`].join("\n"), {
|
|
1481
1481
|
hard: true
|
|
1482
1482
|
}),
|
|
1483
1483
|
{ symbol: color.error(icon.error) }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awsless/awsless",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.235",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@awsless/open-search": "^0.0.12",
|
|
33
33
|
"@awsless/redis": "^0.0.12",
|
|
34
34
|
"@awsless/s3": "^0.0.10",
|
|
35
|
-
"@awsless/sns": "^0.0.7",
|
|
36
35
|
"@awsless/sqs": "^0.0.7",
|
|
37
|
-
"@awsless/
|
|
36
|
+
"@awsless/sns": "^0.0.7",
|
|
38
37
|
"@awsless/validate": "^0.0.14",
|
|
39
|
-
"@awsless/weak-cache": "^0.0.1"
|
|
38
|
+
"@awsless/weak-cache": "^0.0.1",
|
|
39
|
+
"@awsless/ssm": "^0.0.7"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@aws-appsync/utils": "^1.5.0",
|
|
@@ -98,9 +98,9 @@
|
|
|
98
98
|
"zod": "^3.21.4",
|
|
99
99
|
"zod-to-json-schema": "^3.22.3",
|
|
100
100
|
"@awsless/duration": "^0.0.1",
|
|
101
|
-
"@awsless/formation": "^0.0.25",
|
|
102
101
|
"@awsless/graphql": "^0.0.9",
|
|
103
102
|
"@awsless/size": "^0.0.1",
|
|
103
|
+
"@awsless/formation": "^0.0.25",
|
|
104
104
|
"@awsless/validate": "^0.0.14",
|
|
105
105
|
"@awsless/code": "^0.0.10"
|
|
106
106
|
},
|