@awsless/awsless 0.0.614 → 0.0.615
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
|
@@ -5120,13 +5120,7 @@ var siteFeature = defineFeature({
|
|
|
5120
5120
|
if (props.build) {
|
|
5121
5121
|
const buildProps = props.build;
|
|
5122
5122
|
ctx.registerBuild("site", name, async (build3) => {
|
|
5123
|
-
console.log("");
|
|
5124
|
-
console.log("START SITE BUILD", name);
|
|
5125
|
-
console.log("");
|
|
5126
5123
|
const fingerprint = await generateCacheKey(buildProps.cacheKey);
|
|
5127
|
-
console.log("");
|
|
5128
|
-
console.log("fingerprint", fingerprint);
|
|
5129
|
-
console.log("");
|
|
5130
5124
|
return build3(fingerprint, async (write) => {
|
|
5131
5125
|
const credentialProvider = await getCredentials(ctx.appConfig.profile);
|
|
5132
5126
|
const credentials = await credentialProvider();
|
|
@@ -5149,10 +5143,6 @@ var siteFeature = defineFeature({
|
|
|
5149
5143
|
for (const name2 of ctx.stackConfig.configs ?? []) {
|
|
5150
5144
|
env[`CONFIG_${constantCase10(name2)}`] = name2;
|
|
5151
5145
|
}
|
|
5152
|
-
console.log("");
|
|
5153
|
-
console.log("CMD", buildProps.command.split(" "));
|
|
5154
|
-
console.log("CWD", cwd);
|
|
5155
|
-
console.log("");
|
|
5156
5146
|
const instance = Bun.spawn(buildProps.command.split(" "), {
|
|
5157
5147
|
cwd,
|
|
5158
5148
|
env,
|
|
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.
|
|
3
|
+
"version": "0.0.615",
|
|
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
37
|
"@awsless/clui": "^0.0.8",
|
|
39
|
-
"@awsless/
|
|
38
|
+
"@awsless/cloudwatch": "^0.0.1",
|
|
40
39
|
"@awsless/json": "^0.0.10",
|
|
41
|
-
"@awsless/iot": "^0.0.3",
|
|
42
|
-
"@awsless/dynamodb": "^0.3.8",
|
|
43
40
|
"@awsless/lambda": "^0.0.35",
|
|
41
|
+
"@awsless/iot": "^0.0.3",
|
|
42
|
+
"@awsless/open-search": "^0.0.21",
|
|
44
43
|
"@awsless/mqtt": "^0.0.2",
|
|
44
|
+
"@awsless/duration": "^0.0.4",
|
|
45
45
|
"@awsless/redis": "^0.0.14",
|
|
46
|
-
"@awsless/
|
|
47
|
-
"@awsless/s3": "^0.0.21",
|
|
46
|
+
"@awsless/dynamodb": "^0.3.8",
|
|
48
47
|
"@awsless/sns": "^0.0.10",
|
|
49
|
-
"@awsless/
|
|
48
|
+
"@awsless/validate": "^0.1.3",
|
|
49
|
+
"@awsless/s3": "^0.0.21",
|
|
50
50
|
"@awsless/ssm": "^0.0.7",
|
|
51
51
|
"@awsless/weak-cache": "^0.0.1",
|
|
52
|
-
"@awsless/
|
|
52
|
+
"@awsless/sqs": "^0.0.16"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@arcanyx/cidr-slicer": "^0.3.0",
|
|
@@ -139,15 +139,15 @@
|
|
|
139
139
|
"zip-a-folder": "^3.1.6",
|
|
140
140
|
"zod": "^3.24.2",
|
|
141
141
|
"zod-to-json-schema": "^3.24.3",
|
|
142
|
-
"@awsless/big-float": "^0.1.5",
|
|
143
142
|
"@awsless/cloudwatch": "^0.0.1",
|
|
144
|
-
"@awsless/
|
|
143
|
+
"@awsless/big-float": "^0.1.5",
|
|
145
144
|
"@awsless/duration": "^0.0.4",
|
|
145
|
+
"@awsless/clui": "^0.0.8",
|
|
146
|
+
"@awsless/graphql": "^0.0.9",
|
|
146
147
|
"@awsless/json": "^0.0.10",
|
|
147
148
|
"@awsless/scheduler": "^0.0.4",
|
|
148
|
-
"@awsless/ts-file-cache": "^0.0.12",
|
|
149
|
-
"@awsless/graphql": "^0.0.9",
|
|
150
149
|
"@awsless/size": "^0.0.2",
|
|
150
|
+
"@awsless/ts-file-cache": "^0.0.12",
|
|
151
151
|
"@awsless/validate": "^0.1.3"
|
|
152
152
|
},
|
|
153
153
|
"devDependencies": {
|