low-cost-ecs 0.0.20 → 0.0.22

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/.jsii CHANGED
@@ -3062,7 +3062,7 @@
3062
3062
  "types": {
3063
3063
  "low-cost-ecs.LowCostECS": {
3064
3064
  "assembly": "low-cost-ecs",
3065
- "base": "aws-cdk-lib.Stack",
3065
+ "base": "constructs.Construct",
3066
3066
  "docs": {
3067
3067
  "stability": "experimental"
3068
3068
  },
@@ -3073,7 +3073,7 @@
3073
3073
  },
3074
3074
  "locationInModule": {
3075
3075
  "filename": "src/low-cost-ecs.ts",
3076
- "line": 137
3076
+ "line": 139
3077
3077
  },
3078
3078
  "parameters": [
3079
3079
  {
@@ -3124,7 +3124,7 @@
3124
3124
  "immutable": true,
3125
3125
  "locationInModule": {
3126
3126
  "filename": "src/low-cost-ecs.ts",
3127
- "line": 134
3127
+ "line": 135
3128
3128
  },
3129
3129
  "name": "cluster",
3130
3130
  "type": {
@@ -3152,13 +3152,41 @@
3152
3152
  "immutable": true,
3153
3153
  "locationInModule": {
3154
3154
  "filename": "src/low-cost-ecs.ts",
3155
- "line": 135
3155
+ "line": 136
3156
+ },
3157
+ "name": "serverTaskDefinition",
3158
+ "type": {
3159
+ "fqn": "aws-cdk-lib.aws_ecs.Ec2TaskDefinition"
3160
+ }
3161
+ },
3162
+ {
3163
+ "docs": {
3164
+ "stability": "experimental"
3165
+ },
3166
+ "immutable": true,
3167
+ "locationInModule": {
3168
+ "filename": "src/low-cost-ecs.ts",
3169
+ "line": 137
3156
3170
  },
3157
3171
  "name": "service",
3158
3172
  "type": {
3159
3173
  "fqn": "aws-cdk-lib.aws_ecs.Ec2Service"
3160
3174
  }
3161
3175
  },
3176
+ {
3177
+ "docs": {
3178
+ "stability": "experimental"
3179
+ },
3180
+ "immutable": true,
3181
+ "locationInModule": {
3182
+ "filename": "src/low-cost-ecs.ts",
3183
+ "line": 134
3184
+ },
3185
+ "name": "topic",
3186
+ "type": {
3187
+ "fqn": "aws-cdk-lib.aws_sns.Topic"
3188
+ }
3189
+ },
3162
3190
  {
3163
3191
  "docs": {
3164
3192
  "stability": "experimental"
@@ -3183,9 +3211,6 @@
3183
3211
  "stability": "experimental"
3184
3212
  },
3185
3213
  "fqn": "low-cost-ecs.LowCostECSProps",
3186
- "interfaces": [
3187
- "aws-cdk-lib.StackProps"
3188
- ],
3189
3214
  "kind": "interface",
3190
3215
  "locationInModule": {
3191
3216
  "filename": "src/low-cost-ecs.ts",
@@ -3535,6 +3560,6 @@
3535
3560
  "symbolId": "src/low-cost-ecs:LowCostECSTaskDefinitionOptions"
3536
3561
  }
3537
3562
  },
3538
- "version": "0.0.20",
3539
- "fingerprint": "Gph45q9wxyFgDvuqDWwm0GzI7tCknWVDz2CulsemtRU="
3563
+ "version": "0.0.22",
3564
+ "fingerprint": "SEDtANmtj6kiupr0Ty6oKWlkmTg84dhrcXWKnOFF+oM="
3540
3565
  }
package/.projenrc.ts CHANGED
@@ -52,7 +52,4 @@ const testTask = project.tasks.tryFind('test');
52
52
  const newTestCommand = testTask!.steps[0]!.exec!.replace(' --updateSnapshot', '');
53
53
  testTask!.reset(newTestCommand);
54
54
 
55
- // workaround until fixed https://youtrack.jetbrains.com/issue/WEB-57089/ESLint823-TypeError-thislibOptionsparse-is-not-a-function
56
- project.addDevDeps('eslint@8.22.0');
57
-
58
55
  project.synth();