@pipeline-builder/pipeline-core 3.4.135 → 3.4.136
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/lib/cdk.d.ts +38 -0
- package/lib/cdk.js +44 -0
- package/lib/config/aws-config-cdk.d.ts +49 -0
- package/lib/config/aws-config-cdk.js +65 -0
- package/lib/config/config-types.d.ts +21 -10
- package/lib/config/config-types.js +1 -1
- package/lib/config/handler-constants.js +10 -5
- package/lib/config/infrastructure-config.js +19 -32
- package/lib/core/metadata-helpers.d.ts +31 -0
- package/lib/core/metadata-helpers.js +55 -0
- package/lib/core/pipeline-helpers.d.ts +0 -23
- package/lib/core/pipeline-helpers.js +3 -45
- package/lib/core/pipeline-types.d.ts +0 -11
- package/lib/core/pipeline-types.js +1 -1
- package/lib/index.d.ts +18 -27
- package/lib/index.js +21 -30
- package/lib/pipeline/pipeline-builder.js +6 -5
- package/lib/pipeline/pipeline-configuration.d.ts +2 -2
- package/lib/pipeline/pipeline-configuration.js +2 -2
- package/lib/pipeline/plugin-spec.d.ts +138 -0
- package/lib/pipeline/plugin-spec.js +4 -0
- package/lib/pipeline/source-builder.js +1 -1
- package/lib/pipeline/source-types.d.ts +10 -0
- package/lib/pipeline/source-types.js +1 -1
- package/lib/pipeline/stage-builder.js +3 -2
- package/lib/pipeline/step-types.d.ts +2 -129
- package/lib/pipeline/step-types.js +1 -1
- package/package.json +21 -5
package/package.json
CHANGED
|
@@ -15,6 +15,8 @@
|
|
|
15
15
|
"@typescript-eslint/eslint-plugin": "^8",
|
|
16
16
|
"@typescript-eslint/parser": "^8",
|
|
17
17
|
"@typescript/native": "npm:typescript@^7.0.2",
|
|
18
|
+
"aws-cdk-lib": "2.263.0",
|
|
19
|
+
"constructs": "10.7.0",
|
|
18
20
|
"copyfiles": "2.4.1",
|
|
19
21
|
"eslint": "^9",
|
|
20
22
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
@@ -24,14 +26,16 @@
|
|
|
24
26
|
"ts-jest": "29.4.12",
|
|
25
27
|
"typescript": "npm:@typescript/typescript6@^6.0.2"
|
|
26
28
|
},
|
|
29
|
+
"peerDependencies": {
|
|
30
|
+
"aws-cdk-lib": "^2.263.0",
|
|
31
|
+
"constructs": "^10.5.0"
|
|
32
|
+
},
|
|
27
33
|
"dependencies": {
|
|
28
|
-
"aws-cdk-lib": "2.263.0",
|
|
29
34
|
"axios": "1.19.0",
|
|
30
|
-
"constructs": "10.7.0",
|
|
31
35
|
"jsonwebtoken": "9.0.3",
|
|
32
36
|
"uuid": "14.0.1",
|
|
33
|
-
"@pipeline-builder/
|
|
34
|
-
"@pipeline-builder/
|
|
37
|
+
"@pipeline-builder/api-core": "3.4.117",
|
|
38
|
+
"@pipeline-builder/pipeline-data": "3.4.122"
|
|
35
39
|
},
|
|
36
40
|
"keywords": [
|
|
37
41
|
"ci-cd",
|
|
@@ -87,7 +91,7 @@
|
|
|
87
91
|
"access": "public",
|
|
88
92
|
"registry": "https://registry.npmjs.org/"
|
|
89
93
|
},
|
|
90
|
-
"version": "3.4.
|
|
94
|
+
"version": "3.4.136",
|
|
91
95
|
"bugs": {
|
|
92
96
|
"url": "https://github.com/mwashburn160/pipeline-builder/issues"
|
|
93
97
|
},
|
|
@@ -151,6 +155,18 @@
|
|
|
151
155
|
},
|
|
152
156
|
"types": "lib/index.d.ts",
|
|
153
157
|
"type": "module",
|
|
158
|
+
"exports": {
|
|
159
|
+
".": {
|
|
160
|
+
"types": "./lib/index.d.ts",
|
|
161
|
+
"default": "./lib/index.js"
|
|
162
|
+
},
|
|
163
|
+
"./cdk": {
|
|
164
|
+
"types": "./lib/cdk.d.ts",
|
|
165
|
+
"default": "./lib/cdk.js"
|
|
166
|
+
},
|
|
167
|
+
"./lib/*": "./lib/*",
|
|
168
|
+
"./package.json": "./package.json"
|
|
169
|
+
},
|
|
154
170
|
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"pnpm dlx projen\".",
|
|
155
171
|
"scripts": {
|
|
156
172
|
"build": "pnpm dlx projen build",
|