@flit/cdk-pipeline 1.0.13 → 1.0.17

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flit/cdk-pipeline",
3
- "version": "1.0.13",
3
+ "version": "1.0.17",
4
4
  "license": "Apache-2.0",
5
5
  "description": "A highly customizable and extensible CI/CD pipeline intended as alternative to CDK's native CodePipeline",
6
6
  "homepage": "https://p-mercury.github.io/jumper-de/modules/_flit_cdk_pipeline",
@@ -46,20 +46,20 @@
46
46
  "devDependencies": {
47
47
  "@types/node": "18.15.11",
48
48
  "path": "^0.12.7",
49
- "aws-cdk": "2.72.0",
50
- "cdk-aws-lambda-powertools-layer": "3.3.0",
49
+ "aws-cdk": "2.73.0",
50
+ "cdk-aws-lambda-powertools-layer": "3.3.1",
51
51
  "jest": "29.5.0",
52
- "jsii": "5.0.2",
53
- "jsii-pacmak": "1.79.0",
54
- "ts-jest": "29.0.5",
52
+ "jsii": "5.0.4",
53
+ "jsii-pacmak": "1.80.0",
54
+ "ts-jest": "29.1.0",
55
55
  "ts-node": "10.9.1",
56
- "typescript": "5.0.3",
57
- "aws-cdk-lib": "2.72.0",
58
- "constructs": "10.1.297"
56
+ "typescript": "5.0.4",
57
+ "aws-cdk-lib": "2.73.0",
58
+ "constructs": "10.1.308"
59
59
  },
60
60
  "peerDependencies": {
61
- "aws-cdk-lib": "2.72.0",
62
- "constructs": "10.1.297"
61
+ "aws-cdk-lib": "2.73.0",
62
+ "constructs": "10.1.308"
63
63
  },
64
64
  "bundledDependencies": [
65
65
  "path"
@@ -97,7 +97,7 @@ export class PublishAssetsAction extends Construct implements IAction {
97
97
  nodejs: 16,
98
98
  },
99
99
  commands: [
100
- "npm install -g npm@latest",
100
+ "npm i -g npm@latest",
101
101
  "npm i -g @flit/publish-cdk-assets@latest",
102
102
  ],
103
103
  },
@@ -137,7 +137,7 @@ export class StackSegmentConstructed extends SegmentConstructed {
137
137
  docker: 20,
138
138
  nodejs: 16,
139
139
  },
140
- commands: ["npm install -g npm@latest", "npm ci"],
140
+ commands: ["npm i -g npm@latest", "npm ci"],
141
141
  },
142
142
  build: {
143
143
  commands: props.command,