carlin 1.23.1 → 1.23.3
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/deploy/command.js +8 -4
- package/package.json +6 -6
package/dist/deploy/command.js
CHANGED
|
@@ -138,8 +138,9 @@ exports.deployCommand = {
|
|
|
138
138
|
*/
|
|
139
139
|
.middleware((argv) => {
|
|
140
140
|
if (argv.lambdaDockerfile) {
|
|
141
|
-
|
|
142
|
-
|
|
141
|
+
Object.assign(argv, {
|
|
142
|
+
lambdaImage: true,
|
|
143
|
+
});
|
|
143
144
|
}
|
|
144
145
|
})
|
|
145
146
|
/**
|
|
@@ -151,8 +152,11 @@ exports.deployCommand = {
|
|
|
151
152
|
? environments[environment].awsAccountId
|
|
152
153
|
: undefined;
|
|
153
154
|
})();
|
|
154
|
-
if (
|
|
155
|
-
await checkAwsAccountId(
|
|
155
|
+
if (envAwsAccountId) {
|
|
156
|
+
await checkAwsAccountId(envAwsAccountId);
|
|
157
|
+
}
|
|
158
|
+
if (defaultAwsAccountId) {
|
|
159
|
+
await checkAwsAccountId(defaultAwsAccountId);
|
|
156
160
|
}
|
|
157
161
|
})
|
|
158
162
|
.middleware(({ skipDeploy }) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "carlin",
|
|
3
|
-
"version": "1.23.
|
|
3
|
+
"version": "1.23.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"license": "GPL-3.0",
|
|
6
6
|
"author": "Pedro Arantes <arantespp@gmail.com> (https://twitter.com/arantespp)",
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
"@aws-sdk/client-cloudformation": "^3.226.0",
|
|
30
30
|
"@octokit/webhooks": "^10.3.1",
|
|
31
31
|
"@slack/webhook": "^6.1.0",
|
|
32
|
-
"@ttoss/cloudformation": "^0.5.
|
|
32
|
+
"@ttoss/cloudformation": "^0.5.2",
|
|
33
33
|
"adm-zip": "^0.5.9",
|
|
34
34
|
"aws-sdk": "^2.1270.0",
|
|
35
35
|
"builtin-modules": "^3.3.0",
|
|
36
36
|
"change-case": "^4.1.2",
|
|
37
37
|
"deep-equal": "^2.1.0",
|
|
38
|
-
"deepmerge": "^4.
|
|
38
|
+
"deepmerge": "^4.3.0",
|
|
39
39
|
"dotenv": "^16.0.3",
|
|
40
40
|
"esbuild": "^0.16.2",
|
|
41
41
|
"findup-sync": "^5.0.0",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"yargs": "^17.6.2"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@ttoss/test-utils": "^1.20.
|
|
54
|
+
"@ttoss/test-utils": "^1.20.3",
|
|
55
55
|
"@types/adm-zip": "^0.5.0",
|
|
56
56
|
"@types/aws-lambda": "^8.10.110",
|
|
57
57
|
"@types/deep-equal": "^1.0.1",
|
|
@@ -65,11 +65,11 @@
|
|
|
65
65
|
"@types/semver": "^7.3.13",
|
|
66
66
|
"@types/uglify-js": "^3.17.1",
|
|
67
67
|
"@types/yargs": "^17.0.17",
|
|
68
|
-
"jest": "^29.4.
|
|
68
|
+
"jest": "^29.4.2"
|
|
69
69
|
},
|
|
70
70
|
"keywords": [],
|
|
71
71
|
"publishConfig": {
|
|
72
72
|
"access": "public"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "01f9bfea6d10cb472b5bf024e3bbacb6fd7cd25c"
|
|
75
75
|
}
|