@codedazur/cdk-docker-cluster 0.9.6 → 0.9.7

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @codedazur/cdk-docker-cluster
2
2
 
3
+ ## 0.9.7
4
+
5
+ ### Patch Changes
6
+
7
+ - [#296](https://github.com/codedazur/toolkit/pull/296) [`ed9f7e6`](https://github.com/codedazur/toolkit/commit/ed9f7e62e0f1a53d34356963ac9bcfab77219b45) Thanks [@rickootes](https://github.com/rickootes)! - Correct typo in autoscaling configuration.
8
+
3
9
  ## 0.9.6
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -29,7 +29,7 @@ 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
32
+ * @todo Make the distribution and load balancer optional, to reduce cost and
33
33
  * increase deployment speed for development environments.
34
34
  */
35
35
  declare class DockerCluster extends Construct {
package/dist/index.d.ts CHANGED
@@ -29,7 +29,7 @@ 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
32
+ * @todo Make the distribution and load balancer optional, to reduce cost and
33
33
  * increase deployment speed for development environments.
34
34
  */
35
35
  declare class DockerCluster extends Construct {
package/dist/index.js CHANGED
@@ -78,7 +78,7 @@ var DockerCluster = class extends import_constructs.Construct {
78
78
  }
79
79
  });
80
80
  if (typeof ((_j = this.props.service) == null ? void 0 : _j.tasks) === "object") {
81
- this.service.service.autoScaleTaskCount({
81
+ service.service.autoScaleTaskCount({
82
82
  minCapacity: (_k = this.props.service) == null ? void 0 : _k.tasks.minimum,
83
83
  maxCapacity: (_l = this.props.service) == null ? void 0 : _l.tasks.maximum
84
84
  });
package/dist/index.mjs CHANGED
@@ -62,7 +62,7 @@ var DockerCluster = class extends Construct {
62
62
  }
63
63
  });
64
64
  if (typeof ((_j = this.props.service) == null ? void 0 : _j.tasks) === "object") {
65
- this.service.service.autoScaleTaskCount({
65
+ service.service.autoScaleTaskCount({
66
66
  minCapacity: (_k = this.props.service) == null ? void 0 : _k.tasks.minimum,
67
67
  maxCapacity: (_l = this.props.service) == null ? void 0 : _l.tasks.maximum
68
68
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codedazur/cdk-docker-cluster",
3
- "version": "0.9.6",
3
+ "version": "0.9.7",
4
4
  "main": ".dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",