@rocketleap/rocketleap-projen 0.0.10 → 0.0.12
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 +3552 -70
- package/.pre-commit-config.yaml +3 -24
- package/.yarn/install-state.gz +0 -0
- package/API.md +4559 -297
- package/README.md +103 -1
- package/lib/cdk-project-options.generated.d.ts +1260 -0
- package/lib/cdk-project-options.generated.js +3 -0
- package/lib/cdk-project.d.ts +30 -37
- package/lib/cdk-project.js +80 -22
- package/lib/common/compile.d.ts +4 -0
- package/lib/common/compile.js +5 -1
- package/lib/common/pre-commit.js +3 -7
- package/lib/common/prettier.js +2 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/package.json +2 -1
package/.jsii
CHANGED
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
},
|
|
96
96
|
"name": "@rocketleap/rocketleap-projen",
|
|
97
97
|
"readme": {
|
|
98
|
-
"markdown": "# replace
|
|
98
|
+
"markdown": "# rocketleap-projen\n\nThis project provides projen templates to quickly set up CDK projects in the Rocketleap platform.\nIt automatically tracks the `building-blocks-cdk` making it easy to stay up to date.\n\n## Features\n\n- Pre-configured AWS CDK TypeScript project setup\n- Automatic dependency management for `building-blocks-cdk`\n- Standardized ESLint, Prettier, and Git configuration\n- Yarn Berry (v4) with private registry support\n- Pre-commit hooks for code quality\n\n## How to adopt\n\n### New project\n\nRun `projen new` to create a new project:\n\n```shell\nnpx projen new --from @rocketleap/rocketleap-projen --company \"<company>\" --project \"<project>\"\n```\n\n### Existing project\n\nExisting projects can adopt the projen templates and get managed by `projen`.\n\n1. Install the `rocketleap-projen` library and peer dependencies:\n\n ```shell\n yarn add -D @rocketleap/rocketleap-projen projen\n ```\n\n2. Create or replace the `.projenrc.ts` file using the appropriate project type:\n\n ```typescript\n import { PlatformCdkProject } from '@rocketleap/rocketleap-projen';\n\n const project = new PlatformCdkProject({\n company: '<company>',\n project: '<project>',\n });\n\n project.synth();\n ```\n\n3. Run projen to generate the project configuration:\n\n ```shell\n npx ts-node .projenrc.ts\n ```\n\n## Project Types\n\n### PlatformCdkProject\n\nUse for **platform infrastructure** code (e.g., root-cdk, vpc-cdk, iam-cdk, security-cdk).\n\n- Includes the Norberhuis Onderneming B.V. IaC License\n- For code that is part of the licensed platform\n\n```typescript\nimport { PlatformCdkProject } from '@rocketleap/rocketleap-projen';\n\nconst project = new PlatformCdkProject({\n company: 'rocketleap',\n project: 'root-cdk',\n});\n\nproject.synth();\n```\n\n### WorkloadCdkProject\n\nUse for **customer workload** code that runs on the platform.\n\n- Does NOT include the platform license\n- For customer-specific application infrastructure\n\n```typescript\nimport { WorkloadCdkProject } from '@rocketleap/rocketleap-projen';\n\nconst project = new WorkloadCdkProject({\n company: 'acme',\n project: 'my-app-cdk',\n});\n\nproject.synth();\n```\n\n### RocketleapCdkProject (Base)\n\nThe base class used by both project types. Can be used directly if you need custom license handling.\n\n## Options\n\n| Option | Required | Default | Description |\n| ----------------------- | -------- | ----------- | ----------------------------------------------- |\n| `company` | Yes | - | The company identifier used for package scoping |\n| `project` | Yes | - | The project name |\n| `cdkVersion` | No | `'2.232.1'` | The AWS CDK version to use |\n| `constructVersion` | No | `'10.4.4'` | The constructs library version |\n| `buildingBlocksVersion` | No | `'0.104.1'` | The Rocketleap building blocks CDK version |\n"
|
|
99
99
|
},
|
|
100
100
|
"repository": {
|
|
101
101
|
"type": "git",
|
|
@@ -106,35 +106,35 @@
|
|
|
106
106
|
"@rocketleap/rocketleap-projen.actions": {
|
|
107
107
|
"locationInModule": {
|
|
108
108
|
"filename": "src/index.ts",
|
|
109
|
-
"line":
|
|
109
|
+
"line": 7
|
|
110
110
|
},
|
|
111
111
|
"symbolId": "src/common/actions:"
|
|
112
112
|
},
|
|
113
113
|
"@rocketleap/rocketleap-projen.format": {
|
|
114
114
|
"locationInModule": {
|
|
115
115
|
"filename": "src/index.ts",
|
|
116
|
-
"line":
|
|
116
|
+
"line": 3
|
|
117
117
|
},
|
|
118
118
|
"symbolId": "src/common/prettier:"
|
|
119
119
|
},
|
|
120
120
|
"@rocketleap/rocketleap-projen.git": {
|
|
121
121
|
"locationInModule": {
|
|
122
122
|
"filename": "src/index.ts",
|
|
123
|
-
"line":
|
|
123
|
+
"line": 6
|
|
124
124
|
},
|
|
125
125
|
"symbolId": "src/common/git:"
|
|
126
126
|
},
|
|
127
127
|
"@rocketleap/rocketleap-projen.lint": {
|
|
128
128
|
"locationInModule": {
|
|
129
129
|
"filename": "src/index.ts",
|
|
130
|
-
"line":
|
|
130
|
+
"line": 4
|
|
131
131
|
},
|
|
132
132
|
"symbolId": "src/common/eslint:"
|
|
133
133
|
},
|
|
134
134
|
"@rocketleap/rocketleap-projen.packages": {
|
|
135
135
|
"locationInModule": {
|
|
136
136
|
"filename": "src/index.ts",
|
|
137
|
-
"line":
|
|
137
|
+
"line": 5
|
|
138
138
|
},
|
|
139
139
|
"symbolId": "src/common/yarn:"
|
|
140
140
|
}
|
|
@@ -145,66 +145,31 @@
|
|
|
145
145
|
}
|
|
146
146
|
},
|
|
147
147
|
"types": {
|
|
148
|
-
"@rocketleap/rocketleap-projen.RocketleapCdkProject": {
|
|
149
|
-
"assembly": "@rocketleap/rocketleap-projen",
|
|
150
|
-
"base": "projen.awscdk.AwsCdkTypeScriptApp",
|
|
151
|
-
"docs": {
|
|
152
|
-
"remarks": "This project type generates a fully configured AWS CDK TypeScript application\nwith Rocketleap's standard configuration including ESLint, Prettier, Yarn Berry,\nand pre-commit hooks.",
|
|
153
|
-
"stability": "stable",
|
|
154
|
-
"summary": "A projen project for Rocketleap CDK projects."
|
|
155
|
-
},
|
|
156
|
-
"fqn": "@rocketleap/rocketleap-projen.RocketleapCdkProject",
|
|
157
|
-
"initializer": {
|
|
158
|
-
"docs": {
|
|
159
|
-
"stability": "stable"
|
|
160
|
-
},
|
|
161
|
-
"locationInModule": {
|
|
162
|
-
"filename": "src/cdk-project.ts",
|
|
163
|
-
"line": 53
|
|
164
|
-
},
|
|
165
|
-
"parameters": [
|
|
166
|
-
{
|
|
167
|
-
"name": "options",
|
|
168
|
-
"type": {
|
|
169
|
-
"fqn": "@rocketleap/rocketleap-projen.RocketleapCdkProjectOptions"
|
|
170
|
-
}
|
|
171
|
-
}
|
|
172
|
-
]
|
|
173
|
-
},
|
|
174
|
-
"kind": "class",
|
|
175
|
-
"locationInModule": {
|
|
176
|
-
"filename": "src/cdk-project.ts",
|
|
177
|
-
"line": 52
|
|
178
|
-
},
|
|
179
|
-
"name": "RocketleapCdkProject",
|
|
180
|
-
"symbolId": "src/cdk-project:RocketleapCdkProject"
|
|
181
|
-
},
|
|
182
148
|
"@rocketleap/rocketleap-projen.RocketleapCdkProjectOptions": {
|
|
183
149
|
"assembly": "@rocketleap/rocketleap-projen",
|
|
184
150
|
"datatype": true,
|
|
185
151
|
"docs": {
|
|
186
152
|
"stability": "stable",
|
|
187
|
-
"summary": "
|
|
153
|
+
"summary": "RocketleapCdkProjectOptions."
|
|
188
154
|
},
|
|
189
155
|
"fqn": "@rocketleap/rocketleap-projen.RocketleapCdkProjectOptions",
|
|
190
156
|
"kind": "interface",
|
|
191
157
|
"locationInModule": {
|
|
192
|
-
"filename": "src/cdk-project.ts",
|
|
193
|
-
"line":
|
|
158
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
159
|
+
"line": 7
|
|
194
160
|
},
|
|
195
161
|
"name": "RocketleapCdkProjectOptions",
|
|
196
162
|
"properties": [
|
|
197
163
|
{
|
|
198
164
|
"abstract": true,
|
|
199
165
|
"docs": {
|
|
200
|
-
"example": "'rocketleap'",
|
|
201
166
|
"stability": "stable",
|
|
202
167
|
"summary": "The company identifier used for package scoping."
|
|
203
168
|
},
|
|
204
169
|
"immutable": true,
|
|
205
170
|
"locationInModule": {
|
|
206
|
-
"filename": "src/cdk-project.ts",
|
|
207
|
-
"line":
|
|
171
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
172
|
+
"line": 1242
|
|
208
173
|
},
|
|
209
174
|
"name": "company",
|
|
210
175
|
"type": {
|
|
@@ -214,14 +179,13 @@
|
|
|
214
179
|
{
|
|
215
180
|
"abstract": true,
|
|
216
181
|
"docs": {
|
|
217
|
-
"example": "'root-cdk'",
|
|
218
182
|
"stability": "stable",
|
|
219
183
|
"summary": "The project name."
|
|
220
184
|
},
|
|
221
185
|
"immutable": true,
|
|
222
186
|
"locationInModule": {
|
|
223
|
-
"filename": "src/cdk-project.ts",
|
|
224
|
-
"line":
|
|
187
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
188
|
+
"line": 1246
|
|
225
189
|
},
|
|
226
190
|
"name": "project",
|
|
227
191
|
"type": {
|
|
@@ -231,16 +195,34 @@
|
|
|
231
195
|
{
|
|
232
196
|
"abstract": true,
|
|
233
197
|
"docs": {
|
|
234
|
-
"default": "
|
|
235
|
-
"
|
|
236
|
-
"
|
|
198
|
+
"default": "true",
|
|
199
|
+
"remarks": "This is normally only allowed for libraries. For apps, there's no meaning\nfor specifying these.",
|
|
200
|
+
"stability": "experimental",
|
|
201
|
+
"summary": "Allow the project to include `peerDependencies` and `bundledDependencies`."
|
|
237
202
|
},
|
|
238
203
|
"immutable": true,
|
|
239
204
|
"locationInModule": {
|
|
240
|
-
"filename": "src/cdk-project.ts",
|
|
241
|
-
"line":
|
|
205
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
206
|
+
"line": 1053
|
|
242
207
|
},
|
|
243
|
-
"name": "
|
|
208
|
+
"name": "allowLibraryDependencies",
|
|
209
|
+
"optional": true,
|
|
210
|
+
"type": {
|
|
211
|
+
"primitive": "boolean"
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"abstract": true,
|
|
216
|
+
"docs": {
|
|
217
|
+
"stability": "experimental",
|
|
218
|
+
"summary": "The command line to execute in order to synthesize the CDK application (language specific)."
|
|
219
|
+
},
|
|
220
|
+
"immutable": true,
|
|
221
|
+
"locationInModule": {
|
|
222
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
223
|
+
"line": 54
|
|
224
|
+
},
|
|
225
|
+
"name": "app",
|
|
244
226
|
"optional": true,
|
|
245
227
|
"type": {
|
|
246
228
|
"primitive": "string"
|
|
@@ -249,16 +231,16 @@
|
|
|
249
231
|
{
|
|
250
232
|
"abstract": true,
|
|
251
233
|
"docs": {
|
|
252
|
-
"default": "
|
|
253
|
-
"stability": "
|
|
254
|
-
"summary": "The
|
|
234
|
+
"default": "\"main.ts\"",
|
|
235
|
+
"stability": "experimental",
|
|
236
|
+
"summary": "The CDK app's entrypoint (relative to the source directory, which is \"src\" by default)."
|
|
255
237
|
},
|
|
256
238
|
"immutable": true,
|
|
257
239
|
"locationInModule": {
|
|
258
|
-
"filename": "src/cdk-project.ts",
|
|
259
|
-
"line":
|
|
240
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
241
|
+
"line": 49
|
|
260
242
|
},
|
|
261
|
-
"name": "
|
|
243
|
+
"name": "appEntrypoint",
|
|
262
244
|
"optional": true,
|
|
263
245
|
"type": {
|
|
264
246
|
"primitive": "string"
|
|
@@ -267,25 +249,3525 @@
|
|
|
267
249
|
{
|
|
268
250
|
"abstract": true,
|
|
269
251
|
"docs": {
|
|
270
|
-
"default": "
|
|
271
|
-
"stability": "
|
|
272
|
-
"summary": "
|
|
252
|
+
"default": "\"dist\"",
|
|
253
|
+
"stability": "experimental",
|
|
254
|
+
"summary": "A directory which will contain build artifacts."
|
|
273
255
|
},
|
|
274
256
|
"immutable": true,
|
|
275
257
|
"locationInModule": {
|
|
276
|
-
"filename": "src/cdk-project.ts",
|
|
277
|
-
"line":
|
|
258
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
259
|
+
"line": 545
|
|
278
260
|
},
|
|
279
|
-
"name": "
|
|
261
|
+
"name": "artifactsDirectory",
|
|
262
|
+
"optional": true,
|
|
263
|
+
"type": {
|
|
264
|
+
"primitive": "string"
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"abstract": true,
|
|
269
|
+
"docs": {
|
|
270
|
+
"default": "false",
|
|
271
|
+
"remarks": "When enabled, creates an \"audit\" task that checks for known security vulnerabilities\nin dependencies. By default, runs during every build and checks for \"high\" severity\nvulnerabilities or above in all dependencies (including dev dependencies).",
|
|
272
|
+
"stability": "experimental",
|
|
273
|
+
"summary": "Run security audit on dependencies."
|
|
274
|
+
},
|
|
275
|
+
"immutable": true,
|
|
276
|
+
"locationInModule": {
|
|
277
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
278
|
+
"line": 539
|
|
279
|
+
},
|
|
280
|
+
"name": "auditDeps",
|
|
281
|
+
"optional": true,
|
|
282
|
+
"type": {
|
|
283
|
+
"primitive": "boolean"
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"abstract": true,
|
|
288
|
+
"docs": {
|
|
289
|
+
"default": "- default options",
|
|
290
|
+
"stability": "experimental",
|
|
291
|
+
"summary": "Security audit options."
|
|
292
|
+
},
|
|
293
|
+
"immutable": true,
|
|
294
|
+
"locationInModule": {
|
|
295
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
296
|
+
"line": 530
|
|
297
|
+
},
|
|
298
|
+
"name": "auditDepsOptions",
|
|
299
|
+
"optional": true,
|
|
300
|
+
"type": {
|
|
301
|
+
"fqn": "projen.javascript.AuditOptions"
|
|
302
|
+
}
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"abstract": true,
|
|
306
|
+
"docs": {
|
|
307
|
+
"stability": "experimental",
|
|
308
|
+
"summary": "Author's e-mail."
|
|
309
|
+
},
|
|
310
|
+
"immutable": true,
|
|
311
|
+
"locationInModule": {
|
|
312
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
313
|
+
"line": 1045
|
|
314
|
+
},
|
|
315
|
+
"name": "authorEmail",
|
|
316
|
+
"optional": true,
|
|
317
|
+
"type": {
|
|
318
|
+
"primitive": "string"
|
|
319
|
+
}
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"abstract": true,
|
|
323
|
+
"docs": {
|
|
324
|
+
"stability": "experimental",
|
|
325
|
+
"summary": "Author's name."
|
|
326
|
+
},
|
|
327
|
+
"immutable": true,
|
|
328
|
+
"locationInModule": {
|
|
329
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
330
|
+
"line": 1040
|
|
331
|
+
},
|
|
332
|
+
"name": "authorName",
|
|
333
|
+
"optional": true,
|
|
334
|
+
"type": {
|
|
335
|
+
"primitive": "string"
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"abstract": true,
|
|
340
|
+
"docs": {
|
|
341
|
+
"stability": "experimental",
|
|
342
|
+
"summary": "Is the author an organization."
|
|
343
|
+
},
|
|
344
|
+
"immutable": true,
|
|
345
|
+
"locationInModule": {
|
|
346
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
347
|
+
"line": 1035
|
|
348
|
+
},
|
|
349
|
+
"name": "authorOrganization",
|
|
350
|
+
"optional": true,
|
|
351
|
+
"type": {
|
|
352
|
+
"primitive": "boolean"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"abstract": true,
|
|
357
|
+
"docs": {
|
|
358
|
+
"stability": "experimental",
|
|
359
|
+
"summary": "Author's URL / Website."
|
|
360
|
+
},
|
|
361
|
+
"immutable": true,
|
|
362
|
+
"locationInModule": {
|
|
363
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
364
|
+
"line": 1030
|
|
365
|
+
},
|
|
366
|
+
"name": "authorUrl",
|
|
367
|
+
"optional": true,
|
|
368
|
+
"type": {
|
|
369
|
+
"primitive": "string"
|
|
370
|
+
}
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"abstract": true,
|
|
374
|
+
"docs": {
|
|
375
|
+
"default": "- auto approve is disabled",
|
|
376
|
+
"stability": "experimental",
|
|
377
|
+
"summary": "Enable and configure the 'auto approve' workflow."
|
|
378
|
+
},
|
|
379
|
+
"immutable": true,
|
|
380
|
+
"locationInModule": {
|
|
381
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
382
|
+
"line": 1169
|
|
383
|
+
},
|
|
384
|
+
"name": "autoApproveOptions",
|
|
385
|
+
"optional": true,
|
|
386
|
+
"type": {
|
|
387
|
+
"fqn": "projen.github.AutoApproveOptions"
|
|
388
|
+
}
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"abstract": true,
|
|
392
|
+
"docs": {
|
|
393
|
+
"default": "- true",
|
|
394
|
+
"remarks": "Throw if set to true but `autoApproveOptions` are not defined.",
|
|
395
|
+
"stability": "experimental",
|
|
396
|
+
"summary": "Automatically approve deps upgrade PRs, allowing them to be merged by mergify (if configured)."
|
|
397
|
+
},
|
|
398
|
+
"immutable": true,
|
|
399
|
+
"locationInModule": {
|
|
400
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
401
|
+
"line": 524
|
|
402
|
+
},
|
|
403
|
+
"name": "autoApproveUpgrades",
|
|
404
|
+
"optional": true,
|
|
405
|
+
"type": {
|
|
406
|
+
"primitive": "boolean"
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"abstract": true,
|
|
411
|
+
"docs": {
|
|
412
|
+
"default": "true",
|
|
413
|
+
"stability": "experimental",
|
|
414
|
+
"summary": "Automatically add all executables under the `bin` directory to your `package.json` file under the `bin` section."
|
|
415
|
+
},
|
|
416
|
+
"immutable": true,
|
|
417
|
+
"locationInModule": {
|
|
418
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
419
|
+
"line": 1025
|
|
420
|
+
},
|
|
421
|
+
"name": "autoDetectBin",
|
|
422
|
+
"optional": true,
|
|
423
|
+
"type": {
|
|
424
|
+
"primitive": "boolean"
|
|
425
|
+
}
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
"abstract": true,
|
|
429
|
+
"docs": {
|
|
430
|
+
"default": "true",
|
|
431
|
+
"remarks": "Has no effect if `github.mergify`\nis set to false.",
|
|
432
|
+
"stability": "experimental",
|
|
433
|
+
"summary": "Enable automatic merging on GitHub."
|
|
434
|
+
},
|
|
435
|
+
"immutable": true,
|
|
436
|
+
"locationInModule": {
|
|
437
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
438
|
+
"line": 1163
|
|
439
|
+
},
|
|
440
|
+
"name": "autoMerge",
|
|
441
|
+
"optional": true,
|
|
442
|
+
"type": {
|
|
443
|
+
"primitive": "boolean"
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"abstract": true,
|
|
448
|
+
"docs": {
|
|
449
|
+
"default": "- see defaults in `AutoMergeOptions`",
|
|
450
|
+
"remarks": "Has no effect if\n`github.mergify` or `autoMerge` is set to false.",
|
|
451
|
+
"stability": "experimental",
|
|
452
|
+
"summary": "Configure options for automatic merging on GitHub."
|
|
453
|
+
},
|
|
454
|
+
"immutable": true,
|
|
455
|
+
"locationInModule": {
|
|
456
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
457
|
+
"line": 1155
|
|
458
|
+
},
|
|
459
|
+
"name": "autoMergeOptions",
|
|
460
|
+
"optional": true,
|
|
461
|
+
"type": {
|
|
462
|
+
"fqn": "projen.github.AutoMergeOptions"
|
|
463
|
+
}
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"abstract": true,
|
|
467
|
+
"docs": {
|
|
468
|
+
"remarks": "You can use this option to add/customize how binaries are represented in\nyour `package.json`, but unless `autoDetectBin` is `false`, every\nexecutable file under `bin` will automatically be added to this section.",
|
|
469
|
+
"stability": "experimental",
|
|
470
|
+
"summary": "Binary programs vended with your module."
|
|
471
|
+
},
|
|
472
|
+
"immutable": true,
|
|
473
|
+
"locationInModule": {
|
|
474
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
475
|
+
"line": 1019
|
|
476
|
+
},
|
|
477
|
+
"name": "bin",
|
|
478
|
+
"optional": true,
|
|
479
|
+
"type": {
|
|
480
|
+
"collection": {
|
|
481
|
+
"elementtype": {
|
|
482
|
+
"primitive": "string"
|
|
483
|
+
},
|
|
484
|
+
"kind": "map"
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
"abstract": true,
|
|
490
|
+
"docs": {
|
|
491
|
+
"default": "false",
|
|
492
|
+
"stability": "experimental",
|
|
493
|
+
"summary": "Setup Biome."
|
|
494
|
+
},
|
|
495
|
+
"immutable": true,
|
|
496
|
+
"locationInModule": {
|
|
497
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
498
|
+
"line": 517
|
|
499
|
+
},
|
|
500
|
+
"name": "biome",
|
|
501
|
+
"optional": true,
|
|
502
|
+
"type": {
|
|
503
|
+
"primitive": "boolean"
|
|
504
|
+
}
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"abstract": true,
|
|
508
|
+
"docs": {
|
|
509
|
+
"default": "- default options",
|
|
510
|
+
"stability": "experimental",
|
|
511
|
+
"summary": "Biome options."
|
|
512
|
+
},
|
|
513
|
+
"immutable": true,
|
|
514
|
+
"locationInModule": {
|
|
515
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
516
|
+
"line": 511
|
|
517
|
+
},
|
|
518
|
+
"name": "biomeOptions",
|
|
519
|
+
"optional": true,
|
|
520
|
+
"type": {
|
|
521
|
+
"fqn": "projen.javascript.BiomeOptions"
|
|
522
|
+
}
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"abstract": true,
|
|
526
|
+
"docs": {
|
|
527
|
+
"stability": "experimental",
|
|
528
|
+
"summary": "The email address to which issues should be reported."
|
|
529
|
+
},
|
|
530
|
+
"immutable": true,
|
|
531
|
+
"locationInModule": {
|
|
532
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
533
|
+
"line": 1011
|
|
534
|
+
},
|
|
535
|
+
"name": "bugsEmail",
|
|
536
|
+
"optional": true,
|
|
537
|
+
"type": {
|
|
538
|
+
"primitive": "string"
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"abstract": true,
|
|
543
|
+
"docs": {
|
|
544
|
+
"stability": "experimental",
|
|
545
|
+
"summary": "The url to your project's issue tracker."
|
|
546
|
+
},
|
|
547
|
+
"immutable": true,
|
|
548
|
+
"locationInModule": {
|
|
549
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
550
|
+
"line": 1006
|
|
551
|
+
},
|
|
552
|
+
"name": "bugsUrl",
|
|
553
|
+
"optional": true,
|
|
554
|
+
"type": {
|
|
555
|
+
"primitive": "string"
|
|
556
|
+
}
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"abstract": true,
|
|
560
|
+
"docs": {
|
|
561
|
+
"default": "- no build command",
|
|
562
|
+
"remarks": "This command will be called when\nrunning `cdk synth` or when `cdk watch` identifies a change in your source\ncode before redeployment.",
|
|
563
|
+
"stability": "experimental",
|
|
564
|
+
"summary": "A command to execute before synthesis."
|
|
565
|
+
},
|
|
566
|
+
"immutable": true,
|
|
567
|
+
"locationInModule": {
|
|
568
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
569
|
+
"line": 168
|
|
570
|
+
},
|
|
571
|
+
"name": "buildCommand",
|
|
280
572
|
"optional": true,
|
|
281
573
|
"type": {
|
|
282
574
|
"primitive": "string"
|
|
283
575
|
}
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"abstract": true,
|
|
579
|
+
"docs": {
|
|
580
|
+
"default": "'0.104.1'",
|
|
581
|
+
"stability": "stable",
|
|
582
|
+
"summary": "The Rocketleap building blocks CDK version to use."
|
|
583
|
+
},
|
|
584
|
+
"immutable": true,
|
|
585
|
+
"locationInModule": {
|
|
586
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
587
|
+
"line": 1261
|
|
588
|
+
},
|
|
589
|
+
"name": "buildingBlocksVersion",
|
|
590
|
+
"optional": true,
|
|
591
|
+
"type": {
|
|
592
|
+
"primitive": "string"
|
|
593
|
+
}
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
"abstract": true,
|
|
597
|
+
"docs": {
|
|
598
|
+
"default": "- true if not a subproject",
|
|
599
|
+
"stability": "experimental",
|
|
600
|
+
"summary": "Define a GitHub workflow for building PRs."
|
|
601
|
+
},
|
|
602
|
+
"immutable": true,
|
|
603
|
+
"locationInModule": {
|
|
604
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
605
|
+
"line": 505
|
|
606
|
+
},
|
|
607
|
+
"name": "buildWorkflow",
|
|
608
|
+
"optional": true,
|
|
609
|
+
"type": {
|
|
610
|
+
"primitive": "boolean"
|
|
611
|
+
}
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"abstract": true,
|
|
615
|
+
"docs": {
|
|
616
|
+
"stability": "experimental",
|
|
617
|
+
"summary": "Options for PR build workflow."
|
|
618
|
+
},
|
|
619
|
+
"immutable": true,
|
|
620
|
+
"locationInModule": {
|
|
621
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
622
|
+
"line": 499
|
|
623
|
+
},
|
|
624
|
+
"name": "buildWorkflowOptions",
|
|
625
|
+
"optional": true,
|
|
626
|
+
"type": {
|
|
627
|
+
"fqn": "projen.javascript.BuildWorkflowOptions"
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
"abstract": true,
|
|
632
|
+
"docs": {
|
|
633
|
+
"default": "\"{ pullRequest: {}, workflowDispatch: {} }\"",
|
|
634
|
+
"deprecated": "- Use `buildWorkflowOptions.workflowTriggers`",
|
|
635
|
+
"stability": "deprecated",
|
|
636
|
+
"summary": "Build workflow triggers."
|
|
637
|
+
},
|
|
638
|
+
"immutable": true,
|
|
639
|
+
"locationInModule": {
|
|
640
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
641
|
+
"line": 494
|
|
642
|
+
},
|
|
643
|
+
"name": "buildWorkflowTriggers",
|
|
644
|
+
"optional": true,
|
|
645
|
+
"type": {
|
|
646
|
+
"fqn": "projen.github.workflows.Triggers"
|
|
647
|
+
}
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"abstract": true,
|
|
651
|
+
"docs": {
|
|
652
|
+
"default": "- A recent version of \"commit-and-tag-version\"",
|
|
653
|
+
"remarks": "This can be any compatible package version, including the deprecated `standard-version@9`.",
|
|
654
|
+
"stability": "experimental",
|
|
655
|
+
"summary": "The `commit-and-tag-version` compatible package used to bump the package version, as a dependency string."
|
|
656
|
+
},
|
|
657
|
+
"immutable": true,
|
|
658
|
+
"locationInModule": {
|
|
659
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
660
|
+
"line": 752
|
|
661
|
+
},
|
|
662
|
+
"name": "bumpPackage",
|
|
663
|
+
"optional": true,
|
|
664
|
+
"type": {
|
|
665
|
+
"primitive": "string"
|
|
666
|
+
}
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"abstract": true,
|
|
670
|
+
"docs": {
|
|
671
|
+
"remarks": "These modules will be\nadded both to the `dependencies` section and `bundledDependencies` section of\nyour `package.json`.\n\nThe recommendation is to only specify the module name here (e.g.\n`express`). This will behave similar to `yarn add` or `npm install` in the\nsense that it will add the module as a dependency to your `package.json`\nfile with the latest version (`^`). You can specify semver requirements in\nthe same syntax passed to `npm i` or `yarn add` (e.g. `express@^2`) and\nthis will be what you `package.json` will eventually include.",
|
|
672
|
+
"stability": "experimental",
|
|
673
|
+
"summary": "List of dependencies to bundle into this module."
|
|
674
|
+
},
|
|
675
|
+
"immutable": true,
|
|
676
|
+
"locationInModule": {
|
|
677
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
678
|
+
"line": 1001
|
|
679
|
+
},
|
|
680
|
+
"name": "bundledDeps",
|
|
681
|
+
"optional": true,
|
|
682
|
+
"type": {
|
|
683
|
+
"collection": {
|
|
684
|
+
"elementtype": {
|
|
685
|
+
"primitive": "string"
|
|
686
|
+
},
|
|
687
|
+
"kind": "array"
|
|
688
|
+
}
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"abstract": true,
|
|
693
|
+
"docs": {
|
|
694
|
+
"stability": "experimental",
|
|
695
|
+
"summary": "Options for `Bundler`."
|
|
696
|
+
},
|
|
697
|
+
"immutable": true,
|
|
698
|
+
"locationInModule": {
|
|
699
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
700
|
+
"line": 487
|
|
701
|
+
},
|
|
702
|
+
"name": "bundlerOptions",
|
|
703
|
+
"optional": true,
|
|
704
|
+
"type": {
|
|
705
|
+
"fqn": "projen.javascript.BundlerOptions"
|
|
706
|
+
}
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"abstract": true,
|
|
710
|
+
"docs": {
|
|
711
|
+
"default": "\"latest\"",
|
|
712
|
+
"stability": "experimental",
|
|
713
|
+
"summary": "The version of Bun to use if using Bun as a package manager."
|
|
714
|
+
},
|
|
715
|
+
"immutable": true,
|
|
716
|
+
"locationInModule": {
|
|
717
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
718
|
+
"line": 986
|
|
719
|
+
},
|
|
720
|
+
"name": "bunVersion",
|
|
721
|
+
"optional": true,
|
|
722
|
+
"type": {
|
|
723
|
+
"primitive": "string"
|
|
724
|
+
}
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"abstract": true,
|
|
728
|
+
"docs": {
|
|
729
|
+
"custom": {
|
|
730
|
+
"aws-cdk": "/assertions (in V1) and included in `aws-cdk-lib` for V2."
|
|
731
|
+
},
|
|
732
|
+
"default": "- will be included by default for AWS CDK >= 1.0.0 < 2.0.0",
|
|
733
|
+
"deprecated": "The",
|
|
734
|
+
"remarks": "Install the",
|
|
735
|
+
"stability": "deprecated",
|
|
736
|
+
"summary": "Warning: NodeJS only."
|
|
737
|
+
},
|
|
738
|
+
"immutable": true,
|
|
739
|
+
"locationInModule": {
|
|
740
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
741
|
+
"line": 120
|
|
742
|
+
},
|
|
743
|
+
"name": "cdkAssert",
|
|
744
|
+
"optional": true,
|
|
745
|
+
"type": {
|
|
746
|
+
"primitive": "boolean"
|
|
747
|
+
}
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"abstract": true,
|
|
751
|
+
"docs": {
|
|
752
|
+
"default": "- will be included by default for AWS CDK >= 1.111.0 < 2.0.0",
|
|
753
|
+
"remarks": "Only needed for CDK 1.x. If using CDK 2.x then\nassertions is already included in 'aws-cdk-lib'",
|
|
754
|
+
"stability": "experimental",
|
|
755
|
+
"summary": "Install the assertions library?"
|
|
756
|
+
},
|
|
757
|
+
"immutable": true,
|
|
758
|
+
"locationInModule": {
|
|
759
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
760
|
+
"line": 111
|
|
761
|
+
},
|
|
762
|
+
"name": "cdkAssertions",
|
|
763
|
+
"optional": true,
|
|
764
|
+
"type": {
|
|
765
|
+
"primitive": "boolean"
|
|
766
|
+
}
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
"abstract": true,
|
|
770
|
+
"docs": {
|
|
771
|
+
"default": "\"^2\"",
|
|
772
|
+
"remarks": "Can be either a specific version, or an NPM version range.\n\nBy default, the latest 2.x version will be installed; you can use this\noption to restrict it to a specific version or version range.",
|
|
773
|
+
"stability": "experimental",
|
|
774
|
+
"summary": "Version range of the AWS CDK CLI to depend on."
|
|
775
|
+
},
|
|
776
|
+
"immutable": true,
|
|
777
|
+
"locationInModule": {
|
|
778
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
779
|
+
"line": 103
|
|
780
|
+
},
|
|
781
|
+
"name": "cdkCliVersion",
|
|
782
|
+
"optional": true,
|
|
783
|
+
"type": {
|
|
784
|
+
"primitive": "string"
|
|
785
|
+
}
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"abstract": true,
|
|
789
|
+
"docs": {
|
|
790
|
+
"deprecated": "For CDK 2.x use \"deps\" instead. (or \"peerDeps\" if you're building a library)",
|
|
791
|
+
"stability": "deprecated",
|
|
792
|
+
"summary": "Which AWS CDKv1 modules this project requires."
|
|
793
|
+
},
|
|
794
|
+
"immutable": true,
|
|
795
|
+
"locationInModule": {
|
|
796
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
797
|
+
"line": 93
|
|
798
|
+
},
|
|
799
|
+
"name": "cdkDependencies",
|
|
800
|
+
"optional": true,
|
|
801
|
+
"type": {
|
|
802
|
+
"collection": {
|
|
803
|
+
"elementtype": {
|
|
804
|
+
"primitive": "string"
|
|
805
|
+
},
|
|
806
|
+
"kind": "array"
|
|
807
|
+
}
|
|
808
|
+
}
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
"abstract": true,
|
|
812
|
+
"docs": {
|
|
813
|
+
"default": "true",
|
|
814
|
+
"deprecated": "Not supported in CDK v2.",
|
|
815
|
+
"remarks": "This is to ensure that downstream consumers actually have your CDK dependencies installed\nwhen using npm < 7 or yarn, where peer dependencies are not automatically installed.\nIf this is disabled, `cdkDependencies` will be added to `devDependencies` to ensure\nthey are present during development.\n\nNote: this setting only applies to construct library projects",
|
|
816
|
+
"stability": "deprecated",
|
|
817
|
+
"summary": "If this is enabled (default), all modules declared in `cdkDependencies` will be also added as normal `dependencies` (as well as `peerDependencies`)."
|
|
818
|
+
},
|
|
819
|
+
"immutable": true,
|
|
820
|
+
"locationInModule": {
|
|
821
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
822
|
+
"line": 87
|
|
823
|
+
},
|
|
824
|
+
"name": "cdkDependenciesAsDeps",
|
|
825
|
+
"optional": true,
|
|
826
|
+
"type": {
|
|
827
|
+
"primitive": "boolean"
|
|
828
|
+
}
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"abstract": true,
|
|
832
|
+
"docs": {
|
|
833
|
+
"default": "\"cdk.out\"",
|
|
834
|
+
"stability": "experimental",
|
|
835
|
+
"summary": "cdk.out directory."
|
|
836
|
+
},
|
|
837
|
+
"immutable": true,
|
|
838
|
+
"locationInModule": {
|
|
839
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
840
|
+
"line": 159
|
|
841
|
+
},
|
|
842
|
+
"name": "cdkout",
|
|
843
|
+
"optional": true,
|
|
844
|
+
"type": {
|
|
845
|
+
"primitive": "string"
|
|
846
|
+
}
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"abstract": true,
|
|
850
|
+
"docs": {
|
|
851
|
+
"deprecated": "For CDK 2.x use 'devDeps' (in node.js projects) or 'testDeps' (in java projects) instead",
|
|
852
|
+
"stability": "deprecated",
|
|
853
|
+
"summary": "AWS CDK modules required for testing."
|
|
854
|
+
},
|
|
855
|
+
"immutable": true,
|
|
856
|
+
"locationInModule": {
|
|
857
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
858
|
+
"line": 74
|
|
859
|
+
},
|
|
860
|
+
"name": "cdkTestDependencies",
|
|
861
|
+
"optional": true,
|
|
862
|
+
"type": {
|
|
863
|
+
"collection": {
|
|
864
|
+
"elementtype": {
|
|
865
|
+
"primitive": "string"
|
|
866
|
+
},
|
|
867
|
+
"kind": "array"
|
|
868
|
+
}
|
|
869
|
+
}
|
|
870
|
+
},
|
|
871
|
+
{
|
|
872
|
+
"abstract": true,
|
|
873
|
+
"docs": {
|
|
874
|
+
"default": "'2.232.1'",
|
|
875
|
+
"stability": "stable",
|
|
876
|
+
"summary": "The AWS CDK version to use in the project."
|
|
877
|
+
},
|
|
878
|
+
"immutable": true,
|
|
879
|
+
"locationInModule": {
|
|
880
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
881
|
+
"line": 1251
|
|
882
|
+
},
|
|
883
|
+
"name": "cdkVersion",
|
|
884
|
+
"optional": true,
|
|
885
|
+
"type": {
|
|
886
|
+
"primitive": "string"
|
|
887
|
+
}
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
"abstract": true,
|
|
891
|
+
"docs": {
|
|
892
|
+
"remarks": "You can use this to prevent mixed versions for your CDK dependencies and to prevent auto-updates.\nIf you use experimental features this will let you define the moment you include breaking changes.",
|
|
893
|
+
"stability": "experimental",
|
|
894
|
+
"summary": "Use pinned version instead of caret version for CDK."
|
|
895
|
+
},
|
|
896
|
+
"immutable": true,
|
|
897
|
+
"locationInModule": {
|
|
898
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
899
|
+
"line": 68
|
|
900
|
+
},
|
|
901
|
+
"name": "cdkVersionPinning",
|
|
902
|
+
"optional": true,
|
|
903
|
+
"type": {
|
|
904
|
+
"primitive": "boolean"
|
|
905
|
+
}
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"abstract": true,
|
|
909
|
+
"docs": {
|
|
910
|
+
"default": "- no license checks are run during the build and all licenses will be accepted",
|
|
911
|
+
"remarks": "This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered.",
|
|
912
|
+
"stability": "experimental",
|
|
913
|
+
"summary": "Configure which licenses should be deemed acceptable for use by dependencies."
|
|
914
|
+
},
|
|
915
|
+
"immutable": true,
|
|
916
|
+
"locationInModule": {
|
|
917
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
918
|
+
"line": 482
|
|
919
|
+
},
|
|
920
|
+
"name": "checkLicenses",
|
|
921
|
+
"optional": true,
|
|
922
|
+
"type": {
|
|
923
|
+
"fqn": "projen.javascript.LicenseCheckerOptions"
|
|
924
|
+
}
|
|
925
|
+
},
|
|
926
|
+
{
|
|
927
|
+
"abstract": true,
|
|
928
|
+
"docs": {
|
|
929
|
+
"default": "- true, but false for subprojects",
|
|
930
|
+
"stability": "experimental",
|
|
931
|
+
"summary": "Add a `clobber` task which resets the repo to origin."
|
|
932
|
+
},
|
|
933
|
+
"immutable": true,
|
|
934
|
+
"locationInModule": {
|
|
935
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
936
|
+
"line": 1147
|
|
937
|
+
},
|
|
938
|
+
"name": "clobber",
|
|
939
|
+
"optional": true,
|
|
940
|
+
"type": {
|
|
941
|
+
"primitive": "boolean"
|
|
942
|
+
}
|
|
943
|
+
},
|
|
944
|
+
{
|
|
945
|
+
"abstract": true,
|
|
946
|
+
"docs": {
|
|
947
|
+
"default": "- undefined",
|
|
948
|
+
"remarks": "This is required if publishing packages to, or installing scoped packages from AWS CodeArtifact",
|
|
949
|
+
"stability": "experimental",
|
|
950
|
+
"summary": "Options for npm packages using AWS CodeArtifact."
|
|
951
|
+
},
|
|
952
|
+
"immutable": true,
|
|
953
|
+
"locationInModule": {
|
|
954
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
955
|
+
"line": 980
|
|
956
|
+
},
|
|
957
|
+
"name": "codeArtifactOptions",
|
|
958
|
+
"optional": true,
|
|
959
|
+
"type": {
|
|
960
|
+
"fqn": "projen.javascript.CodeArtifactOptions"
|
|
961
|
+
}
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"abstract": true,
|
|
965
|
+
"docs": {
|
|
966
|
+
"default": "false",
|
|
967
|
+
"stability": "experimental",
|
|
968
|
+
"summary": "Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/ Uses codecov/codecov-action@v5 By default, OIDC auth is used. Alternatively a token can be provided via `codeCovTokenSecret`."
|
|
969
|
+
},
|
|
970
|
+
"immutable": true,
|
|
971
|
+
"locationInModule": {
|
|
972
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
973
|
+
"line": 475
|
|
974
|
+
},
|
|
975
|
+
"name": "codeCov",
|
|
976
|
+
"optional": true,
|
|
977
|
+
"type": {
|
|
978
|
+
"primitive": "boolean"
|
|
979
|
+
}
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
"abstract": true,
|
|
983
|
+
"docs": {
|
|
984
|
+
"default": "- OIDC auth is used",
|
|
985
|
+
"stability": "experimental",
|
|
986
|
+
"summary": "Define the secret name for a specified https://codecov.io/ token."
|
|
987
|
+
},
|
|
988
|
+
"immutable": true,
|
|
989
|
+
"locationInModule": {
|
|
990
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
991
|
+
"line": 469
|
|
992
|
+
},
|
|
993
|
+
"name": "codeCovTokenSecret",
|
|
994
|
+
"optional": true,
|
|
995
|
+
"type": {
|
|
996
|
+
"primitive": "string"
|
|
997
|
+
}
|
|
998
|
+
},
|
|
999
|
+
{
|
|
1000
|
+
"abstract": true,
|
|
1001
|
+
"docs": {
|
|
1002
|
+
"default": "true",
|
|
1003
|
+
"stability": "experimental",
|
|
1004
|
+
"summary": "Whether to commit the managed files by default."
|
|
1005
|
+
},
|
|
1006
|
+
"immutable": true,
|
|
1007
|
+
"locationInModule": {
|
|
1008
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1009
|
+
"line": 1238
|
|
1010
|
+
},
|
|
1011
|
+
"name": "commitGenerated",
|
|
1012
|
+
"optional": true,
|
|
1013
|
+
"type": {
|
|
1014
|
+
"primitive": "boolean"
|
|
1015
|
+
}
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
"abstract": true,
|
|
1019
|
+
"docs": {
|
|
1020
|
+
"default": "- for CDK 1.x the default is \"3.2.27\", for CDK 2.x the default is\n\"10.0.5\".",
|
|
1021
|
+
"stability": "experimental",
|
|
1022
|
+
"summary": "Minimum version of the `constructs` library to depend on."
|
|
1023
|
+
},
|
|
1024
|
+
"immutable": true,
|
|
1025
|
+
"locationInModule": {
|
|
1026
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1027
|
+
"line": 61
|
|
1028
|
+
},
|
|
1029
|
+
"name": "constructsVersion",
|
|
1030
|
+
"optional": true,
|
|
1031
|
+
"type": {
|
|
1032
|
+
"primitive": "string"
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"abstract": true,
|
|
1037
|
+
"docs": {
|
|
1038
|
+
"default": "'10.4.4'",
|
|
1039
|
+
"stability": "stable",
|
|
1040
|
+
"summary": "The constructs library version to use."
|
|
1041
|
+
},
|
|
1042
|
+
"immutable": true,
|
|
1043
|
+
"locationInModule": {
|
|
1044
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1045
|
+
"line": 1256
|
|
1046
|
+
},
|
|
1047
|
+
"name": "constructVersion",
|
|
1048
|
+
"optional": true,
|
|
1049
|
+
"type": {
|
|
1050
|
+
"primitive": "string"
|
|
1051
|
+
}
|
|
1052
|
+
},
|
|
1053
|
+
{
|
|
1054
|
+
"abstract": true,
|
|
1055
|
+
"docs": {
|
|
1056
|
+
"default": "- no additional context",
|
|
1057
|
+
"stability": "experimental",
|
|
1058
|
+
"summary": "Additional context to include in `cdk.json`."
|
|
1059
|
+
},
|
|
1060
|
+
"immutable": true,
|
|
1061
|
+
"locationInModule": {
|
|
1062
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1063
|
+
"line": 153
|
|
1064
|
+
},
|
|
1065
|
+
"name": "context",
|
|
1066
|
+
"optional": true,
|
|
1067
|
+
"type": {
|
|
1068
|
+
"collection": {
|
|
1069
|
+
"elementtype": {
|
|
1070
|
+
"primitive": "any"
|
|
1071
|
+
},
|
|
1072
|
+
"kind": "map"
|
|
1073
|
+
}
|
|
1074
|
+
}
|
|
1075
|
+
},
|
|
1076
|
+
{
|
|
1077
|
+
"abstract": true,
|
|
1078
|
+
"docs": {
|
|
1079
|
+
"default": "- defaults to the value of authorName or \"\" if `authorName` is undefined.",
|
|
1080
|
+
"stability": "experimental",
|
|
1081
|
+
"summary": "License copyright owner."
|
|
1082
|
+
},
|
|
1083
|
+
"immutable": true,
|
|
1084
|
+
"locationInModule": {
|
|
1085
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1086
|
+
"line": 463
|
|
1087
|
+
},
|
|
1088
|
+
"name": "copyrightOwner",
|
|
1089
|
+
"optional": true,
|
|
1090
|
+
"type": {
|
|
1091
|
+
"primitive": "string"
|
|
1092
|
+
}
|
|
1093
|
+
},
|
|
1094
|
+
{
|
|
1095
|
+
"abstract": true,
|
|
1096
|
+
"docs": {
|
|
1097
|
+
"default": "- current year",
|
|
1098
|
+
"stability": "experimental",
|
|
1099
|
+
"summary": "The copyright years to put in the LICENSE file."
|
|
1100
|
+
},
|
|
1101
|
+
"immutable": true,
|
|
1102
|
+
"locationInModule": {
|
|
1103
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1104
|
+
"line": 457
|
|
1105
|
+
},
|
|
1106
|
+
"name": "copyrightPeriod",
|
|
1107
|
+
"optional": true,
|
|
1108
|
+
"type": {
|
|
1109
|
+
"primitive": "string"
|
|
1110
|
+
}
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"abstract": true,
|
|
1114
|
+
"docs": {
|
|
1115
|
+
"default": "false",
|
|
1116
|
+
"remarks": "Cannot be used in conjunction with `depsUpgrade`.",
|
|
1117
|
+
"stability": "experimental",
|
|
1118
|
+
"summary": "Use dependabot to handle dependency upgrades."
|
|
1119
|
+
},
|
|
1120
|
+
"immutable": true,
|
|
1121
|
+
"locationInModule": {
|
|
1122
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1123
|
+
"line": 451
|
|
1124
|
+
},
|
|
1125
|
+
"name": "dependabot",
|
|
1126
|
+
"optional": true,
|
|
1127
|
+
"type": {
|
|
1128
|
+
"primitive": "boolean"
|
|
1129
|
+
}
|
|
1130
|
+
},
|
|
1131
|
+
{
|
|
1132
|
+
"abstract": true,
|
|
1133
|
+
"docs": {
|
|
1134
|
+
"default": "- default options",
|
|
1135
|
+
"stability": "experimental",
|
|
1136
|
+
"summary": "Options for dependabot."
|
|
1137
|
+
},
|
|
1138
|
+
"immutable": true,
|
|
1139
|
+
"locationInModule": {
|
|
1140
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1141
|
+
"line": 444
|
|
1142
|
+
},
|
|
1143
|
+
"name": "dependabotOptions",
|
|
1144
|
+
"optional": true,
|
|
1145
|
+
"type": {
|
|
1146
|
+
"fqn": "projen.github.DependabotOptions"
|
|
1147
|
+
}
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
"abstract": true,
|
|
1151
|
+
"docs": {
|
|
1152
|
+
"custom": {
|
|
1153
|
+
"featured": "true"
|
|
1154
|
+
},
|
|
1155
|
+
"default": "[]",
|
|
1156
|
+
"remarks": "The recommendation is to only specify the module name here (e.g.\n`express`). This will behave similar to `yarn add` or `npm install` in the\nsense that it will add the module as a dependency to your `package.json`\nfile with the latest version (`^`). You can specify semver requirements in\nthe same syntax passed to `npm i` or `yarn add` (e.g. `express@^2`) and\nthis will be what you `package.json` will eventually include.",
|
|
1157
|
+
"stability": "experimental",
|
|
1158
|
+
"summary": "Runtime dependencies of this module."
|
|
1159
|
+
},
|
|
1160
|
+
"immutable": true,
|
|
1161
|
+
"locationInModule": {
|
|
1162
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1163
|
+
"line": 973
|
|
1164
|
+
},
|
|
1165
|
+
"name": "deps",
|
|
1166
|
+
"optional": true,
|
|
1167
|
+
"type": {
|
|
1168
|
+
"collection": {
|
|
1169
|
+
"elementtype": {
|
|
1170
|
+
"primitive": "string"
|
|
1171
|
+
},
|
|
1172
|
+
"kind": "array"
|
|
1173
|
+
}
|
|
1174
|
+
}
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
"abstract": true,
|
|
1178
|
+
"docs": {
|
|
1179
|
+
"default": "- `true` for root projects, `false` for subprojects",
|
|
1180
|
+
"remarks": "Cannot be used in conjunction with `dependabot`.",
|
|
1181
|
+
"stability": "experimental",
|
|
1182
|
+
"summary": "Use tasks and github workflows to handle dependency upgrades."
|
|
1183
|
+
},
|
|
1184
|
+
"immutable": true,
|
|
1185
|
+
"locationInModule": {
|
|
1186
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1187
|
+
"line": 438
|
|
1188
|
+
},
|
|
1189
|
+
"name": "depsUpgrade",
|
|
1190
|
+
"optional": true,
|
|
1191
|
+
"type": {
|
|
1192
|
+
"primitive": "boolean"
|
|
1193
|
+
}
|
|
1194
|
+
},
|
|
1195
|
+
{
|
|
1196
|
+
"abstract": true,
|
|
1197
|
+
"docs": {
|
|
1198
|
+
"default": "- default options",
|
|
1199
|
+
"stability": "experimental",
|
|
1200
|
+
"summary": "Options for `UpgradeDependencies`."
|
|
1201
|
+
},
|
|
1202
|
+
"immutable": true,
|
|
1203
|
+
"locationInModule": {
|
|
1204
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1205
|
+
"line": 431
|
|
1206
|
+
},
|
|
1207
|
+
"name": "depsUpgradeOptions",
|
|
1208
|
+
"optional": true,
|
|
1209
|
+
"type": {
|
|
1210
|
+
"fqn": "projen.javascript.UpgradeDependenciesOptions"
|
|
1211
|
+
}
|
|
1212
|
+
},
|
|
1213
|
+
{
|
|
1214
|
+
"abstract": true,
|
|
1215
|
+
"docs": {
|
|
1216
|
+
"custom": {
|
|
1217
|
+
"featured": "true"
|
|
1218
|
+
},
|
|
1219
|
+
"remarks": "It can be used when searching for packages in a package manager as well.\nSee https://classic.yarnpkg.com/en/docs/package-json/#toc-description",
|
|
1220
|
+
"stability": "experimental",
|
|
1221
|
+
"summary": "The description is just a string that helps people understand the purpose of the package."
|
|
1222
|
+
},
|
|
1223
|
+
"immutable": true,
|
|
1224
|
+
"locationInModule": {
|
|
1225
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1226
|
+
"line": 960
|
|
1227
|
+
},
|
|
1228
|
+
"name": "description",
|
|
1229
|
+
"optional": true,
|
|
1230
|
+
"type": {
|
|
1231
|
+
"primitive": "string"
|
|
1232
|
+
}
|
|
1233
|
+
},
|
|
1234
|
+
{
|
|
1235
|
+
"abstract": true,
|
|
1236
|
+
"docs": {
|
|
1237
|
+
"default": "false",
|
|
1238
|
+
"stability": "experimental",
|
|
1239
|
+
"summary": "Add a VSCode development environment (used for GitHub Codespaces)."
|
|
1240
|
+
},
|
|
1241
|
+
"immutable": true,
|
|
1242
|
+
"locationInModule": {
|
|
1243
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1244
|
+
"line": 1141
|
|
1245
|
+
},
|
|
1246
|
+
"name": "devContainer",
|
|
1247
|
+
"optional": true,
|
|
1248
|
+
"type": {
|
|
1249
|
+
"primitive": "boolean"
|
|
1250
|
+
}
|
|
1251
|
+
},
|
|
1252
|
+
{
|
|
1253
|
+
"abstract": true,
|
|
1254
|
+
"docs": {
|
|
1255
|
+
"custom": {
|
|
1256
|
+
"featured": "true"
|
|
1257
|
+
},
|
|
1258
|
+
"default": "[]",
|
|
1259
|
+
"remarks": "These dependencies will only be\navailable in your build environment but will not be fetched when this\nmodule is consumed.\n\nThe recommendation is to only specify the module name here (e.g.\n`express`). This will behave similar to `yarn add` or `npm install` in the\nsense that it will add the module as a dependency to your `package.json`\nfile with the latest version (`^`). You can specify semver requirements in\nthe same syntax passed to `npm i` or `yarn add` (e.g. `express@^2`) and\nthis will be what you `package.json` will eventually include.",
|
|
1260
|
+
"stability": "experimental",
|
|
1261
|
+
"summary": "Build dependencies for this module."
|
|
1262
|
+
},
|
|
1263
|
+
"immutable": true,
|
|
1264
|
+
"locationInModule": {
|
|
1265
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1266
|
+
"line": 952
|
|
1267
|
+
},
|
|
1268
|
+
"name": "devDeps",
|
|
1269
|
+
"optional": true,
|
|
1270
|
+
"type": {
|
|
1271
|
+
"collection": {
|
|
1272
|
+
"elementtype": {
|
|
1273
|
+
"primitive": "string"
|
|
1274
|
+
},
|
|
1275
|
+
"kind": "array"
|
|
1276
|
+
}
|
|
1277
|
+
}
|
|
1278
|
+
},
|
|
1279
|
+
{
|
|
1280
|
+
"abstract": true,
|
|
1281
|
+
"docs": {
|
|
1282
|
+
"default": "false",
|
|
1283
|
+
"stability": "experimental",
|
|
1284
|
+
"summary": "Do not generate a `tsconfig.json` file (used by jsii projects since tsconfig.json is generated by the jsii compiler)."
|
|
1285
|
+
},
|
|
1286
|
+
"immutable": true,
|
|
1287
|
+
"locationInModule": {
|
|
1288
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1289
|
+
"line": 281
|
|
1290
|
+
},
|
|
1291
|
+
"name": "disableTsconfig",
|
|
1292
|
+
"optional": true,
|
|
1293
|
+
"type": {
|
|
1294
|
+
"primitive": "boolean"
|
|
1295
|
+
}
|
|
1296
|
+
},
|
|
1297
|
+
{
|
|
1298
|
+
"abstract": true,
|
|
1299
|
+
"docs": {
|
|
1300
|
+
"default": "false",
|
|
1301
|
+
"stability": "experimental",
|
|
1302
|
+
"summary": "Do not generate a `tsconfig.dev.json` file."
|
|
1303
|
+
},
|
|
1304
|
+
"immutable": true,
|
|
1305
|
+
"locationInModule": {
|
|
1306
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1307
|
+
"line": 275
|
|
1308
|
+
},
|
|
1309
|
+
"name": "disableTsconfigDev",
|
|
1310
|
+
"optional": true,
|
|
1311
|
+
"type": {
|
|
1312
|
+
"primitive": "boolean"
|
|
1313
|
+
}
|
|
1314
|
+
},
|
|
1315
|
+
{
|
|
1316
|
+
"abstract": true,
|
|
1317
|
+
"docs": {
|
|
1318
|
+
"default": "false",
|
|
1319
|
+
"stability": "experimental",
|
|
1320
|
+
"summary": "Docgen by Typedoc."
|
|
1321
|
+
},
|
|
1322
|
+
"immutable": true,
|
|
1323
|
+
"locationInModule": {
|
|
1324
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1325
|
+
"line": 269
|
|
1326
|
+
},
|
|
1327
|
+
"name": "docgen",
|
|
1328
|
+
"optional": true,
|
|
1329
|
+
"type": {
|
|
1330
|
+
"primitive": "boolean"
|
|
1331
|
+
}
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
"abstract": true,
|
|
1335
|
+
"docs": {
|
|
1336
|
+
"default": "\"docs\"",
|
|
1337
|
+
"stability": "experimental",
|
|
1338
|
+
"summary": "Docs directory."
|
|
1339
|
+
},
|
|
1340
|
+
"immutable": true,
|
|
1341
|
+
"locationInModule": {
|
|
1342
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1343
|
+
"line": 263
|
|
1344
|
+
},
|
|
1345
|
+
"name": "docsDirectory",
|
|
1346
|
+
"optional": true,
|
|
1347
|
+
"type": {
|
|
1348
|
+
"primitive": "string"
|
|
1349
|
+
}
|
|
1350
|
+
},
|
|
1351
|
+
{
|
|
1352
|
+
"abstract": true,
|
|
1353
|
+
"docs": {
|
|
1354
|
+
"default": "true",
|
|
1355
|
+
"stability": "experimental",
|
|
1356
|
+
"summary": "Automatically adds an `cloudfront.experimental.EdgeFunction` for each `.edge-lambda.ts` handler in your source tree. If this is disabled, you can manually add an `awscdk.AutoDiscover` component to your project."
|
|
1357
|
+
},
|
|
1358
|
+
"immutable": true,
|
|
1359
|
+
"locationInModule": {
|
|
1360
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1361
|
+
"line": 43
|
|
1362
|
+
},
|
|
1363
|
+
"name": "edgeLambdaAutoDiscover",
|
|
1364
|
+
"optional": true,
|
|
1365
|
+
"type": {
|
|
1366
|
+
"primitive": "boolean"
|
|
1367
|
+
}
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
"abstract": true,
|
|
1371
|
+
"docs": {
|
|
1372
|
+
"default": "\"lib/index.js\"",
|
|
1373
|
+
"stability": "experimental",
|
|
1374
|
+
"summary": "Module entrypoint (`main` in `package.json`). Set to an empty string to not include `main` in your package.json."
|
|
1375
|
+
},
|
|
1376
|
+
"immutable": true,
|
|
1377
|
+
"locationInModule": {
|
|
1378
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1379
|
+
"line": 935
|
|
1380
|
+
},
|
|
1381
|
+
"name": "entrypoint",
|
|
1382
|
+
"optional": true,
|
|
1383
|
+
"type": {
|
|
1384
|
+
"primitive": "string"
|
|
1385
|
+
}
|
|
1386
|
+
},
|
|
1387
|
+
{
|
|
1388
|
+
"abstract": true,
|
|
1389
|
+
"docs": {
|
|
1390
|
+
"default": "- .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)",
|
|
1391
|
+
"stability": "experimental",
|
|
1392
|
+
"summary": "The .d.ts file that includes the type declarations for this module."
|
|
1393
|
+
},
|
|
1394
|
+
"immutable": true,
|
|
1395
|
+
"locationInModule": {
|
|
1396
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1397
|
+
"line": 257
|
|
1398
|
+
},
|
|
1399
|
+
"name": "entrypointTypes",
|
|
1400
|
+
"optional": true,
|
|
1401
|
+
"type": {
|
|
1402
|
+
"primitive": "string"
|
|
1403
|
+
}
|
|
1404
|
+
},
|
|
1405
|
+
{
|
|
1406
|
+
"abstract": true,
|
|
1407
|
+
"docs": {
|
|
1408
|
+
"default": "- true, unless biome is enabled",
|
|
1409
|
+
"stability": "experimental",
|
|
1410
|
+
"summary": "Setup eslint."
|
|
1411
|
+
},
|
|
1412
|
+
"immutable": true,
|
|
1413
|
+
"locationInModule": {
|
|
1414
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1415
|
+
"line": 251
|
|
1416
|
+
},
|
|
1417
|
+
"name": "eslint",
|
|
1418
|
+
"optional": true,
|
|
1419
|
+
"type": {
|
|
1420
|
+
"primitive": "boolean"
|
|
1421
|
+
}
|
|
1422
|
+
},
|
|
1423
|
+
{
|
|
1424
|
+
"abstract": true,
|
|
1425
|
+
"docs": {
|
|
1426
|
+
"default": "- opinionated default options",
|
|
1427
|
+
"stability": "experimental",
|
|
1428
|
+
"summary": "Eslint options."
|
|
1429
|
+
},
|
|
1430
|
+
"immutable": true,
|
|
1431
|
+
"locationInModule": {
|
|
1432
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1433
|
+
"line": 245
|
|
1434
|
+
},
|
|
1435
|
+
"name": "eslintOptions",
|
|
1436
|
+
"optional": true,
|
|
1437
|
+
"type": {
|
|
1438
|
+
"fqn": "projen.javascript.EslintOptions"
|
|
1439
|
+
}
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
"abstract": true,
|
|
1443
|
+
"docs": {
|
|
1444
|
+
"default": "false",
|
|
1445
|
+
"stability": "experimental",
|
|
1446
|
+
"summary": "Enable experimental support for the AWS CDK integ-runner."
|
|
1447
|
+
},
|
|
1448
|
+
"immutable": true,
|
|
1449
|
+
"locationInModule": {
|
|
1450
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1451
|
+
"line": 37
|
|
1452
|
+
},
|
|
1453
|
+
"name": "experimentalIntegRunner",
|
|
1454
|
+
"optional": true,
|
|
1455
|
+
"type": {
|
|
1456
|
+
"primitive": "boolean"
|
|
1457
|
+
}
|
|
1458
|
+
},
|
|
1459
|
+
{
|
|
1460
|
+
"abstract": true,
|
|
1461
|
+
"docs": {
|
|
1462
|
+
"default": "- no feature flags are enabled by default",
|
|
1463
|
+
"stability": "experimental",
|
|
1464
|
+
"summary": "Feature flags that should be enabled in `cdk.json`. Make sure to double-check any changes to feature flags in `cdk.json` before deploying. Unexpected changes may cause breaking changes in your CDK app. You can overwrite any feature flag by passing it into the context field."
|
|
1465
|
+
},
|
|
1466
|
+
"immutable": true,
|
|
1467
|
+
"locationInModule": {
|
|
1468
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1469
|
+
"line": 147
|
|
1470
|
+
},
|
|
1471
|
+
"name": "featureFlags",
|
|
1472
|
+
"optional": true,
|
|
1473
|
+
"type": {
|
|
1474
|
+
"fqn": "projen.awscdk.ICdkFeatureFlags"
|
|
1475
|
+
}
|
|
1476
|
+
},
|
|
1477
|
+
{
|
|
1478
|
+
"abstract": true,
|
|
1479
|
+
"docs": {
|
|
1480
|
+
"default": "true",
|
|
1481
|
+
"remarks": "Enabled by default for root projects. Disabled for non-root projects.",
|
|
1482
|
+
"stability": "experimental",
|
|
1483
|
+
"summary": "Enable GitHub integration."
|
|
1484
|
+
},
|
|
1485
|
+
"immutable": true,
|
|
1486
|
+
"locationInModule": {
|
|
1487
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1488
|
+
"line": 1135
|
|
1489
|
+
},
|
|
1490
|
+
"name": "github",
|
|
1491
|
+
"optional": true,
|
|
1492
|
+
"type": {
|
|
1493
|
+
"primitive": "boolean"
|
|
1494
|
+
}
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
"abstract": true,
|
|
1498
|
+
"docs": {
|
|
1499
|
+
"default": "- see GitHubOptions",
|
|
1500
|
+
"stability": "experimental",
|
|
1501
|
+
"summary": "Options for GitHub integration."
|
|
1502
|
+
},
|
|
1503
|
+
"immutable": true,
|
|
1504
|
+
"locationInModule": {
|
|
1505
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1506
|
+
"line": 1128
|
|
1507
|
+
},
|
|
1508
|
+
"name": "githubOptions",
|
|
1509
|
+
"optional": true,
|
|
1510
|
+
"type": {
|
|
1511
|
+
"fqn": "projen.github.GitHubOptions"
|
|
1512
|
+
}
|
|
1513
|
+
},
|
|
1514
|
+
{
|
|
1515
|
+
"abstract": true,
|
|
1516
|
+
"docs": {
|
|
1517
|
+
"stability": "experimental",
|
|
1518
|
+
"summary": "Additional entries to .gitignore."
|
|
1519
|
+
},
|
|
1520
|
+
"immutable": true,
|
|
1521
|
+
"locationInModule": {
|
|
1522
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1523
|
+
"line": 425
|
|
1524
|
+
},
|
|
1525
|
+
"name": "gitignore",
|
|
1526
|
+
"optional": true,
|
|
1527
|
+
"type": {
|
|
1528
|
+
"collection": {
|
|
1529
|
+
"elementtype": {
|
|
1530
|
+
"primitive": "string"
|
|
1531
|
+
},
|
|
1532
|
+
"kind": "array"
|
|
1533
|
+
}
|
|
1534
|
+
}
|
|
1535
|
+
},
|
|
1536
|
+
{
|
|
1537
|
+
"abstract": true,
|
|
1538
|
+
"docs": {
|
|
1539
|
+
"stability": "experimental",
|
|
1540
|
+
"summary": "Configuration options for .gitignore file."
|
|
1541
|
+
},
|
|
1542
|
+
"immutable": true,
|
|
1543
|
+
"locationInModule": {
|
|
1544
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1545
|
+
"line": 1232
|
|
1546
|
+
},
|
|
1547
|
+
"name": "gitIgnoreOptions",
|
|
1548
|
+
"optional": true,
|
|
1549
|
+
"type": {
|
|
1550
|
+
"fqn": "projen.IgnoreFileOptions"
|
|
1551
|
+
}
|
|
1552
|
+
},
|
|
1553
|
+
{
|
|
1554
|
+
"abstract": true,
|
|
1555
|
+
"docs": {
|
|
1556
|
+
"stability": "experimental",
|
|
1557
|
+
"summary": "Configuration options for git."
|
|
1558
|
+
},
|
|
1559
|
+
"immutable": true,
|
|
1560
|
+
"locationInModule": {
|
|
1561
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1562
|
+
"line": 1227
|
|
1563
|
+
},
|
|
1564
|
+
"name": "gitOptions",
|
|
1565
|
+
"optional": true,
|
|
1566
|
+
"type": {
|
|
1567
|
+
"fqn": "projen.GitOptions"
|
|
1568
|
+
}
|
|
1569
|
+
},
|
|
1570
|
+
{
|
|
1571
|
+
"abstract": true,
|
|
1572
|
+
"docs": {
|
|
1573
|
+
"default": "false",
|
|
1574
|
+
"stability": "experimental",
|
|
1575
|
+
"summary": "Add a Gitpod development environment."
|
|
1576
|
+
},
|
|
1577
|
+
"immutable": true,
|
|
1578
|
+
"locationInModule": {
|
|
1579
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1580
|
+
"line": 1122
|
|
1581
|
+
},
|
|
1582
|
+
"name": "gitpod",
|
|
1583
|
+
"optional": true,
|
|
1584
|
+
"type": {
|
|
1585
|
+
"primitive": "boolean"
|
|
1586
|
+
}
|
|
1587
|
+
},
|
|
1588
|
+
{
|
|
1589
|
+
"abstract": true,
|
|
1590
|
+
"docs": {
|
|
1591
|
+
"stability": "experimental",
|
|
1592
|
+
"summary": "Package's Homepage / Website."
|
|
1593
|
+
},
|
|
1594
|
+
"immutable": true,
|
|
1595
|
+
"locationInModule": {
|
|
1596
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1597
|
+
"line": 928
|
|
1598
|
+
},
|
|
1599
|
+
"name": "homepage",
|
|
1600
|
+
"optional": true,
|
|
1601
|
+
"type": {
|
|
1602
|
+
"primitive": "string"
|
|
1603
|
+
}
|
|
1604
|
+
},
|
|
1605
|
+
{
|
|
1606
|
+
"abstract": true,
|
|
1607
|
+
"docs": {
|
|
1608
|
+
"default": "true",
|
|
1609
|
+
"stability": "experimental",
|
|
1610
|
+
"summary": "Automatically discovers and creates integration tests for each `.integ.ts` file in under your test directory."
|
|
1611
|
+
},
|
|
1612
|
+
"immutable": true,
|
|
1613
|
+
"locationInModule": {
|
|
1614
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1615
|
+
"line": 31
|
|
1616
|
+
},
|
|
1617
|
+
"name": "integrationTestAutoDiscover",
|
|
1618
|
+
"optional": true,
|
|
1619
|
+
"type": {
|
|
1620
|
+
"primitive": "boolean"
|
|
1621
|
+
}
|
|
1622
|
+
},
|
|
1623
|
+
{
|
|
1624
|
+
"abstract": true,
|
|
1625
|
+
"docs": {
|
|
1626
|
+
"default": "true",
|
|
1627
|
+
"stability": "experimental",
|
|
1628
|
+
"summary": "Setup jest unit tests."
|
|
1629
|
+
},
|
|
1630
|
+
"immutable": true,
|
|
1631
|
+
"locationInModule": {
|
|
1632
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1633
|
+
"line": 420
|
|
1634
|
+
},
|
|
1635
|
+
"name": "jest",
|
|
1636
|
+
"optional": true,
|
|
1637
|
+
"type": {
|
|
1638
|
+
"primitive": "boolean"
|
|
1639
|
+
}
|
|
1640
|
+
},
|
|
1641
|
+
{
|
|
1642
|
+
"abstract": true,
|
|
1643
|
+
"docs": {
|
|
1644
|
+
"default": "- default options",
|
|
1645
|
+
"stability": "experimental",
|
|
1646
|
+
"summary": "Jest options."
|
|
1647
|
+
},
|
|
1648
|
+
"immutable": true,
|
|
1649
|
+
"locationInModule": {
|
|
1650
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1651
|
+
"line": 414
|
|
1652
|
+
},
|
|
1653
|
+
"name": "jestOptions",
|
|
1654
|
+
"optional": true,
|
|
1655
|
+
"type": {
|
|
1656
|
+
"fqn": "projen.javascript.JestOptions"
|
|
1657
|
+
}
|
|
1658
|
+
},
|
|
1659
|
+
{
|
|
1660
|
+
"abstract": true,
|
|
1661
|
+
"docs": {
|
|
1662
|
+
"default": "\"latest\"",
|
|
1663
|
+
"stability": "experimental",
|
|
1664
|
+
"summary": "Version requirement of `publib` which is used to publish modules to npm."
|
|
1665
|
+
},
|
|
1666
|
+
"immutable": true,
|
|
1667
|
+
"locationInModule": {
|
|
1668
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1669
|
+
"line": 745
|
|
1670
|
+
},
|
|
1671
|
+
"name": "jsiiReleaseVersion",
|
|
1672
|
+
"optional": true,
|
|
1673
|
+
"type": {
|
|
1674
|
+
"primitive": "string"
|
|
1675
|
+
}
|
|
1676
|
+
},
|
|
1677
|
+
{
|
|
1678
|
+
"abstract": true,
|
|
1679
|
+
"docs": {
|
|
1680
|
+
"stability": "experimental",
|
|
1681
|
+
"summary": "Keywords to include in `package.json`."
|
|
1682
|
+
},
|
|
1683
|
+
"immutable": true,
|
|
1684
|
+
"locationInModule": {
|
|
1685
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1686
|
+
"line": 923
|
|
1687
|
+
},
|
|
1688
|
+
"name": "keywords",
|
|
1689
|
+
"optional": true,
|
|
1690
|
+
"type": {
|
|
1691
|
+
"collection": {
|
|
1692
|
+
"elementtype": {
|
|
1693
|
+
"primitive": "string"
|
|
1694
|
+
},
|
|
1695
|
+
"kind": "array"
|
|
1696
|
+
}
|
|
1697
|
+
}
|
|
1698
|
+
},
|
|
1699
|
+
{
|
|
1700
|
+
"abstract": true,
|
|
1701
|
+
"docs": {
|
|
1702
|
+
"default": "true",
|
|
1703
|
+
"stability": "experimental",
|
|
1704
|
+
"summary": "Automatically adds an `awscdk.LambdaFunction` for each `.lambda.ts` handler in your source tree. If this is disabled, you can manually add an `awscdk.AutoDiscover` component to your project."
|
|
1705
|
+
},
|
|
1706
|
+
"immutable": true,
|
|
1707
|
+
"locationInModule": {
|
|
1708
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1709
|
+
"line": 25
|
|
1710
|
+
},
|
|
1711
|
+
"name": "lambdaAutoDiscover",
|
|
1712
|
+
"optional": true,
|
|
1713
|
+
"type": {
|
|
1714
|
+
"primitive": "boolean"
|
|
1715
|
+
}
|
|
1716
|
+
},
|
|
1717
|
+
{
|
|
1718
|
+
"abstract": true,
|
|
1719
|
+
"docs": {
|
|
1720
|
+
"default": "true",
|
|
1721
|
+
"stability": "experimental",
|
|
1722
|
+
"summary": "Automatically adds an `awscdk.LambdaExtension` for each `.lambda-extension.ts` entrypoint in your source tree. If this is disabled, you can manually add an `awscdk.AutoDiscover` component to your project."
|
|
1723
|
+
},
|
|
1724
|
+
"immutable": true,
|
|
1725
|
+
"locationInModule": {
|
|
1726
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1727
|
+
"line": 19
|
|
1728
|
+
},
|
|
1729
|
+
"name": "lambdaExtensionAutoDiscover",
|
|
1730
|
+
"optional": true,
|
|
1731
|
+
"type": {
|
|
1732
|
+
"primitive": "boolean"
|
|
1733
|
+
}
|
|
1734
|
+
},
|
|
1735
|
+
{
|
|
1736
|
+
"abstract": true,
|
|
1737
|
+
"docs": {
|
|
1738
|
+
"default": "- default options",
|
|
1739
|
+
"stability": "experimental",
|
|
1740
|
+
"summary": "Common options for all AWS Lambda functions."
|
|
1741
|
+
},
|
|
1742
|
+
"immutable": true,
|
|
1743
|
+
"locationInModule": {
|
|
1744
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1745
|
+
"line": 13
|
|
1746
|
+
},
|
|
1747
|
+
"name": "lambdaOptions",
|
|
1748
|
+
"optional": true,
|
|
1749
|
+
"type": {
|
|
1750
|
+
"fqn": "projen.awscdk.LambdaFunctionCommonOptions"
|
|
1751
|
+
}
|
|
1752
|
+
},
|
|
1753
|
+
{
|
|
1754
|
+
"abstract": true,
|
|
1755
|
+
"docs": {
|
|
1756
|
+
"default": "\"lib\"",
|
|
1757
|
+
"stability": "experimental",
|
|
1758
|
+
"summary": "Typescript artifacts output directory."
|
|
1759
|
+
},
|
|
1760
|
+
"immutable": true,
|
|
1761
|
+
"locationInModule": {
|
|
1762
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1763
|
+
"line": 239
|
|
1764
|
+
},
|
|
1765
|
+
"name": "libdir",
|
|
1766
|
+
"optional": true,
|
|
1767
|
+
"type": {
|
|
1768
|
+
"primitive": "string"
|
|
1769
|
+
}
|
|
1770
|
+
},
|
|
1771
|
+
{
|
|
1772
|
+
"abstract": true,
|
|
1773
|
+
"docs": {
|
|
1774
|
+
"default": "\"Apache-2.0\"",
|
|
1775
|
+
"remarks": "See https://github.com/projen/projen/tree/main/license-text for a list of supported licenses.\nUse the `licensed` option if you want to no license to be specified.",
|
|
1776
|
+
"stability": "experimental",
|
|
1777
|
+
"summary": "License's SPDX identifier."
|
|
1778
|
+
},
|
|
1779
|
+
"immutable": true,
|
|
1780
|
+
"locationInModule": {
|
|
1781
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1782
|
+
"line": 918
|
|
1783
|
+
},
|
|
1784
|
+
"name": "license",
|
|
1785
|
+
"optional": true,
|
|
1786
|
+
"type": {
|
|
1787
|
+
"primitive": "string"
|
|
1788
|
+
}
|
|
1789
|
+
},
|
|
1790
|
+
{
|
|
1791
|
+
"abstract": true,
|
|
1792
|
+
"docs": {
|
|
1793
|
+
"default": "true",
|
|
1794
|
+
"stability": "experimental",
|
|
1795
|
+
"summary": "Indicates if a license should be added."
|
|
1796
|
+
},
|
|
1797
|
+
"immutable": true,
|
|
1798
|
+
"locationInModule": {
|
|
1799
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1800
|
+
"line": 910
|
|
1801
|
+
},
|
|
1802
|
+
"name": "licensed",
|
|
1803
|
+
"optional": true,
|
|
1804
|
+
"type": {
|
|
1805
|
+
"primitive": "boolean"
|
|
1806
|
+
}
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
"abstract": true,
|
|
1810
|
+
"docs": {
|
|
1811
|
+
"default": "{}",
|
|
1812
|
+
"stability": "experimental",
|
|
1813
|
+
"summary": "Configure logging options such as verbosity."
|
|
1814
|
+
},
|
|
1815
|
+
"immutable": true,
|
|
1816
|
+
"locationInModule": {
|
|
1817
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1818
|
+
"line": 1222
|
|
1819
|
+
},
|
|
1820
|
+
"name": "logging",
|
|
1821
|
+
"optional": true,
|
|
1822
|
+
"type": {
|
|
1823
|
+
"fqn": "projen.LoggerOptions"
|
|
1824
|
+
}
|
|
1825
|
+
},
|
|
1826
|
+
{
|
|
1827
|
+
"abstract": true,
|
|
1828
|
+
"docs": {
|
|
1829
|
+
"default": "- Major version is not enforced.",
|
|
1830
|
+
"remarks": "If this is specified, we bump the latest version of this major version line.\nIf not specified, we bump the global latest version.",
|
|
1831
|
+
"stability": "experimental",
|
|
1832
|
+
"summary": "Major version to release from the default branch."
|
|
1833
|
+
},
|
|
1834
|
+
"immutable": true,
|
|
1835
|
+
"locationInModule": {
|
|
1836
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1837
|
+
"line": 739
|
|
1838
|
+
},
|
|
1839
|
+
"name": "majorVersion",
|
|
1840
|
+
"optional": true,
|
|
1841
|
+
"type": {
|
|
1842
|
+
"primitive": "number"
|
|
1843
|
+
}
|
|
1844
|
+
},
|
|
1845
|
+
{
|
|
1846
|
+
"abstract": true,
|
|
1847
|
+
"docs": {
|
|
1848
|
+
"default": "- no maximum version is enforced",
|
|
1849
|
+
"remarks": "Most projects should not use this option.\nThe value indicates that the package is incompatible with any newer versions of node.\nThis requirement is enforced via the engines field.\n\nYou will normally not need to set this option.\nConsider this option only if your package is known to not function with newer versions of node.",
|
|
1850
|
+
"stability": "experimental",
|
|
1851
|
+
"summary": "The maximum node version supported by this package."
|
|
1852
|
+
},
|
|
1853
|
+
"immutable": true,
|
|
1854
|
+
"locationInModule": {
|
|
1855
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1856
|
+
"line": 904
|
|
1857
|
+
},
|
|
1858
|
+
"name": "maxNodeVersion",
|
|
1859
|
+
"optional": true,
|
|
1860
|
+
"type": {
|
|
1861
|
+
"primitive": "string"
|
|
1862
|
+
}
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
"abstract": true,
|
|
1866
|
+
"docs": {
|
|
1867
|
+
"default": "true",
|
|
1868
|
+
"deprecated": "use `githubOptions.mergify` instead",
|
|
1869
|
+
"stability": "deprecated",
|
|
1870
|
+
"summary": "Whether mergify should be enabled on this repository or not."
|
|
1871
|
+
},
|
|
1872
|
+
"immutable": true,
|
|
1873
|
+
"locationInModule": {
|
|
1874
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1875
|
+
"line": 1116
|
|
1876
|
+
},
|
|
1877
|
+
"name": "mergify",
|
|
1878
|
+
"optional": true,
|
|
1879
|
+
"type": {
|
|
1880
|
+
"primitive": "boolean"
|
|
1881
|
+
}
|
|
1882
|
+
},
|
|
1883
|
+
{
|
|
1884
|
+
"abstract": true,
|
|
1885
|
+
"docs": {
|
|
1886
|
+
"default": "- default options",
|
|
1887
|
+
"deprecated": "use `githubOptions.mergifyOptions` instead",
|
|
1888
|
+
"stability": "deprecated",
|
|
1889
|
+
"summary": "Options for mergify."
|
|
1890
|
+
},
|
|
1891
|
+
"immutable": true,
|
|
1892
|
+
"locationInModule": {
|
|
1893
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1894
|
+
"line": 1109
|
|
1895
|
+
},
|
|
1896
|
+
"name": "mergifyOptions",
|
|
1897
|
+
"optional": true,
|
|
1898
|
+
"type": {
|
|
1899
|
+
"fqn": "projen.github.MergifyOptions"
|
|
1900
|
+
}
|
|
1901
|
+
},
|
|
1902
|
+
{
|
|
1903
|
+
"abstract": true,
|
|
1904
|
+
"docs": {
|
|
1905
|
+
"default": "- No minimum version is being enforced",
|
|
1906
|
+
"remarks": "This can be useful to set to 1, as breaking changes before the 1.x major\nrelease are not incrementing the major version number.\n\nCan not be set together with `majorVersion`.",
|
|
1907
|
+
"stability": "experimental",
|
|
1908
|
+
"summary": "Minimal Major version to release."
|
|
1909
|
+
},
|
|
1910
|
+
"immutable": true,
|
|
1911
|
+
"locationInModule": {
|
|
1912
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1913
|
+
"line": 731
|
|
1914
|
+
},
|
|
1915
|
+
"name": "minMajorVersion",
|
|
1916
|
+
"optional": true,
|
|
1917
|
+
"type": {
|
|
1918
|
+
"primitive": "number"
|
|
1919
|
+
}
|
|
1920
|
+
},
|
|
1921
|
+
{
|
|
1922
|
+
"abstract": true,
|
|
1923
|
+
"docs": {
|
|
1924
|
+
"default": "- no minimum version is enforced",
|
|
1925
|
+
"remarks": "Most projects should not use this option.\nThe value indicates that the package is incompatible with any older versions of node.\nThis requirement is enforced via the engines field.\n\nYou will normally not need to set this option, even if your package is incompatible with EOL versions of node.\nConsider this option only if your package depends on a specific feature, that is not available in other LTS versions.\nSetting this option has very high impact on the consumers of your package,\nas package managers will actively prevent usage with node versions you have marked as incompatible.\n\nTo change the node version of your CI/CD workflows, use `workflowNodeVersion`.",
|
|
1926
|
+
"stability": "experimental",
|
|
1927
|
+
"summary": "The minimum node version required by this package to function."
|
|
1928
|
+
},
|
|
1929
|
+
"immutable": true,
|
|
1930
|
+
"locationInModule": {
|
|
1931
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1932
|
+
"line": 893
|
|
1933
|
+
},
|
|
1934
|
+
"name": "minNodeVersion",
|
|
1935
|
+
"optional": true,
|
|
1936
|
+
"type": {
|
|
1937
|
+
"primitive": "string"
|
|
1938
|
+
}
|
|
1939
|
+
},
|
|
1940
|
+
{
|
|
1941
|
+
"abstract": true,
|
|
1942
|
+
"docs": {
|
|
1943
|
+
"default": "true",
|
|
1944
|
+
"deprecated": "- Use `buildWorkflowOptions.mutableBuild`",
|
|
1945
|
+
"remarks": "This means\nthat any files synthesized by projen or e.g. test snapshots will always be up-to-date\nbefore a PR is merged.\n\nImplies that PR builds do not have anti-tamper checks.",
|
|
1946
|
+
"stability": "deprecated",
|
|
1947
|
+
"summary": "Automatically update files modified during builds to pull-request branches."
|
|
1948
|
+
},
|
|
1949
|
+
"immutable": true,
|
|
1950
|
+
"locationInModule": {
|
|
1951
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1952
|
+
"line": 408
|
|
1953
|
+
},
|
|
1954
|
+
"name": "mutableBuild",
|
|
1955
|
+
"optional": true,
|
|
1956
|
+
"type": {
|
|
1957
|
+
"primitive": "boolean"
|
|
1958
|
+
}
|
|
1959
|
+
},
|
|
1960
|
+
{
|
|
1961
|
+
"abstract": true,
|
|
1962
|
+
"docs": {
|
|
1963
|
+
"default": "- The next version will be determined based on the commit history and project settings.",
|
|
1964
|
+
"remarks": "If present, this shell command will be run before the bump is executed, and\nit determines what version to release. It will be executed in the following\nenvironment:\n\n- Working directory: the project directory.\n- `$VERSION`: the current version. Looks like `1.2.3`.\n- `$LATEST_TAG`: the most recent tag. Looks like `prefix-v1.2.3`, or may be unset.\n- `$SUGGESTED_BUMP`: the suggested bump action based on commits. One of `major|minor|patch|none`.\n\nThe command should print one of the following to `stdout`:\n\n- Nothing: the next version number will be determined based on commit history.\n- `x.y.z`: the next version number will be `x.y.z`.\n- `major|minor|patch`: the next version number will be the current version number\n with the indicated component bumped.\n\nThis setting cannot be specified together with `minMajorVersion`; the invoked\nscript can be used to achieve the effects of `minMajorVersion`.",
|
|
1965
|
+
"stability": "experimental",
|
|
1966
|
+
"summary": "A shell command to control the next version to release."
|
|
1967
|
+
},
|
|
1968
|
+
"immutable": true,
|
|
1969
|
+
"locationInModule": {
|
|
1970
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1971
|
+
"line": 721
|
|
1972
|
+
},
|
|
1973
|
+
"name": "nextVersionCommand",
|
|
1974
|
+
"optional": true,
|
|
1975
|
+
"type": {
|
|
1976
|
+
"primitive": "string"
|
|
1977
|
+
}
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
"abstract": true,
|
|
1981
|
+
"docs": {
|
|
1982
|
+
"default": "- for scoped packages (e.g. `foo@bar`), the default is\n`NpmAccess.RESTRICTED`, for non-scoped packages, the default is\n`NpmAccess.PUBLIC`.",
|
|
1983
|
+
"stability": "experimental",
|
|
1984
|
+
"summary": "Access level of the npm package."
|
|
1985
|
+
},
|
|
1986
|
+
"immutable": true,
|
|
1987
|
+
"locationInModule": {
|
|
1988
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
1989
|
+
"line": 878
|
|
1990
|
+
},
|
|
1991
|
+
"name": "npmAccess",
|
|
1992
|
+
"optional": true,
|
|
1993
|
+
"type": {
|
|
1994
|
+
"fqn": "projen.javascript.NpmAccess"
|
|
1995
|
+
}
|
|
1996
|
+
},
|
|
1997
|
+
{
|
|
1998
|
+
"abstract": true,
|
|
1999
|
+
"docs": {
|
|
2000
|
+
"default": "\"latest\"",
|
|
2001
|
+
"remarks": "To set the npm dist-tag for release branches, set the `npmDistTag` property\nfor each branch.",
|
|
2002
|
+
"stability": "experimental",
|
|
2003
|
+
"summary": "The npmDistTag to use when publishing from the default branch."
|
|
2004
|
+
},
|
|
2005
|
+
"immutable": true,
|
|
2006
|
+
"locationInModule": {
|
|
2007
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2008
|
+
"line": 697
|
|
2009
|
+
},
|
|
2010
|
+
"name": "npmDistTag",
|
|
2011
|
+
"optional": true,
|
|
2012
|
+
"type": {
|
|
2013
|
+
"primitive": "string"
|
|
2014
|
+
}
|
|
2015
|
+
},
|
|
2016
|
+
{
|
|
2017
|
+
"abstract": true,
|
|
2018
|
+
"docs": {
|
|
2019
|
+
"deprecated": "- use `project.addPackageIgnore`",
|
|
2020
|
+
"stability": "deprecated",
|
|
2021
|
+
"summary": "Additional entries to .npmignore."
|
|
2022
|
+
},
|
|
2023
|
+
"immutable": true,
|
|
2024
|
+
"locationInModule": {
|
|
2025
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2026
|
+
"line": 396
|
|
2027
|
+
},
|
|
2028
|
+
"name": "npmignore",
|
|
2029
|
+
"optional": true,
|
|
2030
|
+
"type": {
|
|
2031
|
+
"collection": {
|
|
2032
|
+
"elementtype": {
|
|
2033
|
+
"primitive": "string"
|
|
2034
|
+
},
|
|
2035
|
+
"kind": "array"
|
|
2036
|
+
}
|
|
2037
|
+
}
|
|
2038
|
+
},
|
|
2039
|
+
{
|
|
2040
|
+
"abstract": true,
|
|
2041
|
+
"docs": {
|
|
2042
|
+
"default": "true",
|
|
2043
|
+
"stability": "experimental",
|
|
2044
|
+
"summary": "Defines an .npmignore file. Normally this is only needed for libraries that are packaged as tarballs."
|
|
2045
|
+
},
|
|
2046
|
+
"immutable": true,
|
|
2047
|
+
"locationInModule": {
|
|
2048
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2049
|
+
"line": 390
|
|
2050
|
+
},
|
|
2051
|
+
"name": "npmignoreEnabled",
|
|
2052
|
+
"optional": true,
|
|
2053
|
+
"type": {
|
|
2054
|
+
"primitive": "boolean"
|
|
2055
|
+
}
|
|
2056
|
+
},
|
|
2057
|
+
{
|
|
2058
|
+
"abstract": true,
|
|
2059
|
+
"docs": {
|
|
2060
|
+
"stability": "experimental",
|
|
2061
|
+
"summary": "Configuration options for .npmignore file."
|
|
2062
|
+
},
|
|
2063
|
+
"immutable": true,
|
|
2064
|
+
"locationInModule": {
|
|
2065
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2066
|
+
"line": 384
|
|
2067
|
+
},
|
|
2068
|
+
"name": "npmIgnoreOptions",
|
|
2069
|
+
"optional": true,
|
|
2070
|
+
"type": {
|
|
2071
|
+
"fqn": "projen.IgnoreFileOptions"
|
|
2072
|
+
}
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
"abstract": true,
|
|
2076
|
+
"docs": {
|
|
2077
|
+
"default": "- true for public packages, false otherwise",
|
|
2078
|
+
"remarks": "A supported package manager is required to publish a package with npm provenance statements and\nyou will need to use a supported CI/CD provider.\n\nNote that the projen `Release` and `Publisher` components are using `publib` to publish packages,\nwhich is using npm internally and supports provenance statements independently of the package manager used.",
|
|
2079
|
+
"stability": "experimental",
|
|
2080
|
+
"summary": "Should provenance statements be generated when the package is published."
|
|
2081
|
+
},
|
|
2082
|
+
"immutable": true,
|
|
2083
|
+
"locationInModule": {
|
|
2084
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2085
|
+
"line": 870
|
|
2086
|
+
},
|
|
2087
|
+
"name": "npmProvenance",
|
|
2088
|
+
"optional": true,
|
|
2089
|
+
"type": {
|
|
2090
|
+
"primitive": "boolean"
|
|
2091
|
+
}
|
|
2092
|
+
},
|
|
2093
|
+
{
|
|
2094
|
+
"abstract": true,
|
|
2095
|
+
"docs": {
|
|
2096
|
+
"deprecated": "use `npmRegistryUrl` instead",
|
|
2097
|
+
"remarks": "Cannot be set together with `npmRegistryUrl`.",
|
|
2098
|
+
"stability": "deprecated",
|
|
2099
|
+
"summary": "The host name of the npm registry to publish to."
|
|
2100
|
+
},
|
|
2101
|
+
"immutable": true,
|
|
2102
|
+
"locationInModule": {
|
|
2103
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2104
|
+
"line": 859
|
|
2105
|
+
},
|
|
2106
|
+
"name": "npmRegistry",
|
|
2107
|
+
"optional": true,
|
|
2108
|
+
"type": {
|
|
2109
|
+
"primitive": "string"
|
|
2110
|
+
}
|
|
2111
|
+
},
|
|
2112
|
+
{
|
|
2113
|
+
"abstract": true,
|
|
2114
|
+
"docs": {
|
|
2115
|
+
"default": "\"https://registry.npmjs.org\"",
|
|
2116
|
+
"remarks": "Must be a URL (e.g. start with \"https://\" or \"http://\")",
|
|
2117
|
+
"stability": "experimental",
|
|
2118
|
+
"summary": "The base URL of the npm package registry."
|
|
2119
|
+
},
|
|
2120
|
+
"immutable": true,
|
|
2121
|
+
"locationInModule": {
|
|
2122
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2123
|
+
"line": 852
|
|
2124
|
+
},
|
|
2125
|
+
"name": "npmRegistryUrl",
|
|
2126
|
+
"optional": true,
|
|
2127
|
+
"type": {
|
|
2128
|
+
"primitive": "string"
|
|
2129
|
+
}
|
|
2130
|
+
},
|
|
2131
|
+
{
|
|
2132
|
+
"abstract": true,
|
|
2133
|
+
"docs": {
|
|
2134
|
+
"default": "\"NPM_TOKEN\"",
|
|
2135
|
+
"stability": "experimental",
|
|
2136
|
+
"summary": "GitHub secret which contains the NPM token to use when publishing packages."
|
|
2137
|
+
},
|
|
2138
|
+
"immutable": true,
|
|
2139
|
+
"locationInModule": {
|
|
2140
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2141
|
+
"line": 845
|
|
2142
|
+
},
|
|
2143
|
+
"name": "npmTokenSecret",
|
|
2144
|
+
"optional": true,
|
|
2145
|
+
"type": {
|
|
2146
|
+
"primitive": "string"
|
|
2147
|
+
}
|
|
2148
|
+
},
|
|
2149
|
+
{
|
|
2150
|
+
"abstract": true,
|
|
2151
|
+
"docs": {
|
|
2152
|
+
"default": "- false",
|
|
2153
|
+
"stability": "experimental",
|
|
2154
|
+
"summary": "Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work."
|
|
2155
|
+
},
|
|
2156
|
+
"immutable": true,
|
|
2157
|
+
"locationInModule": {
|
|
2158
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2159
|
+
"line": 839
|
|
2160
|
+
},
|
|
2161
|
+
"name": "npmTrustedPublishing",
|
|
2162
|
+
"optional": true,
|
|
2163
|
+
"type": {
|
|
2164
|
+
"primitive": "boolean"
|
|
2165
|
+
}
|
|
2166
|
+
},
|
|
2167
|
+
{
|
|
2168
|
+
"abstract": true,
|
|
2169
|
+
"docs": {
|
|
2170
|
+
"default": "\".\"",
|
|
2171
|
+
"remarks": "If this project has a parent, this directory is relative to the parent\ndirectory and it cannot be the same as the parent or any of it's other\nsubprojects.",
|
|
2172
|
+
"stability": "experimental",
|
|
2173
|
+
"summary": "The root directory of the project. Relative to this directory, all files are synthesized."
|
|
2174
|
+
},
|
|
2175
|
+
"immutable": true,
|
|
2176
|
+
"locationInModule": {
|
|
2177
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2178
|
+
"line": 1216
|
|
2179
|
+
},
|
|
2180
|
+
"name": "outdir",
|
|
2181
|
+
"optional": true,
|
|
2182
|
+
"type": {
|
|
2183
|
+
"primitive": "string"
|
|
2184
|
+
}
|
|
2185
|
+
},
|
|
2186
|
+
{
|
|
2187
|
+
"abstract": true,
|
|
2188
|
+
"docs": {
|
|
2189
|
+
"default": "true",
|
|
2190
|
+
"stability": "experimental",
|
|
2191
|
+
"summary": "Defines a `package` task that will produce an npm tarball under the artifacts directory (e.g. `dist`)."
|
|
2192
|
+
},
|
|
2193
|
+
"immutable": true,
|
|
2194
|
+
"locationInModule": {
|
|
2195
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2196
|
+
"line": 379
|
|
2197
|
+
},
|
|
2198
|
+
"name": "package",
|
|
2199
|
+
"optional": true,
|
|
2200
|
+
"type": {
|
|
2201
|
+
"primitive": "boolean"
|
|
2202
|
+
}
|
|
2203
|
+
},
|
|
2204
|
+
{
|
|
2205
|
+
"abstract": true,
|
|
2206
|
+
"docs": {
|
|
2207
|
+
"default": "NodePackageManager.YARN_CLASSIC",
|
|
2208
|
+
"stability": "experimental",
|
|
2209
|
+
"summary": "The Node Package Manager used to execute scripts."
|
|
2210
|
+
},
|
|
2211
|
+
"immutable": true,
|
|
2212
|
+
"locationInModule": {
|
|
2213
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2214
|
+
"line": 833
|
|
2215
|
+
},
|
|
2216
|
+
"name": "packageManager",
|
|
2217
|
+
"optional": true,
|
|
2218
|
+
"type": {
|
|
2219
|
+
"fqn": "projen.javascript.NodePackageManager"
|
|
2220
|
+
}
|
|
2221
|
+
},
|
|
2222
|
+
{
|
|
2223
|
+
"abstract": true,
|
|
2224
|
+
"docs": {
|
|
2225
|
+
"custom": {
|
|
2226
|
+
"featured": "true"
|
|
2227
|
+
},
|
|
2228
|
+
"default": "- defaults to project name",
|
|
2229
|
+
"stability": "experimental",
|
|
2230
|
+
"summary": "The \"name\" in package.json."
|
|
2231
|
+
},
|
|
2232
|
+
"immutable": true,
|
|
2233
|
+
"locationInModule": {
|
|
2234
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2235
|
+
"line": 827
|
|
2236
|
+
},
|
|
2237
|
+
"name": "packageName",
|
|
2238
|
+
"optional": true,
|
|
2239
|
+
"type": {
|
|
2240
|
+
"primitive": "string"
|
|
2241
|
+
}
|
|
2242
|
+
},
|
|
2243
|
+
{
|
|
2244
|
+
"abstract": true,
|
|
2245
|
+
"docs": {
|
|
2246
|
+
"stability": "experimental",
|
|
2247
|
+
"summary": "The parent project, if this project is part of a bigger project."
|
|
2248
|
+
},
|
|
2249
|
+
"immutable": true,
|
|
2250
|
+
"locationInModule": {
|
|
2251
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2252
|
+
"line": 1205
|
|
2253
|
+
},
|
|
2254
|
+
"name": "parent",
|
|
2255
|
+
"optional": true,
|
|
2256
|
+
"type": {
|
|
2257
|
+
"fqn": "projen.Project"
|
|
2258
|
+
}
|
|
2259
|
+
},
|
|
2260
|
+
{
|
|
2261
|
+
"abstract": true,
|
|
2262
|
+
"docs": {
|
|
2263
|
+
"stability": "experimental",
|
|
2264
|
+
"summary": "Options for `peerDeps`."
|
|
2265
|
+
},
|
|
2266
|
+
"immutable": true,
|
|
2267
|
+
"locationInModule": {
|
|
2268
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2269
|
+
"line": 820
|
|
2270
|
+
},
|
|
2271
|
+
"name": "peerDependencyOptions",
|
|
2272
|
+
"optional": true,
|
|
2273
|
+
"type": {
|
|
2274
|
+
"fqn": "projen.javascript.PeerDependencyOptions"
|
|
2275
|
+
}
|
|
2276
|
+
},
|
|
2277
|
+
{
|
|
2278
|
+
"abstract": true,
|
|
2279
|
+
"docs": {
|
|
2280
|
+
"default": "[]",
|
|
2281
|
+
"remarks": "Dependencies listed here are required to\nbe installed (and satisfied) by the _consumer_ of this library. Using peer\ndependencies allows you to ensure that only a single module of a certain\nlibrary exists in the `node_modules` tree of your consumers.\n\nNote that prior to npm@7, peer dependencies are _not_ automatically\ninstalled, which means that adding peer dependencies to a library will be a\nbreaking change for your customers.\n\nUnless `peerDependencyOptions.pinnedDevDependency` is disabled (it is\nenabled by default), projen will automatically add a dev dependency with a\npinned version for each peer dependency. This will ensure that you build &\ntest your module against the lowest peer version required.",
|
|
2282
|
+
"stability": "experimental",
|
|
2283
|
+
"summary": "Peer dependencies for this module."
|
|
2284
|
+
},
|
|
2285
|
+
"immutable": true,
|
|
2286
|
+
"locationInModule": {
|
|
2287
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2288
|
+
"line": 815
|
|
2289
|
+
},
|
|
2290
|
+
"name": "peerDeps",
|
|
2291
|
+
"optional": true,
|
|
2292
|
+
"type": {
|
|
2293
|
+
"collection": {
|
|
2294
|
+
"elementtype": {
|
|
2295
|
+
"primitive": "string"
|
|
2296
|
+
},
|
|
2297
|
+
"kind": "array"
|
|
2298
|
+
}
|
|
2299
|
+
}
|
|
2300
|
+
},
|
|
2301
|
+
{
|
|
2302
|
+
"abstract": true,
|
|
2303
|
+
"docs": {
|
|
2304
|
+
"default": "\"9\"",
|
|
2305
|
+
"stability": "experimental",
|
|
2306
|
+
"summary": "The version of PNPM to use if using PNPM as a package manager."
|
|
2307
|
+
},
|
|
2308
|
+
"immutable": true,
|
|
2309
|
+
"locationInModule": {
|
|
2310
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2311
|
+
"line": 796
|
|
2312
|
+
},
|
|
2313
|
+
"name": "pnpmVersion",
|
|
2314
|
+
"optional": true,
|
|
2315
|
+
"type": {
|
|
2316
|
+
"primitive": "string"
|
|
2317
|
+
}
|
|
2318
|
+
},
|
|
2319
|
+
{
|
|
2320
|
+
"abstract": true,
|
|
2321
|
+
"docs": {
|
|
2322
|
+
"default": "[]",
|
|
2323
|
+
"stability": "experimental",
|
|
2324
|
+
"summary": "Steps to execute after build as part of the release workflow."
|
|
2325
|
+
},
|
|
2326
|
+
"immutable": true,
|
|
2327
|
+
"locationInModule": {
|
|
2328
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2329
|
+
"line": 689
|
|
2330
|
+
},
|
|
2331
|
+
"name": "postBuildSteps",
|
|
2332
|
+
"optional": true,
|
|
2333
|
+
"type": {
|
|
2334
|
+
"collection": {
|
|
2335
|
+
"elementtype": {
|
|
2336
|
+
"fqn": "projen.github.workflows.JobStep"
|
|
2337
|
+
},
|
|
2338
|
+
"kind": "array"
|
|
2339
|
+
}
|
|
2340
|
+
}
|
|
2341
|
+
},
|
|
2342
|
+
{
|
|
2343
|
+
"abstract": true,
|
|
2344
|
+
"docs": {
|
|
2345
|
+
"default": "- normal semantic versions",
|
|
2346
|
+
"stability": "experimental",
|
|
2347
|
+
"summary": "Bump versions from the default branch as pre-releases (e.g. \"beta\", \"alpha\", \"pre\")."
|
|
2348
|
+
},
|
|
2349
|
+
"immutable": true,
|
|
2350
|
+
"locationInModule": {
|
|
2351
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2352
|
+
"line": 683
|
|
2353
|
+
},
|
|
2354
|
+
"name": "prerelease",
|
|
2355
|
+
"optional": true,
|
|
2356
|
+
"type": {
|
|
2357
|
+
"primitive": "string"
|
|
2358
|
+
}
|
|
2359
|
+
},
|
|
2360
|
+
{
|
|
2361
|
+
"abstract": true,
|
|
2362
|
+
"docs": {
|
|
2363
|
+
"default": "false",
|
|
2364
|
+
"stability": "experimental",
|
|
2365
|
+
"summary": "Setup prettier."
|
|
2366
|
+
},
|
|
2367
|
+
"immutable": true,
|
|
2368
|
+
"locationInModule": {
|
|
2369
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2370
|
+
"line": 373
|
|
2371
|
+
},
|
|
2372
|
+
"name": "prettier",
|
|
2373
|
+
"optional": true,
|
|
2374
|
+
"type": {
|
|
2375
|
+
"primitive": "boolean"
|
|
2376
|
+
}
|
|
2377
|
+
},
|
|
2378
|
+
{
|
|
2379
|
+
"abstract": true,
|
|
2380
|
+
"docs": {
|
|
2381
|
+
"default": "- default options",
|
|
2382
|
+
"stability": "experimental",
|
|
2383
|
+
"summary": "Prettier options."
|
|
2384
|
+
},
|
|
2385
|
+
"immutable": true,
|
|
2386
|
+
"locationInModule": {
|
|
2387
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2388
|
+
"line": 367
|
|
2389
|
+
},
|
|
2390
|
+
"name": "prettierOptions",
|
|
2391
|
+
"optional": true,
|
|
2392
|
+
"type": {
|
|
2393
|
+
"fqn": "projen.javascript.PrettierOptions"
|
|
2394
|
+
}
|
|
2395
|
+
},
|
|
2396
|
+
{
|
|
2397
|
+
"abstract": true,
|
|
2398
|
+
"docs": {
|
|
2399
|
+
"default": "ProjectType.UNKNOWN",
|
|
2400
|
+
"deprecated": "no longer supported at the base project level",
|
|
2401
|
+
"stability": "deprecated",
|
|
2402
|
+
"summary": "Which type of project this is (library/app)."
|
|
2403
|
+
},
|
|
2404
|
+
"immutable": true,
|
|
2405
|
+
"locationInModule": {
|
|
2406
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2407
|
+
"line": 1102
|
|
2408
|
+
},
|
|
2409
|
+
"name": "projectType",
|
|
2410
|
+
"optional": true,
|
|
2411
|
+
"type": {
|
|
2412
|
+
"fqn": "projen.ProjectType"
|
|
2413
|
+
}
|
|
2414
|
+
},
|
|
2415
|
+
{
|
|
2416
|
+
"abstract": true,
|
|
2417
|
+
"docs": {
|
|
2418
|
+
"default": "\"npx projen\"",
|
|
2419
|
+
"remarks": "Can be used to customize in special environments.",
|
|
2420
|
+
"stability": "experimental",
|
|
2421
|
+
"summary": "The shell command to use in order to run the projen CLI."
|
|
2422
|
+
},
|
|
2423
|
+
"immutable": true,
|
|
2424
|
+
"locationInModule": {
|
|
2425
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2426
|
+
"line": 1200
|
|
2427
|
+
},
|
|
2428
|
+
"name": "projenCommand",
|
|
2429
|
+
"optional": true,
|
|
2430
|
+
"type": {
|
|
2431
|
+
"primitive": "string"
|
|
2432
|
+
}
|
|
2433
|
+
},
|
|
2434
|
+
{
|
|
2435
|
+
"abstract": true,
|
|
2436
|
+
"docs": {
|
|
2437
|
+
"default": "- use a personal access token named PROJEN_GITHUB_TOKEN",
|
|
2438
|
+
"stability": "experimental",
|
|
2439
|
+
"summary": "Choose a method of providing GitHub API access for projen workflows."
|
|
2440
|
+
},
|
|
2441
|
+
"immutable": true,
|
|
2442
|
+
"locationInModule": {
|
|
2443
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2444
|
+
"line": 1095
|
|
2445
|
+
},
|
|
2446
|
+
"name": "projenCredentials",
|
|
2447
|
+
"optional": true,
|
|
2448
|
+
"type": {
|
|
2449
|
+
"fqn": "projen.github.GithubCredentials"
|
|
2450
|
+
}
|
|
2451
|
+
},
|
|
2452
|
+
{
|
|
2453
|
+
"abstract": true,
|
|
2454
|
+
"docs": {
|
|
2455
|
+
"default": "- true if not a subproject",
|
|
2456
|
+
"stability": "experimental",
|
|
2457
|
+
"summary": "Indicates of \"projen\" should be installed as a devDependency."
|
|
2458
|
+
},
|
|
2459
|
+
"immutable": true,
|
|
2460
|
+
"locationInModule": {
|
|
2461
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2462
|
+
"line": 361
|
|
2463
|
+
},
|
|
2464
|
+
"name": "projenDevDependency",
|
|
2465
|
+
"optional": true,
|
|
2466
|
+
"type": {
|
|
2467
|
+
"primitive": "boolean"
|
|
2468
|
+
}
|
|
2469
|
+
},
|
|
2470
|
+
{
|
|
2471
|
+
"abstract": true,
|
|
2472
|
+
"docs": {
|
|
2473
|
+
"default": "- true if projenrcJson is false",
|
|
2474
|
+
"stability": "experimental",
|
|
2475
|
+
"summary": "Generate (once) .projenrc.js (in JavaScript). Set to `false` in order to disable .projenrc.js generation."
|
|
2476
|
+
},
|
|
2477
|
+
"immutable": true,
|
|
2478
|
+
"locationInModule": {
|
|
2479
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2480
|
+
"line": 355
|
|
2481
|
+
},
|
|
2482
|
+
"name": "projenrcJs",
|
|
2483
|
+
"optional": true,
|
|
2484
|
+
"type": {
|
|
2485
|
+
"primitive": "boolean"
|
|
2486
|
+
}
|
|
2487
|
+
},
|
|
2488
|
+
{
|
|
2489
|
+
"abstract": true,
|
|
2490
|
+
"docs": {
|
|
2491
|
+
"default": "false",
|
|
2492
|
+
"stability": "experimental",
|
|
2493
|
+
"summary": "Generate (once) .projenrc.json (in JSON). Set to `false` in order to disable .projenrc.json generation."
|
|
2494
|
+
},
|
|
2495
|
+
"immutable": true,
|
|
2496
|
+
"locationInModule": {
|
|
2497
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2498
|
+
"line": 1193
|
|
2499
|
+
},
|
|
2500
|
+
"name": "projenrcJson",
|
|
2501
|
+
"optional": true,
|
|
2502
|
+
"type": {
|
|
2503
|
+
"primitive": "boolean"
|
|
2504
|
+
}
|
|
2505
|
+
},
|
|
2506
|
+
{
|
|
2507
|
+
"abstract": true,
|
|
2508
|
+
"docs": {
|
|
2509
|
+
"default": "- default options",
|
|
2510
|
+
"stability": "experimental",
|
|
2511
|
+
"summary": "Options for .projenrc.json."
|
|
2512
|
+
},
|
|
2513
|
+
"immutable": true,
|
|
2514
|
+
"locationInModule": {
|
|
2515
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2516
|
+
"line": 1187
|
|
2517
|
+
},
|
|
2518
|
+
"name": "projenrcJsonOptions",
|
|
2519
|
+
"optional": true,
|
|
2520
|
+
"type": {
|
|
2521
|
+
"fqn": "projen.ProjenrcJsonOptions"
|
|
2522
|
+
}
|
|
2523
|
+
},
|
|
2524
|
+
{
|
|
2525
|
+
"abstract": true,
|
|
2526
|
+
"docs": {
|
|
2527
|
+
"default": "- default options",
|
|
2528
|
+
"stability": "experimental",
|
|
2529
|
+
"summary": "Options for .projenrc.js."
|
|
2530
|
+
},
|
|
2531
|
+
"immutable": true,
|
|
2532
|
+
"locationInModule": {
|
|
2533
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2534
|
+
"line": 349
|
|
2535
|
+
},
|
|
2536
|
+
"name": "projenrcJsOptions",
|
|
2537
|
+
"optional": true,
|
|
2538
|
+
"type": {
|
|
2539
|
+
"fqn": "projen.javascript.ProjenrcOptions"
|
|
2540
|
+
}
|
|
2541
|
+
},
|
|
2542
|
+
{
|
|
2543
|
+
"abstract": true,
|
|
2544
|
+
"docs": {
|
|
2545
|
+
"custom": {
|
|
2546
|
+
"pjnew": "true"
|
|
2547
|
+
},
|
|
2548
|
+
"default": "false",
|
|
2549
|
+
"stability": "experimental",
|
|
2550
|
+
"summary": "Use TypeScript for your projenrc file (`.projenrc.ts`)."
|
|
2551
|
+
},
|
|
2552
|
+
"immutable": true,
|
|
2553
|
+
"locationInModule": {
|
|
2554
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2555
|
+
"line": 233
|
|
2556
|
+
},
|
|
2557
|
+
"name": "projenrcTs",
|
|
2558
|
+
"optional": true,
|
|
2559
|
+
"type": {
|
|
2560
|
+
"primitive": "boolean"
|
|
2561
|
+
}
|
|
2562
|
+
},
|
|
2563
|
+
{
|
|
2564
|
+
"abstract": true,
|
|
2565
|
+
"docs": {
|
|
2566
|
+
"stability": "experimental",
|
|
2567
|
+
"summary": "Options for .projenrc.ts."
|
|
2568
|
+
},
|
|
2569
|
+
"immutable": true,
|
|
2570
|
+
"locationInModule": {
|
|
2571
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2572
|
+
"line": 226
|
|
2573
|
+
},
|
|
2574
|
+
"name": "projenrcTsOptions",
|
|
2575
|
+
"optional": true,
|
|
2576
|
+
"type": {
|
|
2577
|
+
"fqn": "projen.typescript.ProjenrcOptions"
|
|
2578
|
+
}
|
|
2579
|
+
},
|
|
2580
|
+
{
|
|
2581
|
+
"abstract": true,
|
|
2582
|
+
"docs": {
|
|
2583
|
+
"default": "\"PROJEN_GITHUB_TOKEN\"",
|
|
2584
|
+
"deprecated": "use `projenCredentials`",
|
|
2585
|
+
"remarks": "This token needs to have the `repo`, `workflows`\nand `packages` scope.",
|
|
2586
|
+
"stability": "deprecated",
|
|
2587
|
+
"summary": "The name of a secret which includes a GitHub Personal Access Token to be used by projen workflows."
|
|
2588
|
+
},
|
|
2589
|
+
"immutable": true,
|
|
2590
|
+
"locationInModule": {
|
|
2591
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2592
|
+
"line": 1089
|
|
2593
|
+
},
|
|
2594
|
+
"name": "projenTokenSecret",
|
|
2595
|
+
"optional": true,
|
|
2596
|
+
"type": {
|
|
2597
|
+
"primitive": "string"
|
|
2598
|
+
}
|
|
2599
|
+
},
|
|
2600
|
+
{
|
|
2601
|
+
"abstract": true,
|
|
2602
|
+
"docs": {
|
|
2603
|
+
"default": "- Defaults to the latest version.",
|
|
2604
|
+
"stability": "experimental",
|
|
2605
|
+
"summary": "Version of projen to install."
|
|
2606
|
+
},
|
|
2607
|
+
"immutable": true,
|
|
2608
|
+
"locationInModule": {
|
|
2609
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2610
|
+
"line": 343
|
|
2611
|
+
},
|
|
2612
|
+
"name": "projenVersion",
|
|
2613
|
+
"optional": true,
|
|
2614
|
+
"type": {
|
|
2615
|
+
"primitive": "string"
|
|
2616
|
+
}
|
|
2617
|
+
},
|
|
2618
|
+
{
|
|
2619
|
+
"abstract": true,
|
|
2620
|
+
"docs": {
|
|
2621
|
+
"default": "false",
|
|
2622
|
+
"stability": "experimental",
|
|
2623
|
+
"summary": "Instead of actually publishing to package managers, just print the publishing command."
|
|
2624
|
+
},
|
|
2625
|
+
"immutable": true,
|
|
2626
|
+
"locationInModule": {
|
|
2627
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2628
|
+
"line": 677
|
|
2629
|
+
},
|
|
2630
|
+
"name": "publishDryRun",
|
|
2631
|
+
"optional": true,
|
|
2632
|
+
"type": {
|
|
2633
|
+
"primitive": "boolean"
|
|
2634
|
+
}
|
|
2635
|
+
},
|
|
2636
|
+
{
|
|
2637
|
+
"abstract": true,
|
|
2638
|
+
"docs": {
|
|
2639
|
+
"default": "false",
|
|
2640
|
+
"remarks": "Normally, publishing only happens within automated workflows. Enable this\nin order to create a publishing task for each publishing activity.",
|
|
2641
|
+
"stability": "experimental",
|
|
2642
|
+
"summary": "Define publishing tasks that can be executed manually as well as workflows."
|
|
2643
|
+
},
|
|
2644
|
+
"immutable": true,
|
|
2645
|
+
"locationInModule": {
|
|
2646
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2647
|
+
"line": 671
|
|
2648
|
+
},
|
|
2649
|
+
"name": "publishTasks",
|
|
2650
|
+
"optional": true,
|
|
2651
|
+
"type": {
|
|
2652
|
+
"primitive": "boolean"
|
|
2653
|
+
}
|
|
2654
|
+
},
|
|
2655
|
+
{
|
|
2656
|
+
"abstract": true,
|
|
2657
|
+
"docs": {
|
|
2658
|
+
"default": "true",
|
|
2659
|
+
"stability": "experimental",
|
|
2660
|
+
"summary": "Include a GitHub pull request template."
|
|
2661
|
+
},
|
|
2662
|
+
"immutable": true,
|
|
2663
|
+
"locationInModule": {
|
|
2664
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2665
|
+
"line": 337
|
|
2666
|
+
},
|
|
2667
|
+
"name": "pullRequestTemplate",
|
|
2668
|
+
"optional": true,
|
|
2669
|
+
"type": {
|
|
2670
|
+
"primitive": "boolean"
|
|
2671
|
+
}
|
|
2672
|
+
},
|
|
2673
|
+
{
|
|
2674
|
+
"abstract": true,
|
|
2675
|
+
"docs": {
|
|
2676
|
+
"default": "- default content",
|
|
2677
|
+
"stability": "experimental",
|
|
2678
|
+
"summary": "The contents of the pull request template."
|
|
2679
|
+
},
|
|
2680
|
+
"immutable": true,
|
|
2681
|
+
"locationInModule": {
|
|
2682
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2683
|
+
"line": 331
|
|
2684
|
+
},
|
|
2685
|
+
"name": "pullRequestTemplateContents",
|
|
2686
|
+
"optional": true,
|
|
2687
|
+
"type": {
|
|
2688
|
+
"collection": {
|
|
2689
|
+
"elementtype": {
|
|
2690
|
+
"primitive": "string"
|
|
2691
|
+
},
|
|
2692
|
+
"kind": "array"
|
|
2693
|
+
}
|
|
2694
|
+
}
|
|
2695
|
+
},
|
|
2696
|
+
{
|
|
2697
|
+
"abstract": true,
|
|
2698
|
+
"docs": {
|
|
2699
|
+
"default": "- { filename: 'README.md', contents: '# replace this' }",
|
|
2700
|
+
"stability": "experimental",
|
|
2701
|
+
"summary": "The README setup."
|
|
2702
|
+
},
|
|
2703
|
+
"immutable": true,
|
|
2704
|
+
"locationInModule": {
|
|
2705
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2706
|
+
"line": 1080
|
|
2707
|
+
},
|
|
2708
|
+
"name": "readme",
|
|
2709
|
+
"optional": true,
|
|
2710
|
+
"type": {
|
|
2711
|
+
"fqn": "projen.SampleReadmeProps"
|
|
2712
|
+
}
|
|
2713
|
+
},
|
|
2714
|
+
{
|
|
2715
|
+
"abstract": true,
|
|
2716
|
+
"docs": {
|
|
2717
|
+
"default": "ReleasableCommits.everyCommit()",
|
|
2718
|
+
"stability": "experimental",
|
|
2719
|
+
"summary": "Find commits that should be considered releasable Used to decide if a release is required."
|
|
2720
|
+
},
|
|
2721
|
+
"immutable": true,
|
|
2722
|
+
"locationInModule": {
|
|
2723
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2724
|
+
"line": 663
|
|
2725
|
+
},
|
|
2726
|
+
"name": "releasableCommits",
|
|
2727
|
+
"optional": true,
|
|
2728
|
+
"type": {
|
|
2729
|
+
"fqn": "projen.ReleasableCommits"
|
|
2730
|
+
}
|
|
2731
|
+
},
|
|
2732
|
+
{
|
|
2733
|
+
"abstract": true,
|
|
2734
|
+
"docs": {
|
|
2735
|
+
"default": "- true (false for subprojects)",
|
|
2736
|
+
"stability": "experimental",
|
|
2737
|
+
"summary": "Add release management to this project."
|
|
2738
|
+
},
|
|
2739
|
+
"immutable": true,
|
|
2740
|
+
"locationInModule": {
|
|
2741
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2742
|
+
"line": 325
|
|
2743
|
+
},
|
|
2744
|
+
"name": "release",
|
|
2745
|
+
"optional": true,
|
|
2746
|
+
"type": {
|
|
2747
|
+
"primitive": "boolean"
|
|
2748
|
+
}
|
|
2749
|
+
},
|
|
2750
|
+
{
|
|
2751
|
+
"abstract": true,
|
|
2752
|
+
"docs": {
|
|
2753
|
+
"default": "- no additional branches are used for release. you can use\n`addBranch()` to add additional branches.",
|
|
2754
|
+
"remarks": "A workflow will be created for each\nrelease branch which will publish releases from commits in this branch.\nEach release branch _must_ be assigned a major version number which is used\nto enforce that versions published from that branch always use that major\nversion. If multiple branches are used, the `majorVersion` field must also\nbe provided for the default branch.",
|
|
2755
|
+
"stability": "experimental",
|
|
2756
|
+
"summary": "Defines additional release branches."
|
|
2757
|
+
},
|
|
2758
|
+
"immutable": true,
|
|
2759
|
+
"locationInModule": {
|
|
2760
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2761
|
+
"line": 657
|
|
2762
|
+
},
|
|
2763
|
+
"name": "releaseBranches",
|
|
2764
|
+
"optional": true,
|
|
2765
|
+
"type": {
|
|
2766
|
+
"collection": {
|
|
2767
|
+
"elementtype": {
|
|
2768
|
+
"fqn": "projen.release.BranchOptions"
|
|
2769
|
+
},
|
|
2770
|
+
"kind": "map"
|
|
2771
|
+
}
|
|
2772
|
+
}
|
|
2773
|
+
},
|
|
2774
|
+
{
|
|
2775
|
+
"abstract": true,
|
|
2776
|
+
"docs": {
|
|
2777
|
+
"default": "- no environment used, unless set at the artifact level",
|
|
2778
|
+
"remarks": "This can be used to add an explicit approval step to the release\nor limit who can initiate a release through environment protection rules.\n\nWhen multiple artifacts are released, the environment can be overwritten\non a per artifact basis.",
|
|
2779
|
+
"stability": "experimental",
|
|
2780
|
+
"summary": "The GitHub Actions environment used for the release."
|
|
2781
|
+
},
|
|
2782
|
+
"immutable": true,
|
|
2783
|
+
"locationInModule": {
|
|
2784
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2785
|
+
"line": 644
|
|
2786
|
+
},
|
|
2787
|
+
"name": "releaseEnvironment",
|
|
2788
|
+
"optional": true,
|
|
2789
|
+
"type": {
|
|
2790
|
+
"primitive": "string"
|
|
2791
|
+
}
|
|
2792
|
+
},
|
|
2793
|
+
{
|
|
2794
|
+
"abstract": true,
|
|
2795
|
+
"docs": {
|
|
2796
|
+
"default": "true",
|
|
2797
|
+
"deprecated": "Use `releaseTrigger: ReleaseTrigger.continuous()` instead",
|
|
2798
|
+
"stability": "deprecated",
|
|
2799
|
+
"summary": "Automatically release new versions every commit to one of branches in `releaseBranches`."
|
|
2800
|
+
},
|
|
2801
|
+
"immutable": true,
|
|
2802
|
+
"locationInModule": {
|
|
2803
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2804
|
+
"line": 633
|
|
2805
|
+
},
|
|
2806
|
+
"name": "releaseEveryCommit",
|
|
2807
|
+
"optional": true,
|
|
2808
|
+
"type": {
|
|
2809
|
+
"primitive": "boolean"
|
|
2810
|
+
}
|
|
2811
|
+
},
|
|
2812
|
+
{
|
|
2813
|
+
"abstract": true,
|
|
2814
|
+
"docs": {
|
|
2815
|
+
"default": "false",
|
|
2816
|
+
"stability": "experimental",
|
|
2817
|
+
"summary": "Create a github issue on every failed publishing task."
|
|
2818
|
+
},
|
|
2819
|
+
"immutable": true,
|
|
2820
|
+
"locationInModule": {
|
|
2821
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2822
|
+
"line": 626
|
|
2823
|
+
},
|
|
2824
|
+
"name": "releaseFailureIssue",
|
|
2825
|
+
"optional": true,
|
|
2826
|
+
"type": {
|
|
2827
|
+
"primitive": "boolean"
|
|
2828
|
+
}
|
|
2829
|
+
},
|
|
2830
|
+
{
|
|
2831
|
+
"abstract": true,
|
|
2832
|
+
"docs": {
|
|
2833
|
+
"default": "\"failed-release\"",
|
|
2834
|
+
"remarks": "Only applies if `releaseFailureIssue` is true.",
|
|
2835
|
+
"stability": "experimental",
|
|
2836
|
+
"summary": "The label to apply to issues indicating publish failures."
|
|
2837
|
+
},
|
|
2838
|
+
"immutable": true,
|
|
2839
|
+
"locationInModule": {
|
|
2840
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2841
|
+
"line": 620
|
|
2842
|
+
},
|
|
2843
|
+
"name": "releaseFailureIssueLabel",
|
|
2844
|
+
"optional": true,
|
|
2845
|
+
"type": {
|
|
2846
|
+
"primitive": "string"
|
|
2847
|
+
}
|
|
2848
|
+
},
|
|
2849
|
+
{
|
|
2850
|
+
"abstract": true,
|
|
2851
|
+
"docs": {
|
|
2852
|
+
"default": "- no scheduled releases",
|
|
2853
|
+
"deprecated": "Use `releaseTrigger: ReleaseTrigger.scheduled()` instead",
|
|
2854
|
+
"stability": "deprecated",
|
|
2855
|
+
"summary": "CRON schedule to trigger new releases."
|
|
2856
|
+
},
|
|
2857
|
+
"immutable": true,
|
|
2858
|
+
"locationInModule": {
|
|
2859
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2860
|
+
"line": 613
|
|
2861
|
+
},
|
|
2862
|
+
"name": "releaseSchedule",
|
|
2863
|
+
"optional": true,
|
|
2864
|
+
"type": {
|
|
2865
|
+
"primitive": "string"
|
|
2866
|
+
}
|
|
2867
|
+
},
|
|
2868
|
+
{
|
|
2869
|
+
"abstract": true,
|
|
2870
|
+
"docs": {
|
|
2871
|
+
"default": "\"v\"",
|
|
2872
|
+
"remarks": "Useful if you are releasing on multiple branches with overlapping version numbers.\nNote: this prefix is used to detect the latest tagged version\nwhen bumping, so if you change this on a project with an existing version\nhistory, you may need to manually tag your latest release\nwith the new prefix.",
|
|
2873
|
+
"stability": "experimental",
|
|
2874
|
+
"summary": "Automatically add the given prefix to release tags."
|
|
2875
|
+
},
|
|
2876
|
+
"immutable": true,
|
|
2877
|
+
"locationInModule": {
|
|
2878
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2879
|
+
"line": 606
|
|
2880
|
+
},
|
|
2881
|
+
"name": "releaseTagPrefix",
|
|
2882
|
+
"optional": true,
|
|
2883
|
+
"type": {
|
|
2884
|
+
"primitive": "string"
|
|
2885
|
+
}
|
|
2886
|
+
},
|
|
2887
|
+
{
|
|
2888
|
+
"abstract": true,
|
|
2889
|
+
"docs": {
|
|
2890
|
+
"default": "false",
|
|
2891
|
+
"stability": "experimental",
|
|
2892
|
+
"summary": "Automatically release to npm when new versions are introduced."
|
|
2893
|
+
},
|
|
2894
|
+
"immutable": true,
|
|
2895
|
+
"locationInModule": {
|
|
2896
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2897
|
+
"line": 319
|
|
2898
|
+
},
|
|
2899
|
+
"name": "releaseToNpm",
|
|
2900
|
+
"optional": true,
|
|
2901
|
+
"type": {
|
|
2902
|
+
"primitive": "boolean"
|
|
2903
|
+
}
|
|
2904
|
+
},
|
|
2905
|
+
{
|
|
2906
|
+
"abstract": true,
|
|
2907
|
+
"docs": {
|
|
2908
|
+
"default": "- Continuous releases (`ReleaseTrigger.continuous()`)",
|
|
2909
|
+
"stability": "experimental",
|
|
2910
|
+
"summary": "The release trigger to use."
|
|
2911
|
+
},
|
|
2912
|
+
"immutable": true,
|
|
2913
|
+
"locationInModule": {
|
|
2914
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2915
|
+
"line": 596
|
|
2916
|
+
},
|
|
2917
|
+
"name": "releaseTrigger",
|
|
2918
|
+
"optional": true,
|
|
2919
|
+
"type": {
|
|
2920
|
+
"fqn": "projen.release.ReleaseTrigger"
|
|
2921
|
+
}
|
|
2922
|
+
},
|
|
2923
|
+
{
|
|
2924
|
+
"abstract": true,
|
|
2925
|
+
"docs": {
|
|
2926
|
+
"default": "- true if not a subproject",
|
|
2927
|
+
"deprecated": "see `release`.",
|
|
2928
|
+
"stability": "deprecated",
|
|
2929
|
+
"summary": "DEPRECATED: renamed to `release`."
|
|
2930
|
+
},
|
|
2931
|
+
"immutable": true,
|
|
2932
|
+
"locationInModule": {
|
|
2933
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2934
|
+
"line": 313
|
|
2935
|
+
},
|
|
2936
|
+
"name": "releaseWorkflow",
|
|
2937
|
+
"optional": true,
|
|
2938
|
+
"type": {
|
|
2939
|
+
"primitive": "boolean"
|
|
2940
|
+
}
|
|
2941
|
+
},
|
|
2942
|
+
{
|
|
2943
|
+
"abstract": true,
|
|
2944
|
+
"docs": {
|
|
2945
|
+
"default": "{}",
|
|
2946
|
+
"stability": "experimental",
|
|
2947
|
+
"summary": "Build environment variables for release workflows."
|
|
2948
|
+
},
|
|
2949
|
+
"immutable": true,
|
|
2950
|
+
"locationInModule": {
|
|
2951
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2952
|
+
"line": 590
|
|
2953
|
+
},
|
|
2954
|
+
"name": "releaseWorkflowEnv",
|
|
2955
|
+
"optional": true,
|
|
2956
|
+
"type": {
|
|
2957
|
+
"collection": {
|
|
2958
|
+
"elementtype": {
|
|
2959
|
+
"primitive": "string"
|
|
2960
|
+
},
|
|
2961
|
+
"kind": "map"
|
|
2962
|
+
}
|
|
2963
|
+
}
|
|
2964
|
+
},
|
|
2965
|
+
{
|
|
2966
|
+
"abstract": true,
|
|
2967
|
+
"docs": {
|
|
2968
|
+
"default": "\"release\"",
|
|
2969
|
+
"stability": "experimental",
|
|
2970
|
+
"summary": "The name of the default release workflow."
|
|
2971
|
+
},
|
|
2972
|
+
"immutable": true,
|
|
2973
|
+
"locationInModule": {
|
|
2974
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2975
|
+
"line": 584
|
|
2976
|
+
},
|
|
2977
|
+
"name": "releaseWorkflowName",
|
|
2978
|
+
"optional": true,
|
|
2979
|
+
"type": {
|
|
2980
|
+
"primitive": "string"
|
|
2981
|
+
}
|
|
2982
|
+
},
|
|
2983
|
+
{
|
|
2984
|
+
"abstract": true,
|
|
2985
|
+
"docs": {
|
|
2986
|
+
"stability": "experimental",
|
|
2987
|
+
"summary": "A set of workflow steps to execute in order to setup the workflow container."
|
|
2988
|
+
},
|
|
2989
|
+
"immutable": true,
|
|
2990
|
+
"locationInModule": {
|
|
2991
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
2992
|
+
"line": 578
|
|
2993
|
+
},
|
|
2994
|
+
"name": "releaseWorkflowSetupSteps",
|
|
2995
|
+
"optional": true,
|
|
2996
|
+
"type": {
|
|
2997
|
+
"collection": {
|
|
2998
|
+
"elementtype": {
|
|
2999
|
+
"fqn": "projen.github.workflows.JobStep"
|
|
3000
|
+
},
|
|
3001
|
+
"kind": "array"
|
|
3002
|
+
}
|
|
3003
|
+
}
|
|
3004
|
+
},
|
|
3005
|
+
{
|
|
3006
|
+
"abstract": true,
|
|
3007
|
+
"docs": {
|
|
3008
|
+
"default": "false",
|
|
3009
|
+
"stability": "experimental",
|
|
3010
|
+
"summary": "Use renovatebot to handle dependency upgrades."
|
|
3011
|
+
},
|
|
3012
|
+
"immutable": true,
|
|
3013
|
+
"locationInModule": {
|
|
3014
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3015
|
+
"line": 1181
|
|
3016
|
+
},
|
|
3017
|
+
"name": "renovatebot",
|
|
3018
|
+
"optional": true,
|
|
3019
|
+
"type": {
|
|
3020
|
+
"primitive": "boolean"
|
|
3021
|
+
}
|
|
3022
|
+
},
|
|
3023
|
+
{
|
|
3024
|
+
"abstract": true,
|
|
3025
|
+
"docs": {
|
|
3026
|
+
"default": "- default options",
|
|
3027
|
+
"stability": "experimental",
|
|
3028
|
+
"summary": "Options for renovatebot."
|
|
3029
|
+
},
|
|
3030
|
+
"immutable": true,
|
|
3031
|
+
"locationInModule": {
|
|
3032
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3033
|
+
"line": 1175
|
|
3034
|
+
},
|
|
3035
|
+
"name": "renovatebotOptions",
|
|
3036
|
+
"optional": true,
|
|
3037
|
+
"type": {
|
|
3038
|
+
"fqn": "projen.RenovatebotOptions"
|
|
3039
|
+
}
|
|
3040
|
+
},
|
|
3041
|
+
{
|
|
3042
|
+
"abstract": true,
|
|
3043
|
+
"docs": {
|
|
3044
|
+
"remarks": "See https://classic.yarnpkg.com/en/docs/package-json/#toc-repository",
|
|
3045
|
+
"stability": "experimental",
|
|
3046
|
+
"summary": "The repository is the location where the actual code for your package lives."
|
|
3047
|
+
},
|
|
3048
|
+
"immutable": true,
|
|
3049
|
+
"locationInModule": {
|
|
3050
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3051
|
+
"line": 790
|
|
3052
|
+
},
|
|
3053
|
+
"name": "repository",
|
|
3054
|
+
"optional": true,
|
|
3055
|
+
"type": {
|
|
3056
|
+
"primitive": "string"
|
|
3057
|
+
}
|
|
3058
|
+
},
|
|
3059
|
+
{
|
|
3060
|
+
"abstract": true,
|
|
3061
|
+
"docs": {
|
|
3062
|
+
"stability": "experimental",
|
|
3063
|
+
"summary": "If the package.json for your package is not in the root directory (for example if it is part of a monorepo), you can specify the directory in which it lives."
|
|
3064
|
+
},
|
|
3065
|
+
"immutable": true,
|
|
3066
|
+
"locationInModule": {
|
|
3067
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3068
|
+
"line": 784
|
|
3069
|
+
},
|
|
3070
|
+
"name": "repositoryDirectory",
|
|
3071
|
+
"optional": true,
|
|
3072
|
+
"type": {
|
|
3073
|
+
"primitive": "string"
|
|
3074
|
+
}
|
|
3075
|
+
},
|
|
3076
|
+
{
|
|
3077
|
+
"abstract": true,
|
|
3078
|
+
"docs": {
|
|
3079
|
+
"default": "ApprovalLevel.BROADENING",
|
|
3080
|
+
"stability": "experimental",
|
|
3081
|
+
"summary": "To protect you against unintended changes that affect your security posture, the AWS CDK Toolkit prompts you to approve security-related changes before deploying them."
|
|
3082
|
+
},
|
|
3083
|
+
"immutable": true,
|
|
3084
|
+
"locationInModule": {
|
|
3085
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3086
|
+
"line": 138
|
|
3087
|
+
},
|
|
3088
|
+
"name": "requireApproval",
|
|
3089
|
+
"optional": true,
|
|
3090
|
+
"type": {
|
|
3091
|
+
"fqn": "projen.awscdk.ApprovalLevel"
|
|
3092
|
+
}
|
|
3093
|
+
},
|
|
3094
|
+
{
|
|
3095
|
+
"abstract": true,
|
|
3096
|
+
"docs": {
|
|
3097
|
+
"default": "true",
|
|
3098
|
+
"stability": "experimental",
|
|
3099
|
+
"summary": "Generate one-time sample in `src/` and `test/` if there are no files there."
|
|
3100
|
+
},
|
|
3101
|
+
"immutable": true,
|
|
3102
|
+
"locationInModule": {
|
|
3103
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3104
|
+
"line": 221
|
|
3105
|
+
},
|
|
3106
|
+
"name": "sampleCode",
|
|
3107
|
+
"optional": true,
|
|
3108
|
+
"type": {
|
|
3109
|
+
"primitive": "boolean"
|
|
3110
|
+
}
|
|
3111
|
+
},
|
|
3112
|
+
{
|
|
3113
|
+
"abstract": true,
|
|
3114
|
+
"docs": {
|
|
3115
|
+
"default": "- fetch all scoped packages from the public npm registry",
|
|
3116
|
+
"stability": "experimental",
|
|
3117
|
+
"summary": "Options for privately hosted scoped packages."
|
|
3118
|
+
},
|
|
3119
|
+
"immutable": true,
|
|
3120
|
+
"locationInModule": {
|
|
3121
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3122
|
+
"line": 779
|
|
3123
|
+
},
|
|
3124
|
+
"name": "scopedPackagesOptions",
|
|
3125
|
+
"optional": true,
|
|
3126
|
+
"type": {
|
|
3127
|
+
"collection": {
|
|
3128
|
+
"elementtype": {
|
|
3129
|
+
"fqn": "projen.javascript.ScopedPackagesOptions"
|
|
3130
|
+
},
|
|
3131
|
+
"kind": "array"
|
|
3132
|
+
}
|
|
3133
|
+
}
|
|
3134
|
+
},
|
|
3135
|
+
{
|
|
3136
|
+
"abstract": true,
|
|
3137
|
+
"docs": {
|
|
3138
|
+
"default": "{}",
|
|
3139
|
+
"deprecated": "use `project.addTask()` or `package.setScript()`",
|
|
3140
|
+
"remarks": "If a script has the same name as a standard script,\nthe standard script will be overwritten.\nAlso adds the script as a task.",
|
|
3141
|
+
"stability": "deprecated",
|
|
3142
|
+
"summary": "npm scripts to include."
|
|
3143
|
+
},
|
|
3144
|
+
"immutable": true,
|
|
3145
|
+
"locationInModule": {
|
|
3146
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3147
|
+
"line": 773
|
|
3148
|
+
},
|
|
3149
|
+
"name": "scripts",
|
|
3150
|
+
"optional": true,
|
|
3151
|
+
"type": {
|
|
3152
|
+
"collection": {
|
|
3153
|
+
"elementtype": {
|
|
3154
|
+
"primitive": "string"
|
|
3155
|
+
},
|
|
3156
|
+
"kind": "map"
|
|
3157
|
+
}
|
|
3158
|
+
}
|
|
3159
|
+
},
|
|
3160
|
+
{
|
|
3161
|
+
"abstract": true,
|
|
3162
|
+
"docs": {
|
|
3163
|
+
"default": "\"src\"",
|
|
3164
|
+
"stability": "experimental",
|
|
3165
|
+
"summary": "Typescript sources directory."
|
|
3166
|
+
},
|
|
3167
|
+
"immutable": true,
|
|
3168
|
+
"locationInModule": {
|
|
3169
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3170
|
+
"line": 215
|
|
3171
|
+
},
|
|
3172
|
+
"name": "srcdir",
|
|
3173
|
+
"optional": true,
|
|
3174
|
+
"type": {
|
|
3175
|
+
"primitive": "string"
|
|
3176
|
+
}
|
|
3177
|
+
},
|
|
3178
|
+
{
|
|
3179
|
+
"abstract": true,
|
|
3180
|
+
"docs": {
|
|
3181
|
+
"stability": "experimental",
|
|
3182
|
+
"summary": "Package's Stability."
|
|
3183
|
+
},
|
|
3184
|
+
"immutable": true,
|
|
3185
|
+
"locationInModule": {
|
|
3186
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3187
|
+
"line": 763
|
|
3188
|
+
},
|
|
3189
|
+
"name": "stability",
|
|
3190
|
+
"optional": true,
|
|
3191
|
+
"type": {
|
|
3192
|
+
"primitive": "string"
|
|
3193
|
+
}
|
|
3194
|
+
},
|
|
3195
|
+
{
|
|
3196
|
+
"abstract": true,
|
|
3197
|
+
"docs": {
|
|
3198
|
+
"default": "false",
|
|
3199
|
+
"remarks": "See `staleOptions` for options.",
|
|
3200
|
+
"stability": "experimental",
|
|
3201
|
+
"summary": "Auto-close of stale issues and pull request."
|
|
3202
|
+
},
|
|
3203
|
+
"immutable": true,
|
|
3204
|
+
"locationInModule": {
|
|
3205
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3206
|
+
"line": 1074
|
|
3207
|
+
},
|
|
3208
|
+
"name": "stale",
|
|
3209
|
+
"optional": true,
|
|
3210
|
+
"type": {
|
|
3211
|
+
"primitive": "boolean"
|
|
3212
|
+
}
|
|
3213
|
+
},
|
|
3214
|
+
{
|
|
3215
|
+
"abstract": true,
|
|
3216
|
+
"docs": {
|
|
3217
|
+
"default": "- see defaults in `StaleOptions`",
|
|
3218
|
+
"remarks": "To disable set `stale` to `false`.",
|
|
3219
|
+
"stability": "experimental",
|
|
3220
|
+
"summary": "Auto-close stale issues and pull requests."
|
|
3221
|
+
},
|
|
3222
|
+
"immutable": true,
|
|
3223
|
+
"locationInModule": {
|
|
3224
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3225
|
+
"line": 1067
|
|
3226
|
+
},
|
|
3227
|
+
"name": "staleOptions",
|
|
3228
|
+
"optional": true,
|
|
3229
|
+
"type": {
|
|
3230
|
+
"fqn": "projen.github.StaleOptions"
|
|
3231
|
+
}
|
|
3232
|
+
},
|
|
3233
|
+
{
|
|
3234
|
+
"abstract": true,
|
|
3235
|
+
"docs": {
|
|
3236
|
+
"default": "\"test\"",
|
|
3237
|
+
"remarks": "Tests files should be named `xxx.test.ts`.\nIf this directory is under `srcdir` (e.g. `src/test`, `src/__tests__`),\nthen tests are going to be compiled into `lib/` and executed as javascript.\nIf the test directory is outside of `src`, then we configure jest to\ncompile the code in-memory.",
|
|
3238
|
+
"stability": "experimental",
|
|
3239
|
+
"summary": "Jest tests directory."
|
|
3240
|
+
},
|
|
3241
|
+
"immutable": true,
|
|
3242
|
+
"locationInModule": {
|
|
3243
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3244
|
+
"line": 209
|
|
3245
|
+
},
|
|
3246
|
+
"name": "testdir",
|
|
3247
|
+
"optional": true,
|
|
3248
|
+
"type": {
|
|
3249
|
+
"primitive": "string"
|
|
3250
|
+
}
|
|
3251
|
+
},
|
|
3252
|
+
{
|
|
3253
|
+
"abstract": true,
|
|
3254
|
+
"docs": {
|
|
3255
|
+
"default": "- default options",
|
|
3256
|
+
"stability": "experimental",
|
|
3257
|
+
"summary": "Custom TSConfig."
|
|
3258
|
+
},
|
|
3259
|
+
"immutable": true,
|
|
3260
|
+
"locationInModule": {
|
|
3261
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3262
|
+
"line": 199
|
|
3263
|
+
},
|
|
3264
|
+
"name": "tsconfig",
|
|
3265
|
+
"optional": true,
|
|
3266
|
+
"type": {
|
|
3267
|
+
"fqn": "projen.javascript.TypescriptConfigOptions"
|
|
3268
|
+
}
|
|
3269
|
+
},
|
|
3270
|
+
{
|
|
3271
|
+
"abstract": true,
|
|
3272
|
+
"docs": {
|
|
3273
|
+
"default": "- use the production tsconfig options",
|
|
3274
|
+
"stability": "experimental",
|
|
3275
|
+
"summary": "Custom tsconfig options for the development tsconfig.json file (used for testing)."
|
|
3276
|
+
},
|
|
3277
|
+
"immutable": true,
|
|
3278
|
+
"locationInModule": {
|
|
3279
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3280
|
+
"line": 193
|
|
3281
|
+
},
|
|
3282
|
+
"name": "tsconfigDev",
|
|
3283
|
+
"optional": true,
|
|
3284
|
+
"type": {
|
|
3285
|
+
"fqn": "projen.javascript.TypescriptConfigOptions"
|
|
3286
|
+
}
|
|
3287
|
+
},
|
|
3288
|
+
{
|
|
3289
|
+
"abstract": true,
|
|
3290
|
+
"docs": {
|
|
3291
|
+
"default": "\"tsconfig.dev.json\"",
|
|
3292
|
+
"stability": "experimental",
|
|
3293
|
+
"summary": "The name of the development tsconfig.json file."
|
|
3294
|
+
},
|
|
3295
|
+
"immutable": true,
|
|
3296
|
+
"locationInModule": {
|
|
3297
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3298
|
+
"line": 187
|
|
3299
|
+
},
|
|
3300
|
+
"name": "tsconfigDevFile",
|
|
3301
|
+
"optional": true,
|
|
3302
|
+
"type": {
|
|
3303
|
+
"primitive": "string"
|
|
3304
|
+
}
|
|
3305
|
+
},
|
|
3306
|
+
{
|
|
3307
|
+
"abstract": true,
|
|
3308
|
+
"docs": {
|
|
3309
|
+
"stability": "experimental",
|
|
3310
|
+
"summary": "Options for ts-jest."
|
|
3311
|
+
},
|
|
3312
|
+
"immutable": true,
|
|
3313
|
+
"locationInModule": {
|
|
3314
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3315
|
+
"line": 181
|
|
3316
|
+
},
|
|
3317
|
+
"name": "tsJestOptions",
|
|
3318
|
+
"optional": true,
|
|
3319
|
+
"type": {
|
|
3320
|
+
"fqn": "projen.typescript.TsJestOptions"
|
|
3321
|
+
}
|
|
3322
|
+
},
|
|
3323
|
+
{
|
|
3324
|
+
"abstract": true,
|
|
3325
|
+
"docs": {
|
|
3326
|
+
"default": "\"latest\"",
|
|
3327
|
+
"remarks": "NOTE: Typescript is not semantically versioned and should remain on the\nsame minor, so we recommend using a `~` dependency (e.g. `~1.2.3`).",
|
|
3328
|
+
"stability": "experimental",
|
|
3329
|
+
"summary": "TypeScript version to use."
|
|
3330
|
+
},
|
|
3331
|
+
"immutable": true,
|
|
3332
|
+
"locationInModule": {
|
|
3333
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3334
|
+
"line": 176
|
|
3335
|
+
},
|
|
3336
|
+
"name": "typescriptVersion",
|
|
3337
|
+
"optional": true,
|
|
3338
|
+
"type": {
|
|
3339
|
+
"primitive": "string"
|
|
3340
|
+
}
|
|
3341
|
+
},
|
|
3342
|
+
{
|
|
3343
|
+
"abstract": true,
|
|
3344
|
+
"docs": {
|
|
3345
|
+
"default": "- standard configuration applicable for GitHub repositories",
|
|
3346
|
+
"remarks": "Given values either append to default configuration or overwrite values in it.",
|
|
3347
|
+
"stability": "experimental",
|
|
3348
|
+
"summary": "Custom configuration used when creating changelog with commit-and-tag-version package."
|
|
3349
|
+
},
|
|
3350
|
+
"immutable": true,
|
|
3351
|
+
"locationInModule": {
|
|
3352
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3353
|
+
"line": 573
|
|
3354
|
+
},
|
|
3355
|
+
"name": "versionrcOptions",
|
|
3356
|
+
"optional": true,
|
|
3357
|
+
"type": {
|
|
3358
|
+
"collection": {
|
|
3359
|
+
"elementtype": {
|
|
3360
|
+
"primitive": "any"
|
|
3361
|
+
},
|
|
3362
|
+
"kind": "map"
|
|
3363
|
+
}
|
|
3364
|
+
}
|
|
3365
|
+
},
|
|
3366
|
+
{
|
|
3367
|
+
"abstract": true,
|
|
3368
|
+
"docs": {
|
|
3369
|
+
"default": "true",
|
|
3370
|
+
"remarks": "Enabled by default for root projects. Disabled for non-root projects.",
|
|
3371
|
+
"stability": "experimental",
|
|
3372
|
+
"summary": "Enable VSCode integration."
|
|
3373
|
+
},
|
|
3374
|
+
"immutable": true,
|
|
3375
|
+
"locationInModule": {
|
|
3376
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3377
|
+
"line": 1060
|
|
3378
|
+
},
|
|
3379
|
+
"name": "vscode",
|
|
3380
|
+
"optional": true,
|
|
3381
|
+
"type": {
|
|
3382
|
+
"primitive": "boolean"
|
|
3383
|
+
}
|
|
3384
|
+
},
|
|
3385
|
+
{
|
|
3386
|
+
"abstract": true,
|
|
3387
|
+
"docs": {
|
|
3388
|
+
"default": "[]",
|
|
3389
|
+
"stability": "experimental",
|
|
3390
|
+
"summary": "Glob patterns to exclude from `cdk watch`."
|
|
3391
|
+
},
|
|
3392
|
+
"immutable": true,
|
|
3393
|
+
"locationInModule": {
|
|
3394
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3395
|
+
"line": 132
|
|
3396
|
+
},
|
|
3397
|
+
"name": "watchExcludes",
|
|
3398
|
+
"optional": true,
|
|
3399
|
+
"type": {
|
|
3400
|
+
"collection": {
|
|
3401
|
+
"elementtype": {
|
|
3402
|
+
"primitive": "string"
|
|
3403
|
+
},
|
|
3404
|
+
"kind": "array"
|
|
3405
|
+
}
|
|
3406
|
+
}
|
|
3407
|
+
},
|
|
3408
|
+
{
|
|
3409
|
+
"abstract": true,
|
|
3410
|
+
"docs": {
|
|
3411
|
+
"default": "[]",
|
|
3412
|
+
"stability": "experimental",
|
|
3413
|
+
"summary": "Glob patterns to include in `cdk watch`."
|
|
3414
|
+
},
|
|
3415
|
+
"immutable": true,
|
|
3416
|
+
"locationInModule": {
|
|
3417
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3418
|
+
"line": 126
|
|
3419
|
+
},
|
|
3420
|
+
"name": "watchIncludes",
|
|
3421
|
+
"optional": true,
|
|
3422
|
+
"type": {
|
|
3423
|
+
"collection": {
|
|
3424
|
+
"elementtype": {
|
|
3425
|
+
"primitive": "string"
|
|
3426
|
+
},
|
|
3427
|
+
"kind": "array"
|
|
3428
|
+
}
|
|
3429
|
+
}
|
|
3430
|
+
},
|
|
3431
|
+
{
|
|
3432
|
+
"abstract": true,
|
|
3433
|
+
"docs": {
|
|
3434
|
+
"default": "\"yarn install --frozen-lockfile && yarn projen\"",
|
|
3435
|
+
"stability": "experimental",
|
|
3436
|
+
"summary": "Workflow steps to use in order to bootstrap this repo."
|
|
3437
|
+
},
|
|
3438
|
+
"immutable": true,
|
|
3439
|
+
"locationInModule": {
|
|
3440
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3441
|
+
"line": 306
|
|
3442
|
+
},
|
|
3443
|
+
"name": "workflowBootstrapSteps",
|
|
3444
|
+
"optional": true,
|
|
3445
|
+
"type": {
|
|
3446
|
+
"collection": {
|
|
3447
|
+
"elementtype": {
|
|
3448
|
+
"fqn": "projen.github.workflows.JobStep"
|
|
3449
|
+
},
|
|
3450
|
+
"kind": "array"
|
|
3451
|
+
}
|
|
3452
|
+
}
|
|
3453
|
+
},
|
|
3454
|
+
{
|
|
3455
|
+
"abstract": true,
|
|
3456
|
+
"docs": {
|
|
3457
|
+
"default": "- default image",
|
|
3458
|
+
"stability": "experimental",
|
|
3459
|
+
"summary": "Container image to use for GitHub workflows."
|
|
3460
|
+
},
|
|
3461
|
+
"immutable": true,
|
|
3462
|
+
"locationInModule": {
|
|
3463
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3464
|
+
"line": 566
|
|
3465
|
+
},
|
|
3466
|
+
"name": "workflowContainerImage",
|
|
3467
|
+
"optional": true,
|
|
3468
|
+
"type": {
|
|
3469
|
+
"primitive": "string"
|
|
3470
|
+
}
|
|
3471
|
+
},
|
|
3472
|
+
{
|
|
3473
|
+
"abstract": true,
|
|
3474
|
+
"docs": {
|
|
3475
|
+
"default": "- default GitHub Actions user",
|
|
3476
|
+
"stability": "experimental",
|
|
3477
|
+
"summary": "The git identity to use in workflows."
|
|
3478
|
+
},
|
|
3479
|
+
"immutable": true,
|
|
3480
|
+
"locationInModule": {
|
|
3481
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3482
|
+
"line": 300
|
|
3483
|
+
},
|
|
3484
|
+
"name": "workflowGitIdentity",
|
|
3485
|
+
"optional": true,
|
|
3486
|
+
"type": {
|
|
3487
|
+
"fqn": "projen.github.GitIdentity"
|
|
3488
|
+
}
|
|
3489
|
+
},
|
|
3490
|
+
{
|
|
3491
|
+
"abstract": true,
|
|
3492
|
+
"docs": {
|
|
3493
|
+
"default": "- `minNodeVersion` if set, otherwise `lts/*`.",
|
|
3494
|
+
"remarks": "Always use this option if your GitHub Actions workflows require a specific to run.",
|
|
3495
|
+
"stability": "experimental",
|
|
3496
|
+
"summary": "The node version used in GitHub Actions workflows."
|
|
3497
|
+
},
|
|
3498
|
+
"immutable": true,
|
|
3499
|
+
"locationInModule": {
|
|
3500
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3501
|
+
"line": 294
|
|
3502
|
+
},
|
|
3503
|
+
"name": "workflowNodeVersion",
|
|
3504
|
+
"optional": true,
|
|
3505
|
+
"type": {
|
|
3506
|
+
"primitive": "string"
|
|
3507
|
+
}
|
|
3508
|
+
},
|
|
3509
|
+
{
|
|
3510
|
+
"abstract": true,
|
|
3511
|
+
"docs": {
|
|
3512
|
+
"default": "false",
|
|
3513
|
+
"stability": "experimental",
|
|
3514
|
+
"summary": "Enable Node.js package cache in GitHub workflows."
|
|
3515
|
+
},
|
|
3516
|
+
"immutable": true,
|
|
3517
|
+
"locationInModule": {
|
|
3518
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3519
|
+
"line": 287
|
|
3520
|
+
},
|
|
3521
|
+
"name": "workflowPackageCache",
|
|
3522
|
+
"optional": true,
|
|
3523
|
+
"type": {
|
|
3524
|
+
"primitive": "boolean"
|
|
3525
|
+
}
|
|
3526
|
+
},
|
|
3527
|
+
{
|
|
3528
|
+
"abstract": true,
|
|
3529
|
+
"docs": {
|
|
3530
|
+
"custom": {
|
|
3531
|
+
"description": "Defines a target Runner by labels",
|
|
3532
|
+
"throws": "{Error} if both `runsOn` and `runsOnGroup` are specified"
|
|
3533
|
+
},
|
|
3534
|
+
"default": "[\"ubuntu-latest\"]",
|
|
3535
|
+
"stability": "experimental",
|
|
3536
|
+
"summary": "Github Runner selection labels."
|
|
3537
|
+
},
|
|
3538
|
+
"immutable": true,
|
|
3539
|
+
"locationInModule": {
|
|
3540
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3541
|
+
"line": 560
|
|
3542
|
+
},
|
|
3543
|
+
"name": "workflowRunsOn",
|
|
3544
|
+
"optional": true,
|
|
3545
|
+
"type": {
|
|
3546
|
+
"collection": {
|
|
3547
|
+
"elementtype": {
|
|
3548
|
+
"primitive": "string"
|
|
3549
|
+
},
|
|
3550
|
+
"kind": "array"
|
|
3551
|
+
}
|
|
3552
|
+
}
|
|
3553
|
+
},
|
|
3554
|
+
{
|
|
3555
|
+
"abstract": true,
|
|
3556
|
+
"docs": {
|
|
3557
|
+
"custom": {
|
|
3558
|
+
"description": "Defines a target Runner Group by name and/or labels",
|
|
3559
|
+
"throws": "{Error} if both `runsOn` and `runsOnGroup` are specified"
|
|
3560
|
+
},
|
|
3561
|
+
"stability": "experimental",
|
|
3562
|
+
"summary": "Github Runner Group selection options."
|
|
3563
|
+
},
|
|
3564
|
+
"immutable": true,
|
|
3565
|
+
"locationInModule": {
|
|
3566
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3567
|
+
"line": 552
|
|
3568
|
+
},
|
|
3569
|
+
"name": "workflowRunsOnGroup",
|
|
3570
|
+
"optional": true,
|
|
3571
|
+
"type": {
|
|
3572
|
+
"fqn": "projen.GroupRunnerOptions"
|
|
3573
|
+
}
|
|
3574
|
+
},
|
|
3575
|
+
{
|
|
3576
|
+
"abstract": true,
|
|
3577
|
+
"docs": {
|
|
3578
|
+
"default": "- Yarn Berry v4 with all default options",
|
|
3579
|
+
"stability": "experimental",
|
|
3580
|
+
"summary": "Options for Yarn Berry."
|
|
3581
|
+
},
|
|
3582
|
+
"immutable": true,
|
|
3583
|
+
"locationInModule": {
|
|
3584
|
+
"filename": "src/cdk-project-options.generated.ts",
|
|
3585
|
+
"line": 758
|
|
3586
|
+
},
|
|
3587
|
+
"name": "yarnBerryOptions",
|
|
3588
|
+
"optional": true,
|
|
3589
|
+
"type": {
|
|
3590
|
+
"fqn": "projen.javascript.YarnBerryOptions"
|
|
3591
|
+
}
|
|
3592
|
+
}
|
|
3593
|
+
],
|
|
3594
|
+
"symbolId": "src/cdk-project-options.generated:RocketleapCdkProjectOptions"
|
|
3595
|
+
},
|
|
3596
|
+
"@rocketleap/rocketleap-projen.RocketleapPlatformCdkProject": {
|
|
3597
|
+
"assembly": "@rocketleap/rocketleap-projen",
|
|
3598
|
+
"base": "projen.awscdk.AwsCdkTypeScriptApp",
|
|
3599
|
+
"docs": {
|
|
3600
|
+
"remarks": "This is for platform infrastructure code (e.g., root-cdk, vpc-cdk, iam-cdk).\nIncludes the Norberhuis Onderneming B.V. license.",
|
|
3601
|
+
"stability": "stable",
|
|
3602
|
+
"summary": "Projen project for Rocketleap Platform CDK projects."
|
|
3603
|
+
},
|
|
3604
|
+
"fqn": "@rocketleap/rocketleap-projen.RocketleapPlatformCdkProject",
|
|
3605
|
+
"initializer": {
|
|
3606
|
+
"docs": {
|
|
3607
|
+
"stability": "stable"
|
|
3608
|
+
},
|
|
3609
|
+
"locationInModule": {
|
|
3610
|
+
"filename": "src/cdk-project.ts",
|
|
3611
|
+
"line": 116
|
|
3612
|
+
},
|
|
3613
|
+
"parameters": [
|
|
3614
|
+
{
|
|
3615
|
+
"name": "options",
|
|
3616
|
+
"type": {
|
|
3617
|
+
"fqn": "@rocketleap/rocketleap-projen.RocketleapCdkProjectOptions"
|
|
3618
|
+
}
|
|
3619
|
+
}
|
|
3620
|
+
]
|
|
3621
|
+
},
|
|
3622
|
+
"kind": "class",
|
|
3623
|
+
"locationInModule": {
|
|
3624
|
+
"filename": "src/cdk-project.ts",
|
|
3625
|
+
"line": 115
|
|
3626
|
+
},
|
|
3627
|
+
"methods": [
|
|
3628
|
+
{
|
|
3629
|
+
"docs": {
|
|
3630
|
+
"stability": "stable"
|
|
3631
|
+
},
|
|
3632
|
+
"locationInModule": {
|
|
3633
|
+
"filename": "src/cdk-project.ts",
|
|
3634
|
+
"line": 89
|
|
3635
|
+
},
|
|
3636
|
+
"name": "generateSampleProjenrc",
|
|
3637
|
+
"parameters": [
|
|
3638
|
+
{
|
|
3639
|
+
"name": "projectClass",
|
|
3640
|
+
"type": {
|
|
3641
|
+
"primitive": "string"
|
|
3642
|
+
}
|
|
3643
|
+
}
|
|
3644
|
+
],
|
|
3645
|
+
"protected": true
|
|
3646
|
+
}
|
|
3647
|
+
],
|
|
3648
|
+
"name": "RocketleapPlatformCdkProject",
|
|
3649
|
+
"properties": [
|
|
3650
|
+
{
|
|
3651
|
+
"docs": {
|
|
3652
|
+
"stability": "stable"
|
|
3653
|
+
},
|
|
3654
|
+
"immutable": true,
|
|
3655
|
+
"locationInModule": {
|
|
3656
|
+
"filename": "src/cdk-project.ts",
|
|
3657
|
+
"line": 24
|
|
3658
|
+
},
|
|
3659
|
+
"name": "company",
|
|
3660
|
+
"protected": true,
|
|
3661
|
+
"type": {
|
|
3662
|
+
"primitive": "string"
|
|
3663
|
+
}
|
|
3664
|
+
},
|
|
3665
|
+
{
|
|
3666
|
+
"docs": {
|
|
3667
|
+
"stability": "stable"
|
|
3668
|
+
},
|
|
3669
|
+
"immutable": true,
|
|
3670
|
+
"locationInModule": {
|
|
3671
|
+
"filename": "src/cdk-project.ts",
|
|
3672
|
+
"line": 25
|
|
3673
|
+
},
|
|
3674
|
+
"name": "projectName",
|
|
3675
|
+
"protected": true,
|
|
3676
|
+
"type": {
|
|
3677
|
+
"primitive": "string"
|
|
3678
|
+
}
|
|
3679
|
+
}
|
|
3680
|
+
],
|
|
3681
|
+
"symbolId": "src/cdk-project:RocketleapPlatformCdkProject"
|
|
3682
|
+
},
|
|
3683
|
+
"@rocketleap/rocketleap-projen.RocketleapWorkloadCdkProject": {
|
|
3684
|
+
"assembly": "@rocketleap/rocketleap-projen",
|
|
3685
|
+
"base": "projen.awscdk.AwsCdkTypeScriptApp",
|
|
3686
|
+
"docs": {
|
|
3687
|
+
"remarks": "This is for customer-specific workload code that runs on the platform.\nDoes NOT include the platform license.",
|
|
3688
|
+
"stability": "stable",
|
|
3689
|
+
"summary": "Projen project for customer workload CDK projects."
|
|
3690
|
+
},
|
|
3691
|
+
"fqn": "@rocketleap/rocketleap-projen.RocketleapWorkloadCdkProject",
|
|
3692
|
+
"initializer": {
|
|
3693
|
+
"docs": {
|
|
3694
|
+
"stability": "stable"
|
|
3695
|
+
},
|
|
3696
|
+
"locationInModule": {
|
|
3697
|
+
"filename": "src/cdk-project.ts",
|
|
3698
|
+
"line": 158
|
|
3699
|
+
},
|
|
3700
|
+
"parameters": [
|
|
3701
|
+
{
|
|
3702
|
+
"name": "options",
|
|
3703
|
+
"type": {
|
|
3704
|
+
"fqn": "@rocketleap/rocketleap-projen.RocketleapCdkProjectOptions"
|
|
3705
|
+
}
|
|
3706
|
+
}
|
|
3707
|
+
]
|
|
3708
|
+
},
|
|
3709
|
+
"kind": "class",
|
|
3710
|
+
"locationInModule": {
|
|
3711
|
+
"filename": "src/cdk-project.ts",
|
|
3712
|
+
"line": 157
|
|
3713
|
+
},
|
|
3714
|
+
"methods": [
|
|
3715
|
+
{
|
|
3716
|
+
"docs": {
|
|
3717
|
+
"stability": "stable"
|
|
3718
|
+
},
|
|
3719
|
+
"locationInModule": {
|
|
3720
|
+
"filename": "src/cdk-project.ts",
|
|
3721
|
+
"line": 89
|
|
3722
|
+
},
|
|
3723
|
+
"name": "generateSampleProjenrc",
|
|
3724
|
+
"parameters": [
|
|
3725
|
+
{
|
|
3726
|
+
"name": "projectClass",
|
|
3727
|
+
"type": {
|
|
3728
|
+
"primitive": "string"
|
|
3729
|
+
}
|
|
3730
|
+
}
|
|
3731
|
+
],
|
|
3732
|
+
"protected": true
|
|
3733
|
+
}
|
|
3734
|
+
],
|
|
3735
|
+
"name": "RocketleapWorkloadCdkProject",
|
|
3736
|
+
"properties": [
|
|
3737
|
+
{
|
|
3738
|
+
"docs": {
|
|
3739
|
+
"stability": "stable"
|
|
3740
|
+
},
|
|
3741
|
+
"immutable": true,
|
|
3742
|
+
"locationInModule": {
|
|
3743
|
+
"filename": "src/cdk-project.ts",
|
|
3744
|
+
"line": 24
|
|
3745
|
+
},
|
|
3746
|
+
"name": "company",
|
|
3747
|
+
"protected": true,
|
|
3748
|
+
"type": {
|
|
3749
|
+
"primitive": "string"
|
|
3750
|
+
}
|
|
3751
|
+
},
|
|
3752
|
+
{
|
|
3753
|
+
"docs": {
|
|
3754
|
+
"stability": "stable"
|
|
3755
|
+
},
|
|
3756
|
+
"immutable": true,
|
|
3757
|
+
"locationInModule": {
|
|
3758
|
+
"filename": "src/cdk-project.ts",
|
|
3759
|
+
"line": 25
|
|
3760
|
+
},
|
|
3761
|
+
"name": "projectName",
|
|
3762
|
+
"protected": true,
|
|
3763
|
+
"type": {
|
|
3764
|
+
"primitive": "string"
|
|
3765
|
+
}
|
|
284
3766
|
}
|
|
285
3767
|
],
|
|
286
|
-
"symbolId": "src/cdk-project:
|
|
3768
|
+
"symbolId": "src/cdk-project:RocketleapWorkloadCdkProject"
|
|
287
3769
|
}
|
|
288
3770
|
},
|
|
289
|
-
"version": "0.0.
|
|
290
|
-
"fingerprint": "
|
|
3771
|
+
"version": "0.0.12",
|
|
3772
|
+
"fingerprint": "PWSKReixtxbTLOCLy6M6ES/RU4Pv+0nTJ3N9csD1AQI="
|
|
291
3773
|
}
|