@flit/cdk-pipeline 1.0.19 → 1.0.20
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 +41 -6
- package/dist/artifact.d.ts +1 -1
- package/dist/artifact.js +4 -4
- 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 +1 -1
- 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 +2 -2
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +9 -9
- package/src/artifact.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flit/cdk-pipeline",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.20",
|
|
4
4
|
"description": "A highly customizable and extensible CI/CD pipeline intended as alternative to CDK's native CodePipeline",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"aws",
|
|
@@ -39,21 +39,21 @@
|
|
|
39
39
|
"path": "^0.12.7"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@types/node": "^
|
|
43
|
-
"aws-cdk": "^2.
|
|
44
|
-
"aws-cdk-lib": "2.
|
|
42
|
+
"@types/node": "^20.1.4",
|
|
43
|
+
"aws-cdk": "^2.79.1",
|
|
44
|
+
"aws-cdk-lib": "2.79.1",
|
|
45
45
|
"cdk-aws-lambda-powertools-layer": "^3.5.0",
|
|
46
|
-
"constructs": "10.2.
|
|
46
|
+
"constructs": "10.2.24",
|
|
47
47
|
"jest": "^29.5.0",
|
|
48
|
-
"jsii": "^5.0.
|
|
49
|
-
"jsii-pacmak": "^1.
|
|
48
|
+
"jsii": "^5.0.8",
|
|
49
|
+
"jsii-pacmak": "^1.81.0",
|
|
50
50
|
"ts-jest": "^29.1.0",
|
|
51
51
|
"ts-node": "^10.9.1",
|
|
52
52
|
"typescript": "^5.0.4"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"aws-cdk-lib": "^2.
|
|
56
|
-
"constructs": "^10.2.
|
|
55
|
+
"aws-cdk-lib": "^2.79.1",
|
|
56
|
+
"constructs": "^10.2.24"
|
|
57
57
|
},
|
|
58
58
|
"bundledDependencies": [
|
|
59
59
|
"path"
|
package/src/artifact.ts
CHANGED
|
@@ -5,8 +5,8 @@ import { Segment } from "./segment";
|
|
|
5
5
|
export class Artifact extends AwsArtifact {
|
|
6
6
|
private producer?: Segment;
|
|
7
7
|
private consumers: Segment[] = [];
|
|
8
|
-
constructor() {
|
|
9
|
-
super();
|
|
8
|
+
constructor(artifactName?: string) {
|
|
9
|
+
super(artifactName);
|
|
10
10
|
}
|
|
11
11
|
produce(producer: Segment) {
|
|
12
12
|
if (this.producer) throw new Error("Artifact is already produced");
|