Skip to content

Commit 1cd4f6d

Browse files
author
Esen Sagynov
committed
Updated top level dependencies.
- Updated Lerna to the latest version. - Updated Webpack dependency in cdkdx which has an SSL security issue hupe1980/cdkdx#22. - Updated ClamAV version for Ubuntu run in Docker. Version `0.103.11-1.el7` is no longer available. - Added build instructions to README. Build results: ``` Lerna (powered by Nx) Successfully ran target build for 45 projects (2m) ✨ Done in 113.17s. ``` Test results: ``` Test Suites: 42 passed, 42 total Tests: 106 passed, 106 total Snapshots: 64 passed, 64 total Time: 7.664 s Ran all test suites in 27 projects. ✨ Done in 10.13s. ```
1 parent 154e186 commit 1cd4f6d

File tree

5 files changed

+3614
-3595
lines changed

5 files changed

+3614
-3595
lines changed

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,18 @@ This repository is a monorepo managed with [Lerna](https://github.com/lerna/lern
4545

4646
We welcome community contributions and pull requests.
4747

48+
## Build
49+
50+
1. Install `yarn` on your system.
51+
52+
1. Install Docker which is required for some of the packages.
53+
54+
1. Install Node dependencies.
55+
56+
yarn install
57+
58+
1.
59+
4860
## License
4961

5062
[MIT](LICENSE)

lerna.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"npmClient": "yarn",
3-
"useWorkspaces": true,
43
"packages": ["packages/*", "examples/*"],
54
"version": "independent",
65
"command": {

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
"examples/*"
2323
],
2424
"devDependencies": {
25-
"@types/node": "^14.14.31",
26-
"cdkdx": "^1.7.0",
27-
"cross-env": "^7.0.3",
28-
"lerna": "^4.0.0"
25+
"@types/node": "14.14.31",
26+
"cdkdx": "1.9.0",
27+
"cross-env": "7.0.3",
28+
"lerna": "8.1.2"
2929
}
3030
}

packages/cdk-s3-antivirus/src/layers/clamav/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM public.ecr.aws/lambda/provided:al2.2021.09.13.11
22

33
ARG asset_name=layer
4-
ARG CLAMAV_VERSION=0.103.5-1.el7
4+
ARG CLAMAV_VERSION=0.103.11-1.el7
55

66
USER root
77
RUN mkdir -p /opt/{lib,clamav}
@@ -14,7 +14,7 @@ RUN amazon-linux-extras install epel -y && yum-config-manager --enable epel
1414

1515
#
1616
# layer
17-
#
17+
#
1818
RUN yum install clamav-$CLAMAV_VERSION -y
1919

2020

0 commit comments

Comments
 (0)