@awsless/awsless 0.0.333 → 0.0.334
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 +2 -4
- package/package.json +5 -5
package/dist/bin.js
CHANGED
|
@@ -1532,13 +1532,11 @@ var readConfigWithStage = async (file, stage) => {
|
|
|
1532
1532
|
debug("Load env file:", color.info(stageFile));
|
|
1533
1533
|
const stageConfig = await readConfig(stageFile);
|
|
1534
1534
|
return merge(config2, stageConfig, {
|
|
1535
|
-
arrayMerge: (target, source
|
|
1535
|
+
arrayMerge: (target, source) => {
|
|
1536
1536
|
const destination = target.slice();
|
|
1537
1537
|
source.forEach((item, index) => {
|
|
1538
1538
|
if (typeof destination[index] === "undefined") {
|
|
1539
|
-
destination[index] =
|
|
1540
|
-
} else if (options?.isMergeableObject(item)) {
|
|
1541
|
-
destination[index] = merge(target[index], item, options);
|
|
1539
|
+
destination[index] = item;
|
|
1542
1540
|
} else if (target.indexOf(item) === -1) {
|
|
1543
1541
|
destination.push(item);
|
|
1544
1542
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awsless/awsless",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.334",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@awsless/lambda": "^0.0.26",
|
|
32
31
|
"@awsless/open-search": "^0.0.15",
|
|
33
32
|
"@awsless/redis": "^0.0.12",
|
|
34
|
-
"@awsless/s3": "^0.0.18",
|
|
35
33
|
"@awsless/sqs": "^0.0.7",
|
|
34
|
+
"@awsless/sns": "^0.0.7",
|
|
35
|
+
"@awsless/lambda": "^0.0.26",
|
|
36
36
|
"@awsless/ssm": "^0.0.7",
|
|
37
37
|
"@awsless/iot": "^0.0.2",
|
|
38
|
-
"@awsless/
|
|
38
|
+
"@awsless/s3": "^0.0.18",
|
|
39
39
|
"@awsless/validate": "^0.0.15",
|
|
40
40
|
"@awsless/weak-cache": "^0.0.1"
|
|
41
41
|
},
|
|
@@ -109,8 +109,8 @@
|
|
|
109
109
|
"@awsless/code": "^0.0.10",
|
|
110
110
|
"@awsless/duration": "^0.0.1",
|
|
111
111
|
"@awsless/formation": "^0.0.48",
|
|
112
|
-
"@awsless/graphql": "^0.0.9",
|
|
113
112
|
"@awsless/size": "^0.0.1",
|
|
113
|
+
"@awsless/graphql": "^0.0.9",
|
|
114
114
|
"@awsless/validate": "^0.0.15",
|
|
115
115
|
"@awsless/ts-file-cache": "^0.0.1"
|
|
116
116
|
},
|