@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/.jsii +5 -5
- package/dist/artifact.js +1 -1
- package/dist/code-commit-source-segment.js +2 -2
- package/dist/git-hub-source-segment.js +2 -2
- package/dist/pipeline-segment.js +1 -1
- package/dist/pipeline.js +1 -1
- package/dist/publish-assets-action.js +3 -3
- package/dist/s3-source-segment.js +2 -2
- package/dist/segment.js +2 -2
- package/dist/source-segment.js +1 -1
- package/dist/stack-segment.js +4 -4
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +11 -11
- package/src/publish-assets-action.ts +1 -1
- package/src/stack-segment.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flit/cdk-pipeline",
|
|
3
|
-
"version": "1.0.
|
|
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.
|
|
50
|
-
"cdk-aws-lambda-powertools-layer": "3.3.
|
|
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.
|
|
53
|
-
"jsii-pacmak": "1.
|
|
54
|
-
"ts-jest": "29.0
|
|
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.
|
|
57
|
-
"aws-cdk-lib": "2.
|
|
58
|
-
"constructs": "10.1.
|
|
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.
|
|
62
|
-
"constructs": "10.1.
|
|
61
|
+
"aws-cdk-lib": "2.73.0",
|
|
62
|
+
"constructs": "10.1.308"
|
|
63
63
|
},
|
|
64
64
|
"bundledDependencies": [
|
|
65
65
|
"path"
|
package/src/stack-segment.ts
CHANGED
|
@@ -137,7 +137,7 @@ export class StackSegmentConstructed extends SegmentConstructed {
|
|
|
137
137
|
docker: 20,
|
|
138
138
|
nodejs: 16,
|
|
139
139
|
},
|
|
140
|
-
commands: ["npm
|
|
140
|
+
commands: ["npm i -g npm@latest", "npm ci"],
|
|
141
141
|
},
|
|
142
142
|
build: {
|
|
143
143
|
commands: props.command,
|