@codedazur/cdk-docker-cluster 0.9.1 → 0.9.2
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/CHANGELOG.md +7 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @codedazur/cdk-docker-cluster
|
|
2
2
|
|
|
3
|
+
## 0.9.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`ddef1e0`](https://github.com/codedazur/toolkit/commit/ddef1e023538d35ecf637a30e654f10ebb06d8d2)]:
|
|
8
|
+
- @codedazur/cdk-site-distribution@0.5.0
|
|
9
|
+
|
|
3
10
|
## 0.9.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/dist/index.d.mts
CHANGED
|
@@ -29,6 +29,8 @@ interface SourceProps {
|
|
|
29
29
|
/**
|
|
30
30
|
* An Docker cluster on a load balanced Fargate service on EC2, using an image
|
|
31
31
|
* built from a Dockerfile in a directory and pushed to ECR.
|
|
32
|
+
* @todo Make the distribution and laod balancer optional, to reduce cost and
|
|
33
|
+
* increase deployment speed for development environments.
|
|
32
34
|
*/
|
|
33
35
|
declare class DockerCluster extends Construct {
|
|
34
36
|
protected readonly props: DockerClusterProps;
|
package/dist/index.d.ts
CHANGED
|
@@ -29,6 +29,8 @@ interface SourceProps {
|
|
|
29
29
|
/**
|
|
30
30
|
* An Docker cluster on a load balanced Fargate service on EC2, using an image
|
|
31
31
|
* built from a Dockerfile in a directory and pushed to ECR.
|
|
32
|
+
* @todo Make the distribution and laod balancer optional, to reduce cost and
|
|
33
|
+
* increase deployment speed for development environments.
|
|
32
34
|
*/
|
|
33
35
|
declare class DockerCluster extends Construct {
|
|
34
36
|
protected readonly props: DockerClusterProps;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codedazur/cdk-docker-cluster",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"main": ".dist/index.js",
|
|
5
5
|
"module": "./dist/index.mjs",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"scripts": {
|
|
18
18
|
"develop": "tsup src/index.ts --format esm,cjs --dts --watch",
|
|
19
19
|
"build": "tsup src/index.ts --format esm,cjs --dts",
|
|
20
|
-
"audit": "npm audit --omit dev",
|
|
20
|
+
"audit": "npm audit --omit dev --audit-level high",
|
|
21
21
|
"lint": "TIMING=1 eslint \"**/*.ts*\"",
|
|
22
22
|
"types": "tsc --noEmit",
|
|
23
23
|
"test": "vitest run --passWithNoTests"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"constructs": ">=10"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@codedazur/cdk-site-distribution": "^0.
|
|
30
|
+
"@codedazur/cdk-site-distribution": "^0.5.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/node": "^20.14.10",
|