@gradientedge/cdk-utils 8.49.0 → 8.51.0
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.
|
@@ -6,12 +6,12 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/mkdirp@3.0.
|
|
9
|
+
export NODE_PATH="/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/mkdirp@3.0.1/node_modules/mkdirp/dist/cjs/src/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/mkdirp@3.0.1/node_modules/mkdirp/dist/cjs/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/mkdirp@3.0.1/node_modules/mkdirp/dist/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/mkdirp@3.0.1/node_modules/mkdirp/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/mkdirp@3.0.1/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/mkdirp@3.0.
|
|
11
|
+
export NODE_PATH="/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/mkdirp@3.0.1/node_modules/mkdirp/dist/cjs/src/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/mkdirp@3.0.1/node_modules/mkdirp/dist/cjs/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/mkdirp@3.0.1/node_modules/mkdirp/dist/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/mkdirp@3.0.1/node_modules/mkdirp/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/mkdirp@3.0.1/node_modules:/home/runner/work/cdk-utils/cdk-utils/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
|
-
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/mkdirp@3.0.
|
|
14
|
+
exec "$basedir/node" "$basedir/../../../../node_modules/.pnpm/mkdirp@3.0.1/node_modules/mkdirp/dist/cjs/src/bin.js" "$@"
|
|
15
15
|
else
|
|
16
|
-
exec node "$basedir/../../../../node_modules/.pnpm/mkdirp@3.0.
|
|
16
|
+
exec node "$basedir/../../../../node_modules/.pnpm/mkdirp@3.0.1/node_modules/mkdirp/dist/cjs/src/bin.js" "$@"
|
|
17
17
|
fi
|
|
@@ -301,8 +301,9 @@ class SiteWithEcsBackend extends common_1.CommonConstruct {
|
|
|
301
301
|
/* if enabled, add efs with access point and mount */
|
|
302
302
|
if (this.props.siteFileSystem) {
|
|
303
303
|
this.siteFileSystem = this.efsManager.createFileSystem(`${this.id}-fs`, this, this.props.siteFileSystem, this.siteVpc, this.props.siteFileSystemAccessPoints);
|
|
304
|
-
/* allow access to EFS from Fargate ECS service */
|
|
304
|
+
/* allow access to/from EFS from Fargate ECS service */
|
|
305
305
|
this.siteFileSystem.connections.allowDefaultPortFrom(this.siteEcsService.connections);
|
|
306
|
+
this.siteFileSystem.connections.allowDefaultPortTo(this.siteEcsService.connections);
|
|
306
307
|
/* add the efs volume to ecs task definition */
|
|
307
308
|
this.siteEcsTaskDefinition.addVolume({
|
|
308
309
|
name: `${this.id}-fs`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gradientedge/cdk-utils",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.51.0",
|
|
4
4
|
"description": "Utilities for AWS CDK provisioning",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"engines": {
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@types/lodash": "^4.14.
|
|
49
|
-
"@types/node": "^18.
|
|
48
|
+
"@types/lodash": "^4.14.194",
|
|
49
|
+
"@types/node": "^18.16.3",
|
|
50
50
|
"app-root-path": "^3.1.0",
|
|
51
|
-
"aws-cdk-lib": "^2.
|
|
52
|
-
"@aws-sdk/client-secrets-manager": "^3.
|
|
53
|
-
"constructs": "^10.
|
|
51
|
+
"aws-cdk-lib": "^2.78.0",
|
|
52
|
+
"@aws-sdk/client-secrets-manager": "^3.326.0",
|
|
53
|
+
"constructs": "^10.2.15",
|
|
54
54
|
"lodash": "^4.17.21",
|
|
55
55
|
"moment": "^2.29.4",
|
|
56
56
|
"nconf": "^0.12.0",
|
|
@@ -58,31 +58,31 @@
|
|
|
58
58
|
"ts-node": "^10.9.1"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@babel/core": "^7.21.
|
|
62
|
-
"@babel/eslint-parser": "^7.21.
|
|
61
|
+
"@babel/core": "^7.21.8",
|
|
62
|
+
"@babel/eslint-parser": "^7.21.8",
|
|
63
63
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
64
|
-
"@types/jest": "^29.5.
|
|
65
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
66
|
-
"@typescript-eslint/parser": "^5.
|
|
67
|
-
"aws-cdk": "^2.
|
|
64
|
+
"@types/jest": "^29.5.1",
|
|
65
|
+
"@typescript-eslint/eslint-plugin": "^5.59.2",
|
|
66
|
+
"@typescript-eslint/parser": "^5.59.2",
|
|
67
|
+
"aws-cdk": "^2.78.0",
|
|
68
68
|
"better-docs": "^2.7.2",
|
|
69
69
|
"codecov": "^3.8.3",
|
|
70
70
|
"commitizen": "^4.3.0",
|
|
71
71
|
"dotenv": "^16.0.3",
|
|
72
|
-
"eslint": "^8.
|
|
72
|
+
"eslint": "^8.39.0",
|
|
73
73
|
"eslint-config-prettier": "^8.8.0",
|
|
74
74
|
"eslint-plugin-import": "^2.27.5",
|
|
75
75
|
"husky": "^8.0.3",
|
|
76
76
|
"jest": "^29.5.0",
|
|
77
77
|
"jest-extended": "^3.2.4",
|
|
78
|
-
"jest-junit": "^
|
|
78
|
+
"jest-junit": "^16.0.0",
|
|
79
79
|
"jsdoc": "^4.0.2",
|
|
80
80
|
"jsdoc-babel": "^0.5.0",
|
|
81
81
|
"jsdoc-mermaid": "^1.0.0",
|
|
82
|
-
"prettier": "^2.8.
|
|
82
|
+
"prettier": "^2.8.8",
|
|
83
83
|
"prettier-plugin-organize-imports": "^3.2.2",
|
|
84
84
|
"rimraf": "^5.0.0",
|
|
85
|
-
"semantic-release": "^21.0.
|
|
85
|
+
"semantic-release": "^21.0.2",
|
|
86
86
|
"taffydb": "^2.7.3",
|
|
87
87
|
"ts-jest": "^29.1.0",
|
|
88
88
|
"ts-node": "^10.9.1",
|
|
@@ -340,8 +340,9 @@ export class SiteWithEcsBackend extends CommonConstruct {
|
|
|
340
340
|
this.props.siteFileSystemAccessPoints
|
|
341
341
|
)
|
|
342
342
|
|
|
343
|
-
/* allow access to EFS from Fargate ECS service */
|
|
343
|
+
/* allow access to/from EFS from Fargate ECS service */
|
|
344
344
|
this.siteFileSystem.connections.allowDefaultPortFrom(this.siteEcsService.connections)
|
|
345
|
+
this.siteFileSystem.connections.allowDefaultPortTo(this.siteEcsService.connections)
|
|
345
346
|
|
|
346
347
|
/* add the efs volume to ecs task definition */
|
|
347
348
|
this.siteEcsTaskDefinition.addVolume({
|