@awsless/awsless 0.0.292 → 0.0.293
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/package.json +5 -5
package/dist/bin.js
CHANGED
|
@@ -2577,10 +2577,10 @@ var cacheFeature = defineFeature({
|
|
|
2577
2577
|
var commandFeature = defineFeature({
|
|
2578
2578
|
name: "command",
|
|
2579
2579
|
onStack(ctx) {
|
|
2580
|
-
const names =
|
|
2580
|
+
const names = /* @__PURE__ */ new Set();
|
|
2581
2581
|
for (const [name, props] of Object.entries(ctx.stackConfig.commands ?? {})) {
|
|
2582
|
-
if (!
|
|
2583
|
-
names.
|
|
2582
|
+
if (!names.has(name)) {
|
|
2583
|
+
names.add(name);
|
|
2584
2584
|
} else {
|
|
2585
2585
|
throw new FileError(ctx.stackConfig.file, `Duplicate command names aren't allowed: ${name}`);
|
|
2586
2586
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awsless/awsless",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.293",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"@awsless/lambda": "^0.0.19",
|
|
32
|
-
"@awsless/open-search": "^0.0.12",
|
|
33
|
-
"@awsless/redis": "^0.0.12",
|
|
34
32
|
"@awsless/s3": "^0.0.15",
|
|
35
|
-
"@awsless/
|
|
33
|
+
"@awsless/redis": "^0.0.12",
|
|
34
|
+
"@awsless/open-search": "^0.0.12",
|
|
36
35
|
"@awsless/validate": "^0.0.14",
|
|
37
36
|
"@awsless/sns": "^0.0.7",
|
|
37
|
+
"@awsless/sqs": "^0.0.7",
|
|
38
38
|
"@awsless/ssm": "^0.0.7",
|
|
39
39
|
"@awsless/weak-cache": "^0.0.1"
|
|
40
40
|
},
|
|
@@ -108,8 +108,8 @@
|
|
|
108
108
|
"@awsless/duration": "^0.0.1",
|
|
109
109
|
"@awsless/formation": "^0.0.38",
|
|
110
110
|
"@awsless/graphql": "^0.0.9",
|
|
111
|
-
"@awsless/size": "^0.0.1",
|
|
112
111
|
"@awsless/validate": "^0.0.14",
|
|
112
|
+
"@awsless/size": "^0.0.1",
|
|
113
113
|
"@awsless/code": "^0.0.10"
|
|
114
114
|
},
|
|
115
115
|
"scripts": {
|