@awsless/awsless 0.0.479 → 0.0.481
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 +8 -4
- package/dist/prebuild/rpc/bundle.zip +0 -0
- package/package.json +9 -9
package/dist/bin.js
CHANGED
|
@@ -4775,10 +4775,9 @@ var siteFeature = defineFeature({
|
|
|
4775
4775
|
}
|
|
4776
4776
|
});
|
|
4777
4777
|
}
|
|
4778
|
-
|
|
4779
|
-
`SITE_${constantCase10(ctx.stack.name)}_${constantCase10(id)}_ENDPOINT`,
|
|
4780
|
-
|
|
4781
|
-
);
|
|
4778
|
+
if (domainName) {
|
|
4779
|
+
ctx.bind(`SITE_${constantCase10(ctx.stack.name)}_${constantCase10(id)}_ENDPOINT`, domainName);
|
|
4780
|
+
}
|
|
4782
4781
|
}
|
|
4783
4782
|
}
|
|
4784
4783
|
});
|
|
@@ -6119,6 +6118,11 @@ var createApp = (props) => {
|
|
|
6119
6118
|
listener(env.name, env.value);
|
|
6120
6119
|
}
|
|
6121
6120
|
}
|
|
6121
|
+
for (const listener of bindListeners) {
|
|
6122
|
+
for (const { name, value } of binds) {
|
|
6123
|
+
listener(name, value);
|
|
6124
|
+
}
|
|
6125
|
+
}
|
|
6122
6126
|
for (const stackConfig of props.stackConfigs) {
|
|
6123
6127
|
const envListeners = allLocalEnvListeners[stackConfig.name];
|
|
6124
6128
|
const permissionCallbacks = allStackPermissionCallbacks[stackConfig.name];
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awsless/awsless",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.481",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -29,18 +29,18 @@
|
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
31
|
"@awsless/dynamodb": "^0.1.5",
|
|
32
|
-
"@awsless/iot": "^0.0.3",
|
|
33
32
|
"@awsless/json": "^0.0.8",
|
|
33
|
+
"@awsless/iot": "^0.0.3",
|
|
34
34
|
"@awsless/lambda": "^0.0.32",
|
|
35
35
|
"@awsless/mqtt": "^0.0.2",
|
|
36
|
+
"@awsless/open-search": "^0.0.17",
|
|
36
37
|
"@awsless/s3": "^0.0.20",
|
|
37
|
-
"@awsless/redis": "^0.0.14",
|
|
38
38
|
"@awsless/sns": "^0.0.10",
|
|
39
|
-
"@awsless/
|
|
39
|
+
"@awsless/redis": "^0.0.14",
|
|
40
40
|
"@awsless/sqs": "^0.0.8",
|
|
41
41
|
"@awsless/validate": "^0.0.19",
|
|
42
|
-
"@awsless/
|
|
43
|
-
"@awsless/
|
|
42
|
+
"@awsless/weak-cache": "^0.0.1",
|
|
43
|
+
"@awsless/ssm": "^0.0.7"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@arcanyx/cidr-slicer": "^0.3.0",
|
|
@@ -119,14 +119,14 @@
|
|
|
119
119
|
"zip-a-folder": "^3.1.6",
|
|
120
120
|
"zod": "^3.24.2",
|
|
121
121
|
"zod-to-json-schema": "^3.24.3",
|
|
122
|
-
"@awsless/
|
|
122
|
+
"@awsless/code": "^0.0.10",
|
|
123
123
|
"@awsless/formation": "^0.0.74",
|
|
124
124
|
"@awsless/json": "^0.0.8",
|
|
125
|
+
"@awsless/graphql": "^0.0.9",
|
|
125
126
|
"@awsless/size": "^0.0.2",
|
|
126
|
-
"@awsless/code": "^0.0.10",
|
|
127
127
|
"@awsless/ts-file-cache": "^0.0.12",
|
|
128
128
|
"@awsless/validate": "^0.0.19",
|
|
129
|
-
"@awsless/
|
|
129
|
+
"@awsless/duration": "^0.0.3"
|
|
130
130
|
},
|
|
131
131
|
"devDependencies": {
|
|
132
132
|
"@node-rs/bcrypt": "^1.10.5"
|