@capraconsulting/webapp-deploy-lambda 2.1.1 → 2.1.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/README.md +0 -6
- package/package.json +20 -20
package/README.md
CHANGED
|
@@ -70,9 +70,3 @@ python -m webapp_deploy.main s3://my-bucket/my-release.tgz
|
|
|
70
70
|
|
|
71
71
|
- To avoid a race condition in using and updating the deployment log, no
|
|
72
72
|
concurrent execution of the lambda should be allowed.
|
|
73
|
-
|
|
74
|
-
- As we use S3 to hold the deployment log, there is a potential for a
|
|
75
|
-
successive deployment to read an older deployment log. This is due
|
|
76
|
-
to the fact that S3 is eventually consistent. If this happens the files
|
|
77
|
-
that were deployed by the previous run (being overwritten) will
|
|
78
|
-
be kept forever, unless they are also references by another deployment.
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capraconsulting/webapp-deploy-lambda",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.3",
|
|
4
4
|
"description": "CDK construct for deploying a webapp release to S3 and CloudFront",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "https://github.com/
|
|
7
|
+
"url": "https://github.com/capralifecycle/webapp-deploy-lambda"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "./build.sh && tsc",
|
|
@@ -33,27 +33,27 @@
|
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@aws-cdk/assert": "2.
|
|
37
|
-
"@commitlint/cli": "17.
|
|
38
|
-
"@commitlint/config-conventional": "17.
|
|
39
|
-
"@types/jest": "
|
|
40
|
-
"@types/node": "
|
|
41
|
-
"@typescript-eslint/eslint-plugin": "
|
|
42
|
-
"@typescript-eslint/parser": "
|
|
43
|
-
"aws-cdk-lib": "2.
|
|
44
|
-
"constructs": "10.
|
|
45
|
-
"eslint": "8.
|
|
46
|
-
"eslint-config-prettier": "
|
|
47
|
-
"eslint-plugin-deprecation": "
|
|
48
|
-
"eslint-plugin-prettier": "
|
|
36
|
+
"@aws-cdk/assert": "2.68.0",
|
|
37
|
+
"@commitlint/cli": "17.7.1",
|
|
38
|
+
"@commitlint/config-conventional": "17.7.0",
|
|
39
|
+
"@types/jest": "29.5.5",
|
|
40
|
+
"@types/node": "18.17.19",
|
|
41
|
+
"@typescript-eslint/eslint-plugin": "6.7.2",
|
|
42
|
+
"@typescript-eslint/parser": "6.7.2",
|
|
43
|
+
"aws-cdk-lib": "2.86.0",
|
|
44
|
+
"constructs": "10.2.70",
|
|
45
|
+
"eslint": "8.50.0",
|
|
46
|
+
"eslint-config-prettier": "9.0.0",
|
|
47
|
+
"eslint-plugin-deprecation": "2.0.0",
|
|
48
|
+
"eslint-plugin-prettier": "5.0.0",
|
|
49
49
|
"husky": "8.0.3",
|
|
50
|
-
"jest": "
|
|
50
|
+
"jest": "29.7.0",
|
|
51
51
|
"jest-cdk-snapshot": "2.0.1",
|
|
52
|
-
"prettier": "
|
|
53
|
-
"semantic-release": "
|
|
54
|
-
"ts-jest": "
|
|
52
|
+
"prettier": "3.0.3",
|
|
53
|
+
"semantic-release": "21.1.2",
|
|
54
|
+
"ts-jest": "29.1.1",
|
|
55
55
|
"ts-node": "10.9.1",
|
|
56
|
-
"typescript": "
|
|
56
|
+
"typescript": "5.2.2"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"aws-cdk-lib": "^2.0.0",
|