mrpj 0.2.9 → 0.2.11
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 +935 -500
- package/API.md +737 -661
- package/LICENSE +1 -1
- package/lib/components/NodeVersion.d.ts +37 -0
- package/lib/components/NodeVersion.js +70 -0
- package/lib/components/SelfMutationOnForks.js +2 -4
- package/lib/components/index.d.ts +1 -0
- package/lib/components/index.js +2 -1
- package/lib/components/private.d.ts +10 -0
- package/lib/components/private.js +3 -0
- package/lib/construct-project-options.d.ts +69 -31
- package/lib/construct-project-options.js +1 -1
- package/lib/construct-project.js +2 -4
- package/lib/features/node-version.d.ts +0 -6
- package/lib/features/node-version.js +9 -39
- package/lib/index.js +27 -5
- package/lib/logo/Logo.js +8 -4
- package/lib/logo/SvgFile.js +2 -4
- package/lib/logo/Wordmark.js +38 -5
- package/lib/projen-project-options.d.ts +59 -19
- package/lib/projen-project-options.js +1 -1
- package/lib/projen-project.js +5 -5
- package/lib/typescript-project-options.d.ts +51 -19
- package/lib/typescript-project-options.js +1 -1
- package/lib/typescript-project.js +4 -4
- package/lib/util/resources.js +36 -3
- package/package.json +41 -37
- package/resources/node-versions.json +8 -3
package/.jsii
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"url": "https://moritzkornher.de"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"constructs": "^10.
|
|
10
|
+
"constructs": "^10.5.0",
|
|
11
11
|
"projen": "0.x >=0.75.0"
|
|
12
12
|
},
|
|
13
13
|
"dependencyClosure": {
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"stability": "stable"
|
|
84
84
|
},
|
|
85
85
|
"homepage": "https://github.com/mrgrain/projen-projects",
|
|
86
|
-
"jsiiVersion": "5.9.
|
|
86
|
+
"jsiiVersion": "5.9.44 (build 150b837)",
|
|
87
87
|
"license": "MIT",
|
|
88
88
|
"metadata": {
|
|
89
89
|
"jsii": {
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
"hasDefaultInterfaces": true
|
|
92
92
|
}
|
|
93
93
|
},
|
|
94
|
-
"tscRootDir": "src"
|
|
94
|
+
"tscRootDir": "/home/runner/work/projen-projects/projen-projects/src"
|
|
95
95
|
},
|
|
96
96
|
"name": "mrpj",
|
|
97
97
|
"readme": {
|
|
@@ -154,7 +154,7 @@
|
|
|
154
154
|
},
|
|
155
155
|
"locationInModule": {
|
|
156
156
|
"filename": "src/awscdk/awscdk-construct.ts",
|
|
157
|
-
"line":
|
|
157
|
+
"line": 88
|
|
158
158
|
},
|
|
159
159
|
"parameters": [
|
|
160
160
|
{
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
"immutable": true,
|
|
199
199
|
"locationInModule": {
|
|
200
200
|
"filename": "src/construct-project-options.ts",
|
|
201
|
-
"line":
|
|
201
|
+
"line": 197
|
|
202
202
|
},
|
|
203
203
|
"name": "author",
|
|
204
204
|
"type": {
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
"immutable": true,
|
|
216
216
|
"locationInModule": {
|
|
217
217
|
"filename": "src/construct-project-options.ts",
|
|
218
|
-
"line":
|
|
218
|
+
"line": 191
|
|
219
219
|
},
|
|
220
220
|
"name": "authorAddress",
|
|
221
221
|
"type": {
|
|
@@ -225,14 +225,14 @@
|
|
|
225
225
|
{
|
|
226
226
|
"abstract": true,
|
|
227
227
|
"docs": {
|
|
228
|
-
"default": "\"2.1
|
|
228
|
+
"default": "\"2.189.1\"",
|
|
229
229
|
"stability": "stable",
|
|
230
230
|
"summary": "Minimum version of the AWS CDK to depend on."
|
|
231
231
|
},
|
|
232
232
|
"immutable": true,
|
|
233
233
|
"locationInModule": {
|
|
234
234
|
"filename": "src/construct-project-options.ts",
|
|
235
|
-
"line":
|
|
235
|
+
"line": 79
|
|
236
236
|
},
|
|
237
237
|
"name": "cdkVersion",
|
|
238
238
|
"type": {
|
|
@@ -242,16 +242,19 @@
|
|
|
242
242
|
{
|
|
243
243
|
"abstract": true,
|
|
244
244
|
"docs": {
|
|
245
|
-
"
|
|
245
|
+
"custom": {
|
|
246
|
+
"featured": "true"
|
|
247
|
+
},
|
|
248
|
+
"default": "$BASEDIR",
|
|
246
249
|
"stability": "stable",
|
|
247
|
-
"summary": "
|
|
250
|
+
"summary": "This is the name of your project."
|
|
248
251
|
},
|
|
249
252
|
"immutable": true,
|
|
250
253
|
"locationInModule": {
|
|
251
254
|
"filename": "src/construct-project-options.ts",
|
|
252
|
-
"line":
|
|
255
|
+
"line": 1219
|
|
253
256
|
},
|
|
254
|
-
"name": "
|
|
257
|
+
"name": "name",
|
|
255
258
|
"type": {
|
|
256
259
|
"primitive": "string"
|
|
257
260
|
}
|
|
@@ -259,19 +262,16 @@
|
|
|
259
262
|
{
|
|
260
263
|
"abstract": true,
|
|
261
264
|
"docs": {
|
|
262
|
-
"
|
|
263
|
-
"featured": "true"
|
|
264
|
-
},
|
|
265
|
-
"default": "$BASEDIR",
|
|
265
|
+
"default": "$GIT_REMOTE",
|
|
266
266
|
"stability": "stable",
|
|
267
|
-
"summary": "
|
|
267
|
+
"summary": "Git repository URL."
|
|
268
268
|
},
|
|
269
269
|
"immutable": true,
|
|
270
270
|
"locationInModule": {
|
|
271
271
|
"filename": "src/construct-project-options.ts",
|
|
272
|
-
"line":
|
|
272
|
+
"line": 185
|
|
273
273
|
},
|
|
274
|
-
"name": "
|
|
274
|
+
"name": "repositoryUrl",
|
|
275
275
|
"type": {
|
|
276
276
|
"primitive": "string"
|
|
277
277
|
}
|
|
@@ -279,18 +279,19 @@
|
|
|
279
279
|
{
|
|
280
280
|
"abstract": true,
|
|
281
281
|
"docs": {
|
|
282
|
-
"default": "
|
|
282
|
+
"default": "true",
|
|
283
283
|
"stability": "stable",
|
|
284
|
-
"summary": "
|
|
284
|
+
"summary": "Automatically add the resolved `packageManager` to `devEngines.packageManager` in `package.json`, setting `onFail` to `ignore`."
|
|
285
285
|
},
|
|
286
286
|
"immutable": true,
|
|
287
287
|
"locationInModule": {
|
|
288
288
|
"filename": "src/construct-project-options.ts",
|
|
289
|
-
"line":
|
|
289
|
+
"line": 1051
|
|
290
290
|
},
|
|
291
|
-
"name": "
|
|
291
|
+
"name": "addPackageManagerToDevEngines",
|
|
292
|
+
"optional": true,
|
|
292
293
|
"type": {
|
|
293
|
-
"primitive": "
|
|
294
|
+
"primitive": "boolean"
|
|
294
295
|
}
|
|
295
296
|
},
|
|
296
297
|
{
|
|
@@ -304,7 +305,7 @@
|
|
|
304
305
|
"immutable": true,
|
|
305
306
|
"locationInModule": {
|
|
306
307
|
"filename": "src/construct-project-options.ts",
|
|
307
|
-
"line":
|
|
308
|
+
"line": 1045
|
|
308
309
|
},
|
|
309
310
|
"name": "allowLibraryDependencies",
|
|
310
311
|
"optional": true,
|
|
@@ -322,7 +323,7 @@
|
|
|
322
323
|
"immutable": true,
|
|
323
324
|
"locationInModule": {
|
|
324
325
|
"filename": "src/construct-project-options.ts",
|
|
325
|
-
"line":
|
|
326
|
+
"line": 549
|
|
326
327
|
},
|
|
327
328
|
"name": "artifactsDirectory",
|
|
328
329
|
"optional": true,
|
|
@@ -341,7 +342,7 @@
|
|
|
341
342
|
"immutable": true,
|
|
342
343
|
"locationInModule": {
|
|
343
344
|
"filename": "src/construct-project-options.ts",
|
|
344
|
-
"line":
|
|
345
|
+
"line": 543
|
|
345
346
|
},
|
|
346
347
|
"name": "auditDeps",
|
|
347
348
|
"optional": true,
|
|
@@ -359,7 +360,7 @@
|
|
|
359
360
|
"immutable": true,
|
|
360
361
|
"locationInModule": {
|
|
361
362
|
"filename": "src/construct-project-options.ts",
|
|
362
|
-
"line":
|
|
363
|
+
"line": 534
|
|
363
364
|
},
|
|
364
365
|
"name": "auditDepsOptions",
|
|
365
366
|
"optional": true,
|
|
@@ -376,7 +377,7 @@
|
|
|
376
377
|
"immutable": true,
|
|
377
378
|
"locationInModule": {
|
|
378
379
|
"filename": "src/construct-project-options.ts",
|
|
379
|
-
"line":
|
|
380
|
+
"line": 1037
|
|
380
381
|
},
|
|
381
382
|
"name": "authorEmail",
|
|
382
383
|
"optional": true,
|
|
@@ -393,7 +394,7 @@
|
|
|
393
394
|
"immutable": true,
|
|
394
395
|
"locationInModule": {
|
|
395
396
|
"filename": "src/construct-project-options.ts",
|
|
396
|
-
"line":
|
|
397
|
+
"line": 1032
|
|
397
398
|
},
|
|
398
399
|
"name": "authorName",
|
|
399
400
|
"optional": true,
|
|
@@ -410,7 +411,7 @@
|
|
|
410
411
|
"immutable": true,
|
|
411
412
|
"locationInModule": {
|
|
412
413
|
"filename": "src/construct-project-options.ts",
|
|
413
|
-
"line":
|
|
414
|
+
"line": 1027
|
|
414
415
|
},
|
|
415
416
|
"name": "authorOrganization",
|
|
416
417
|
"optional": true,
|
|
@@ -427,7 +428,7 @@
|
|
|
427
428
|
"immutable": true,
|
|
428
429
|
"locationInModule": {
|
|
429
430
|
"filename": "src/construct-project-options.ts",
|
|
430
|
-
"line":
|
|
431
|
+
"line": 1022
|
|
431
432
|
},
|
|
432
433
|
"name": "authorUrl",
|
|
433
434
|
"optional": true,
|
|
@@ -445,7 +446,7 @@
|
|
|
445
446
|
"immutable": true,
|
|
446
447
|
"locationInModule": {
|
|
447
448
|
"filename": "src/construct-project-options.ts",
|
|
448
|
-
"line":
|
|
449
|
+
"line": 1137
|
|
449
450
|
},
|
|
450
451
|
"name": "autoApproveOptions",
|
|
451
452
|
"optional": true,
|
|
@@ -459,12 +460,12 @@
|
|
|
459
460
|
"default": "- true",
|
|
460
461
|
"remarks": "Throw if set to true but `autoApproveOptions` are not defined.",
|
|
461
462
|
"stability": "stable",
|
|
462
|
-
"summary": "Automatically approve deps upgrade PRs, allowing them to be merged by mergify (if
|
|
463
|
+
"summary": "Automatically approve deps upgrade PRs, allowing them to be merged by mergify (if configured)."
|
|
463
464
|
},
|
|
464
465
|
"immutable": true,
|
|
465
466
|
"locationInModule": {
|
|
466
467
|
"filename": "src/construct-project-options.ts",
|
|
467
|
-
"line":
|
|
468
|
+
"line": 528
|
|
468
469
|
},
|
|
469
470
|
"name": "autoApproveUpgrades",
|
|
470
471
|
"optional": true,
|
|
@@ -482,7 +483,7 @@
|
|
|
482
483
|
"immutable": true,
|
|
483
484
|
"locationInModule": {
|
|
484
485
|
"filename": "src/construct-project-options.ts",
|
|
485
|
-
"line":
|
|
486
|
+
"line": 1017
|
|
486
487
|
},
|
|
487
488
|
"name": "autoDetectBin",
|
|
488
489
|
"optional": true,
|
|
@@ -501,7 +502,7 @@
|
|
|
501
502
|
"immutable": true,
|
|
502
503
|
"locationInModule": {
|
|
503
504
|
"filename": "src/construct-project-options.ts",
|
|
504
|
-
"line":
|
|
505
|
+
"line": 1131
|
|
505
506
|
},
|
|
506
507
|
"name": "autoMerge",
|
|
507
508
|
"optional": true,
|
|
@@ -520,7 +521,7 @@
|
|
|
520
521
|
"immutable": true,
|
|
521
522
|
"locationInModule": {
|
|
522
523
|
"filename": "src/construct-project-options.ts",
|
|
523
|
-
"line":
|
|
524
|
+
"line": 1123
|
|
524
525
|
},
|
|
525
526
|
"name": "autoMergeOptions",
|
|
526
527
|
"optional": true,
|
|
@@ -538,7 +539,7 @@
|
|
|
538
539
|
"immutable": true,
|
|
539
540
|
"locationInModule": {
|
|
540
541
|
"filename": "src/construct-project-options.ts",
|
|
541
|
-
"line":
|
|
542
|
+
"line": 1011
|
|
542
543
|
},
|
|
543
544
|
"name": "bin",
|
|
544
545
|
"optional": true,
|
|
@@ -561,7 +562,7 @@
|
|
|
561
562
|
"immutable": true,
|
|
562
563
|
"locationInModule": {
|
|
563
564
|
"filename": "src/construct-project-options.ts",
|
|
564
|
-
"line":
|
|
565
|
+
"line": 521
|
|
565
566
|
},
|
|
566
567
|
"name": "biome",
|
|
567
568
|
"optional": true,
|
|
@@ -579,7 +580,7 @@
|
|
|
579
580
|
"immutable": true,
|
|
580
581
|
"locationInModule": {
|
|
581
582
|
"filename": "src/construct-project-options.ts",
|
|
582
|
-
"line":
|
|
583
|
+
"line": 515
|
|
583
584
|
},
|
|
584
585
|
"name": "biomeOptions",
|
|
585
586
|
"optional": true,
|
|
@@ -596,7 +597,7 @@
|
|
|
596
597
|
"immutable": true,
|
|
597
598
|
"locationInModule": {
|
|
598
599
|
"filename": "src/construct-project-options.ts",
|
|
599
|
-
"line":
|
|
600
|
+
"line": 1003
|
|
600
601
|
},
|
|
601
602
|
"name": "bugsEmail",
|
|
602
603
|
"optional": true,
|
|
@@ -613,7 +614,7 @@
|
|
|
613
614
|
"immutable": true,
|
|
614
615
|
"locationInModule": {
|
|
615
616
|
"filename": "src/construct-project-options.ts",
|
|
616
|
-
"line":
|
|
617
|
+
"line": 998
|
|
617
618
|
},
|
|
618
619
|
"name": "bugsUrl",
|
|
619
620
|
"optional": true,
|
|
@@ -631,7 +632,7 @@
|
|
|
631
632
|
"immutable": true,
|
|
632
633
|
"locationInModule": {
|
|
633
634
|
"filename": "src/construct-project-options.ts",
|
|
634
|
-
"line":
|
|
635
|
+
"line": 509
|
|
635
636
|
},
|
|
636
637
|
"name": "buildWorkflow",
|
|
637
638
|
"optional": true,
|
|
@@ -648,7 +649,7 @@
|
|
|
648
649
|
"immutable": true,
|
|
649
650
|
"locationInModule": {
|
|
650
651
|
"filename": "src/construct-project-options.ts",
|
|
651
|
-
"line":
|
|
652
|
+
"line": 503
|
|
652
653
|
},
|
|
653
654
|
"name": "buildWorkflowOptions",
|
|
654
655
|
"optional": true,
|
|
@@ -667,7 +668,7 @@
|
|
|
667
668
|
"immutable": true,
|
|
668
669
|
"locationInModule": {
|
|
669
670
|
"filename": "src/construct-project-options.ts",
|
|
670
|
-
"line":
|
|
671
|
+
"line": 742
|
|
671
672
|
},
|
|
672
673
|
"name": "bumpPackage",
|
|
673
674
|
"optional": true,
|
|
@@ -678,14 +679,14 @@
|
|
|
678
679
|
{
|
|
679
680
|
"abstract": true,
|
|
680
681
|
"docs": {
|
|
681
|
-
"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 `
|
|
682
|
+
"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 `pnpm 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 `pnpm add` or `npm i` (e.g. `express@^2`) and\nthis will be what your `package.json` will eventually include.",
|
|
682
683
|
"stability": "stable",
|
|
683
684
|
"summary": "List of dependencies to bundle into this module."
|
|
684
685
|
},
|
|
685
686
|
"immutable": true,
|
|
686
687
|
"locationInModule": {
|
|
687
688
|
"filename": "src/construct-project-options.ts",
|
|
688
|
-
"line":
|
|
689
|
+
"line": 993
|
|
689
690
|
},
|
|
690
691
|
"name": "bundledDeps",
|
|
691
692
|
"optional": true,
|
|
@@ -707,7 +708,7 @@
|
|
|
707
708
|
"immutable": true,
|
|
708
709
|
"locationInModule": {
|
|
709
710
|
"filename": "src/construct-project-options.ts",
|
|
710
|
-
"line":
|
|
711
|
+
"line": 498
|
|
711
712
|
},
|
|
712
713
|
"name": "bundlerOptions",
|
|
713
714
|
"optional": true,
|
|
@@ -725,7 +726,7 @@
|
|
|
725
726
|
"immutable": true,
|
|
726
727
|
"locationInModule": {
|
|
727
728
|
"filename": "src/construct-project-options.ts",
|
|
728
|
-
"line":
|
|
729
|
+
"line": 978
|
|
729
730
|
},
|
|
730
731
|
"name": "bunVersion",
|
|
731
732
|
"optional": true,
|
|
@@ -744,7 +745,7 @@
|
|
|
744
745
|
"immutable": true,
|
|
745
746
|
"locationInModule": {
|
|
746
747
|
"filename": "src/construct-project-options.ts",
|
|
747
|
-
"line":
|
|
748
|
+
"line": 93
|
|
748
749
|
},
|
|
749
750
|
"name": "catalog",
|
|
750
751
|
"optional": true,
|
|
@@ -752,25 +753,6 @@
|
|
|
752
753
|
"fqn": "projen.cdk.Catalog"
|
|
753
754
|
}
|
|
754
755
|
},
|
|
755
|
-
{
|
|
756
|
-
"abstract": true,
|
|
757
|
-
"docs": {
|
|
758
|
-
"default": "- will be included by default for AWS CDK >= 1.111.0 < 2.0.0",
|
|
759
|
-
"remarks": "Only needed for CDK 1.x. If using CDK 2.x then\nassertions is already included in 'aws-cdk-lib'",
|
|
760
|
-
"stability": "stable",
|
|
761
|
-
"summary": "Install the assertions library?"
|
|
762
|
-
},
|
|
763
|
-
"immutable": true,
|
|
764
|
-
"locationInModule": {
|
|
765
|
-
"filename": "src/construct-project-options.ts",
|
|
766
|
-
"line": 75
|
|
767
|
-
},
|
|
768
|
-
"name": "cdkAssertions",
|
|
769
|
-
"optional": true,
|
|
770
|
-
"type": {
|
|
771
|
-
"primitive": "boolean"
|
|
772
|
-
}
|
|
773
|
-
},
|
|
774
756
|
{
|
|
775
757
|
"abstract": true,
|
|
776
758
|
"docs": {
|
|
@@ -782,7 +764,7 @@
|
|
|
782
764
|
"immutable": true,
|
|
783
765
|
"locationInModule": {
|
|
784
766
|
"filename": "src/construct-project-options.ts",
|
|
785
|
-
"line":
|
|
767
|
+
"line": 73
|
|
786
768
|
},
|
|
787
769
|
"name": "cdkCliVersion",
|
|
788
770
|
"optional": true,
|
|
@@ -800,7 +782,7 @@
|
|
|
800
782
|
"immutable": true,
|
|
801
783
|
"locationInModule": {
|
|
802
784
|
"filename": "src/construct-project-options.ts",
|
|
803
|
-
"line":
|
|
785
|
+
"line": 63
|
|
804
786
|
},
|
|
805
787
|
"name": "cdkVersionPinning",
|
|
806
788
|
"optional": true,
|
|
@@ -819,7 +801,7 @@
|
|
|
819
801
|
"immutable": true,
|
|
820
802
|
"locationInModule": {
|
|
821
803
|
"filename": "src/construct-project-options.ts",
|
|
822
|
-
"line":
|
|
804
|
+
"line": 493
|
|
823
805
|
},
|
|
824
806
|
"name": "checkLicenses",
|
|
825
807
|
"optional": true,
|
|
@@ -837,7 +819,7 @@
|
|
|
837
819
|
"immutable": true,
|
|
838
820
|
"locationInModule": {
|
|
839
821
|
"filename": "src/construct-project-options.ts",
|
|
840
|
-
"line":
|
|
822
|
+
"line": 1115
|
|
841
823
|
},
|
|
842
824
|
"name": "clobber",
|
|
843
825
|
"optional": true,
|
|
@@ -856,7 +838,7 @@
|
|
|
856
838
|
"immutable": true,
|
|
857
839
|
"locationInModule": {
|
|
858
840
|
"filename": "src/construct-project-options.ts",
|
|
859
|
-
"line":
|
|
841
|
+
"line": 972
|
|
860
842
|
},
|
|
861
843
|
"name": "codeArtifactOptions",
|
|
862
844
|
"optional": true,
|
|
@@ -874,7 +856,7 @@
|
|
|
874
856
|
"immutable": true,
|
|
875
857
|
"locationInModule": {
|
|
876
858
|
"filename": "src/construct-project-options.ts",
|
|
877
|
-
"line":
|
|
859
|
+
"line": 486
|
|
878
860
|
},
|
|
879
861
|
"name": "codeCov",
|
|
880
862
|
"optional": true,
|
|
@@ -892,7 +874,7 @@
|
|
|
892
874
|
"immutable": true,
|
|
893
875
|
"locationInModule": {
|
|
894
876
|
"filename": "src/construct-project-options.ts",
|
|
895
|
-
"line":
|
|
877
|
+
"line": 480
|
|
896
878
|
},
|
|
897
879
|
"name": "codeCovTokenSecret",
|
|
898
880
|
"optional": true,
|
|
@@ -910,7 +892,7 @@
|
|
|
910
892
|
"immutable": true,
|
|
911
893
|
"locationInModule": {
|
|
912
894
|
"filename": "src/construct-project-options.ts",
|
|
913
|
-
"line":
|
|
895
|
+
"line": 1212
|
|
914
896
|
},
|
|
915
897
|
"name": "commitGenerated",
|
|
916
898
|
"optional": true,
|
|
@@ -929,7 +911,7 @@
|
|
|
929
911
|
"immutable": true,
|
|
930
912
|
"locationInModule": {
|
|
931
913
|
"filename": "src/construct-project-options.ts",
|
|
932
|
-
"line":
|
|
914
|
+
"line": 179
|
|
933
915
|
},
|
|
934
916
|
"name": "compat",
|
|
935
917
|
"optional": true,
|
|
@@ -947,7 +929,7 @@
|
|
|
947
929
|
"immutable": true,
|
|
948
930
|
"locationInModule": {
|
|
949
931
|
"filename": "src/construct-project-options.ts",
|
|
950
|
-
"line":
|
|
932
|
+
"line": 171
|
|
951
933
|
},
|
|
952
934
|
"name": "compatIgnore",
|
|
953
935
|
"optional": true,
|
|
@@ -965,7 +947,7 @@
|
|
|
965
947
|
"immutable": true,
|
|
966
948
|
"locationInModule": {
|
|
967
949
|
"filename": "src/construct-project-options.ts",
|
|
968
|
-
"line":
|
|
950
|
+
"line": 165
|
|
969
951
|
},
|
|
970
952
|
"name": "compressAssembly",
|
|
971
953
|
"optional": true,
|
|
@@ -976,14 +958,14 @@
|
|
|
976
958
|
{
|
|
977
959
|
"abstract": true,
|
|
978
960
|
"docs": {
|
|
979
|
-
"default": "- for CDK 1.x the default is \"3.2.27\", for CDK 2.x the default is\n\"10.
|
|
961
|
+
"default": "- for CDK 1.x the default is \"3.2.27\", for CDK 2.x the default is\n\"10.5.1\".",
|
|
980
962
|
"stability": "stable",
|
|
981
963
|
"summary": "Minimum version of the `constructs` library to depend on."
|
|
982
964
|
},
|
|
983
965
|
"immutable": true,
|
|
984
966
|
"locationInModule": {
|
|
985
967
|
"filename": "src/construct-project-options.ts",
|
|
986
|
-
"line":
|
|
968
|
+
"line": 56
|
|
987
969
|
},
|
|
988
970
|
"name": "constructsVersion",
|
|
989
971
|
"optional": true,
|
|
@@ -1001,7 +983,7 @@
|
|
|
1001
983
|
"immutable": true,
|
|
1002
984
|
"locationInModule": {
|
|
1003
985
|
"filename": "src/construct-project-options.ts",
|
|
1004
|
-
"line":
|
|
986
|
+
"line": 474
|
|
1005
987
|
},
|
|
1006
988
|
"name": "copyrightOwner",
|
|
1007
989
|
"optional": true,
|
|
@@ -1019,7 +1001,7 @@
|
|
|
1019
1001
|
"immutable": true,
|
|
1020
1002
|
"locationInModule": {
|
|
1021
1003
|
"filename": "src/construct-project-options.ts",
|
|
1022
|
-
"line":
|
|
1004
|
+
"line": 468
|
|
1023
1005
|
},
|
|
1024
1006
|
"name": "copyrightPeriod",
|
|
1025
1007
|
"optional": true,
|
|
@@ -1027,6 +1009,46 @@
|
|
|
1027
1009
|
"primitive": "string"
|
|
1028
1010
|
}
|
|
1029
1011
|
},
|
|
1012
|
+
{
|
|
1013
|
+
"abstract": true,
|
|
1014
|
+
"docs": {
|
|
1015
|
+
"custom": {
|
|
1016
|
+
"featured": "true"
|
|
1017
|
+
},
|
|
1018
|
+
"default": "\"main\"",
|
|
1019
|
+
"stability": "stable",
|
|
1020
|
+
"summary": "The name of the main release branch."
|
|
1021
|
+
},
|
|
1022
|
+
"immutable": true,
|
|
1023
|
+
"locationInModule": {
|
|
1024
|
+
"filename": "src/construct-project-options.ts",
|
|
1025
|
+
"line": 462
|
|
1026
|
+
},
|
|
1027
|
+
"name": "defaultReleaseBranch",
|
|
1028
|
+
"optional": true,
|
|
1029
|
+
"type": {
|
|
1030
|
+
"primitive": "string"
|
|
1031
|
+
}
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
"abstract": true,
|
|
1035
|
+
"docs": {
|
|
1036
|
+
"default": "true",
|
|
1037
|
+
"remarks": "Only triggered when the lockfile for the configured package\nmanager already exists.\n\nThis is useful when migrating between package managers to avoid conflicts.",
|
|
1038
|
+
"stability": "stable",
|
|
1039
|
+
"summary": "Automatically delete lockfiles from package managers that are not the active one."
|
|
1040
|
+
},
|
|
1041
|
+
"immutable": true,
|
|
1042
|
+
"locationInModule": {
|
|
1043
|
+
"filename": "src/construct-project-options.ts",
|
|
1044
|
+
"line": 965
|
|
1045
|
+
},
|
|
1046
|
+
"name": "deleteOrphanedLockFiles",
|
|
1047
|
+
"optional": true,
|
|
1048
|
+
"type": {
|
|
1049
|
+
"primitive": "boolean"
|
|
1050
|
+
}
|
|
1051
|
+
},
|
|
1030
1052
|
{
|
|
1031
1053
|
"abstract": true,
|
|
1032
1054
|
"docs": {
|
|
@@ -1038,7 +1060,7 @@
|
|
|
1038
1060
|
"immutable": true,
|
|
1039
1061
|
"locationInModule": {
|
|
1040
1062
|
"filename": "src/construct-project-options.ts",
|
|
1041
|
-
"line":
|
|
1063
|
+
"line": 455
|
|
1042
1064
|
},
|
|
1043
1065
|
"name": "dependabot",
|
|
1044
1066
|
"optional": true,
|
|
@@ -1056,7 +1078,7 @@
|
|
|
1056
1078
|
"immutable": true,
|
|
1057
1079
|
"locationInModule": {
|
|
1058
1080
|
"filename": "src/construct-project-options.ts",
|
|
1059
|
-
"line":
|
|
1081
|
+
"line": 448
|
|
1060
1082
|
},
|
|
1061
1083
|
"name": "dependabotOptions",
|
|
1062
1084
|
"optional": true,
|
|
@@ -1071,14 +1093,14 @@
|
|
|
1071
1093
|
"featured": "true"
|
|
1072
1094
|
},
|
|
1073
1095
|
"default": "[]",
|
|
1074
|
-
"remarks": "The recommendation is to only specify the module name here (e.g.\n`express`). This will behave similar to `
|
|
1096
|
+
"remarks": "The recommendation is to only specify the module name here (e.g.\n`express`). This will behave similar to `pnpm 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 `pnpm add` or `npm i` (e.g. `express@^2`) and\nthis will be what your `package.json` will eventually include.",
|
|
1075
1097
|
"stability": "stable",
|
|
1076
1098
|
"summary": "Runtime dependencies of this module."
|
|
1077
1099
|
},
|
|
1078
1100
|
"immutable": true,
|
|
1079
1101
|
"locationInModule": {
|
|
1080
1102
|
"filename": "src/construct-project-options.ts",
|
|
1081
|
-
"line":
|
|
1103
|
+
"line": 955
|
|
1082
1104
|
},
|
|
1083
1105
|
"name": "deps",
|
|
1084
1106
|
"optional": true,
|
|
@@ -1094,7 +1116,7 @@
|
|
|
1094
1116
|
{
|
|
1095
1117
|
"abstract": true,
|
|
1096
1118
|
"docs": {
|
|
1097
|
-
"default": "true",
|
|
1119
|
+
"default": "- `true` for root projects, `false` for subprojects",
|
|
1098
1120
|
"remarks": "Cannot be used in conjunction with `dependabot`.",
|
|
1099
1121
|
"stability": "stable",
|
|
1100
1122
|
"summary": "Use tasks and github workflows to handle dependency upgrades."
|
|
@@ -1102,7 +1124,7 @@
|
|
|
1102
1124
|
"immutable": true,
|
|
1103
1125
|
"locationInModule": {
|
|
1104
1126
|
"filename": "src/construct-project-options.ts",
|
|
1105
|
-
"line":
|
|
1127
|
+
"line": 442
|
|
1106
1128
|
},
|
|
1107
1129
|
"name": "depsUpgrade",
|
|
1108
1130
|
"optional": true,
|
|
@@ -1120,7 +1142,7 @@
|
|
|
1120
1142
|
"immutable": true,
|
|
1121
1143
|
"locationInModule": {
|
|
1122
1144
|
"filename": "src/construct-project-options.ts",
|
|
1123
|
-
"line":
|
|
1145
|
+
"line": 435
|
|
1124
1146
|
},
|
|
1125
1147
|
"name": "depsUpgradeOptions",
|
|
1126
1148
|
"optional": true,
|
|
@@ -1141,7 +1163,7 @@
|
|
|
1141
1163
|
"immutable": true,
|
|
1142
1164
|
"locationInModule": {
|
|
1143
1165
|
"filename": "src/construct-project-options.ts",
|
|
1144
|
-
"line":
|
|
1166
|
+
"line": 942
|
|
1145
1167
|
},
|
|
1146
1168
|
"name": "description",
|
|
1147
1169
|
"optional": true,
|
|
@@ -1159,7 +1181,7 @@
|
|
|
1159
1181
|
"immutable": true,
|
|
1160
1182
|
"locationInModule": {
|
|
1161
1183
|
"filename": "src/construct-project-options.ts",
|
|
1162
|
-
"line":
|
|
1184
|
+
"line": 1109
|
|
1163
1185
|
},
|
|
1164
1186
|
"name": "devContainer",
|
|
1165
1187
|
"optional": true,
|
|
@@ -1174,14 +1196,14 @@
|
|
|
1174
1196
|
"featured": "true"
|
|
1175
1197
|
},
|
|
1176
1198
|
"default": "[]",
|
|
1177
|
-
"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 `
|
|
1199
|
+
"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 `pnpm 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 `pnpm add` or `npm i` (e.g. `express@^2`) and\nthis will be what your `package.json` will eventually include.",
|
|
1178
1200
|
"stability": "stable",
|
|
1179
1201
|
"summary": "Build dependencies for this module."
|
|
1180
1202
|
},
|
|
1181
1203
|
"immutable": true,
|
|
1182
1204
|
"locationInModule": {
|
|
1183
1205
|
"filename": "src/construct-project-options.ts",
|
|
1184
|
-
"line":
|
|
1206
|
+
"line": 934
|
|
1185
1207
|
},
|
|
1186
1208
|
"name": "devDeps",
|
|
1187
1209
|
"optional": true,
|
|
@@ -1194,6 +1216,23 @@
|
|
|
1194
1216
|
}
|
|
1195
1217
|
}
|
|
1196
1218
|
},
|
|
1219
|
+
{
|
|
1220
|
+
"abstract": true,
|
|
1221
|
+
"docs": {
|
|
1222
|
+
"stability": "stable",
|
|
1223
|
+
"summary": "Configure the `devEngines` field in `package.json`. The `devEngines.packageManager` field is automatically populated based on the resolved `packageManager` value. Any fields provided here are merged with the auto-populated `packageManager` entry."
|
|
1224
|
+
},
|
|
1225
|
+
"immutable": true,
|
|
1226
|
+
"locationInModule": {
|
|
1227
|
+
"filename": "src/construct-project-options.ts",
|
|
1228
|
+
"line": 917
|
|
1229
|
+
},
|
|
1230
|
+
"name": "devEngines",
|
|
1231
|
+
"optional": true,
|
|
1232
|
+
"type": {
|
|
1233
|
+
"fqn": "projen.javascript.DevEngines"
|
|
1234
|
+
}
|
|
1235
|
+
},
|
|
1197
1236
|
{
|
|
1198
1237
|
"abstract": true,
|
|
1199
1238
|
"docs": {
|
|
@@ -1204,7 +1243,7 @@
|
|
|
1204
1243
|
"immutable": true,
|
|
1205
1244
|
"locationInModule": {
|
|
1206
1245
|
"filename": "src/construct-project-options.ts",
|
|
1207
|
-
"line":
|
|
1246
|
+
"line": 310
|
|
1208
1247
|
},
|
|
1209
1248
|
"name": "disableTsconfig",
|
|
1210
1249
|
"optional": true,
|
|
@@ -1222,7 +1261,7 @@
|
|
|
1222
1261
|
"immutable": true,
|
|
1223
1262
|
"locationInModule": {
|
|
1224
1263
|
"filename": "src/construct-project-options.ts",
|
|
1225
|
-
"line":
|
|
1264
|
+
"line": 304
|
|
1226
1265
|
},
|
|
1227
1266
|
"name": "disableTsconfigDev",
|
|
1228
1267
|
"optional": true,
|
|
@@ -1240,7 +1279,7 @@
|
|
|
1240
1279
|
"immutable": true,
|
|
1241
1280
|
"locationInModule": {
|
|
1242
1281
|
"filename": "src/construct-project-options.ts",
|
|
1243
|
-
"line":
|
|
1282
|
+
"line": 298
|
|
1244
1283
|
},
|
|
1245
1284
|
"name": "docgen",
|
|
1246
1285
|
"optional": true,
|
|
@@ -1258,7 +1297,7 @@
|
|
|
1258
1297
|
"immutable": true,
|
|
1259
1298
|
"locationInModule": {
|
|
1260
1299
|
"filename": "src/construct-project-options.ts",
|
|
1261
|
-
"line":
|
|
1300
|
+
"line": 159
|
|
1262
1301
|
},
|
|
1263
1302
|
"name": "docgenFilePath",
|
|
1264
1303
|
"optional": true,
|
|
@@ -1276,7 +1315,7 @@
|
|
|
1276
1315
|
"immutable": true,
|
|
1277
1316
|
"locationInModule": {
|
|
1278
1317
|
"filename": "src/construct-project-options.ts",
|
|
1279
|
-
"line":
|
|
1318
|
+
"line": 292
|
|
1280
1319
|
},
|
|
1281
1320
|
"name": "docsDirectory",
|
|
1282
1321
|
"optional": true,
|
|
@@ -1294,7 +1333,7 @@
|
|
|
1294
1333
|
"immutable": true,
|
|
1295
1334
|
"locationInModule": {
|
|
1296
1335
|
"filename": "src/construct-project-options.ts",
|
|
1297
|
-
"line":
|
|
1336
|
+
"line": 49
|
|
1298
1337
|
},
|
|
1299
1338
|
"name": "edgeLambdaAutoDiscover",
|
|
1300
1339
|
"optional": true,
|
|
@@ -1312,7 +1351,7 @@
|
|
|
1312
1351
|
"immutable": true,
|
|
1313
1352
|
"locationInModule": {
|
|
1314
1353
|
"filename": "src/construct-project-options.ts",
|
|
1315
|
-
"line":
|
|
1354
|
+
"line": 909
|
|
1316
1355
|
},
|
|
1317
1356
|
"name": "entrypoint",
|
|
1318
1357
|
"optional": true,
|
|
@@ -1330,7 +1369,7 @@
|
|
|
1330
1369
|
"immutable": true,
|
|
1331
1370
|
"locationInModule": {
|
|
1332
1371
|
"filename": "src/construct-project-options.ts",
|
|
1333
|
-
"line":
|
|
1372
|
+
"line": 286
|
|
1334
1373
|
},
|
|
1335
1374
|
"name": "entrypointTypes",
|
|
1336
1375
|
"optional": true,
|
|
@@ -1348,7 +1387,7 @@
|
|
|
1348
1387
|
"immutable": true,
|
|
1349
1388
|
"locationInModule": {
|
|
1350
1389
|
"filename": "src/construct-project-options.ts",
|
|
1351
|
-
"line":
|
|
1390
|
+
"line": 280
|
|
1352
1391
|
},
|
|
1353
1392
|
"name": "eslint",
|
|
1354
1393
|
"optional": true,
|
|
@@ -1366,7 +1405,7 @@
|
|
|
1366
1405
|
"immutable": true,
|
|
1367
1406
|
"locationInModule": {
|
|
1368
1407
|
"filename": "src/construct-project-options.ts",
|
|
1369
|
-
"line":
|
|
1408
|
+
"line": 274
|
|
1370
1409
|
},
|
|
1371
1410
|
"name": "eslintOptions",
|
|
1372
1411
|
"optional": true,
|
|
@@ -1384,7 +1423,7 @@
|
|
|
1384
1423
|
"immutable": true,
|
|
1385
1424
|
"locationInModule": {
|
|
1386
1425
|
"filename": "src/construct-project-options.ts",
|
|
1387
|
-
"line":
|
|
1426
|
+
"line": 153
|
|
1388
1427
|
},
|
|
1389
1428
|
"name": "excludeTypescript",
|
|
1390
1429
|
"optional": true,
|
|
@@ -1407,7 +1446,7 @@
|
|
|
1407
1446
|
"immutable": true,
|
|
1408
1447
|
"locationInModule": {
|
|
1409
1448
|
"filename": "src/construct-project-options.ts",
|
|
1410
|
-
"line":
|
|
1449
|
+
"line": 43
|
|
1411
1450
|
},
|
|
1412
1451
|
"name": "experimentalIntegRunner",
|
|
1413
1452
|
"optional": true,
|
|
@@ -1426,7 +1465,7 @@
|
|
|
1426
1465
|
"immutable": true,
|
|
1427
1466
|
"locationInModule": {
|
|
1428
1467
|
"filename": "src/construct-project-options.ts",
|
|
1429
|
-
"line":
|
|
1468
|
+
"line": 1103
|
|
1430
1469
|
},
|
|
1431
1470
|
"name": "github",
|
|
1432
1471
|
"optional": true,
|
|
@@ -1444,7 +1483,7 @@
|
|
|
1444
1483
|
"immutable": true,
|
|
1445
1484
|
"locationInModule": {
|
|
1446
1485
|
"filename": "src/construct-project-options.ts",
|
|
1447
|
-
"line":
|
|
1486
|
+
"line": 1096
|
|
1448
1487
|
},
|
|
1449
1488
|
"name": "githubOptions",
|
|
1450
1489
|
"optional": true,
|
|
@@ -1461,7 +1500,7 @@
|
|
|
1461
1500
|
"immutable": true,
|
|
1462
1501
|
"locationInModule": {
|
|
1463
1502
|
"filename": "src/construct-project-options.ts",
|
|
1464
|
-
"line":
|
|
1503
|
+
"line": 429
|
|
1465
1504
|
},
|
|
1466
1505
|
"name": "gitignore",
|
|
1467
1506
|
"optional": true,
|
|
@@ -1483,7 +1522,7 @@
|
|
|
1483
1522
|
"immutable": true,
|
|
1484
1523
|
"locationInModule": {
|
|
1485
1524
|
"filename": "src/construct-project-options.ts",
|
|
1486
|
-
"line":
|
|
1525
|
+
"line": 1206
|
|
1487
1526
|
},
|
|
1488
1527
|
"name": "gitIgnoreOptions",
|
|
1489
1528
|
"optional": true,
|
|
@@ -1500,7 +1539,7 @@
|
|
|
1500
1539
|
"immutable": true,
|
|
1501
1540
|
"locationInModule": {
|
|
1502
1541
|
"filename": "src/construct-project-options.ts",
|
|
1503
|
-
"line":
|
|
1542
|
+
"line": 1201
|
|
1504
1543
|
},
|
|
1505
1544
|
"name": "gitOptions",
|
|
1506
1545
|
"optional": true,
|
|
@@ -1518,7 +1557,7 @@
|
|
|
1518
1557
|
"immutable": true,
|
|
1519
1558
|
"locationInModule": {
|
|
1520
1559
|
"filename": "src/construct-project-options.ts",
|
|
1521
|
-
"line":
|
|
1560
|
+
"line": 1090
|
|
1522
1561
|
},
|
|
1523
1562
|
"name": "gitpod",
|
|
1524
1563
|
"optional": true,
|
|
@@ -1535,7 +1574,7 @@
|
|
|
1535
1574
|
"immutable": true,
|
|
1536
1575
|
"locationInModule": {
|
|
1537
1576
|
"filename": "src/construct-project-options.ts",
|
|
1538
|
-
"line":
|
|
1577
|
+
"line": 902
|
|
1539
1578
|
},
|
|
1540
1579
|
"name": "homepage",
|
|
1541
1580
|
"optional": true,
|
|
@@ -1553,7 +1592,7 @@
|
|
|
1553
1592
|
"immutable": true,
|
|
1554
1593
|
"locationInModule": {
|
|
1555
1594
|
"filename": "src/construct-project-options.ts",
|
|
1556
|
-
"line":
|
|
1595
|
+
"line": 37
|
|
1557
1596
|
},
|
|
1558
1597
|
"name": "integrationTestAutoDiscover",
|
|
1559
1598
|
"optional": true,
|
|
@@ -1571,7 +1610,7 @@
|
|
|
1571
1610
|
"immutable": true,
|
|
1572
1611
|
"locationInModule": {
|
|
1573
1612
|
"filename": "src/construct-project-options.ts",
|
|
1574
|
-
"line":
|
|
1613
|
+
"line": 424
|
|
1575
1614
|
},
|
|
1576
1615
|
"name": "jest",
|
|
1577
1616
|
"optional": true,
|
|
@@ -1589,7 +1628,7 @@
|
|
|
1589
1628
|
"immutable": true,
|
|
1590
1629
|
"locationInModule": {
|
|
1591
1630
|
"filename": "src/construct-project-options.ts",
|
|
1592
|
-
"line":
|
|
1631
|
+
"line": 418
|
|
1593
1632
|
},
|
|
1594
1633
|
"name": "jestOptions",
|
|
1595
1634
|
"optional": true,
|
|
@@ -1607,7 +1646,7 @@
|
|
|
1607
1646
|
"immutable": true,
|
|
1608
1647
|
"locationInModule": {
|
|
1609
1648
|
"filename": "src/construct-project-options.ts",
|
|
1610
|
-
"line":
|
|
1649
|
+
"line": 735
|
|
1611
1650
|
},
|
|
1612
1651
|
"name": "jsiiReleaseVersion",
|
|
1613
1652
|
"optional": true,
|
|
@@ -1619,9 +1658,9 @@
|
|
|
1619
1658
|
"abstract": true,
|
|
1620
1659
|
"docs": {
|
|
1621
1660
|
"custom": {
|
|
1622
|
-
"pjnew": "\"~
|
|
1661
|
+
"pjnew": "\"~6.0.0\""
|
|
1623
1662
|
},
|
|
1624
|
-
"default": "\"~5.
|
|
1663
|
+
"default": "\"~5.9.0\"",
|
|
1625
1664
|
"remarks": "Set to \"*\" if you want to manually manage the version of jsii in your\nproject by managing updates to `package.json` on your own.\n\nNOTE: The jsii compiler releases since 5.0.0 are not semantically versioned\nand should remain on the same minor, so we recommend using a `~` dependency\n(e.g. `~5.0.0`).",
|
|
1626
1665
|
"stability": "stable",
|
|
1627
1666
|
"summary": "Version of the jsii compiler to use."
|
|
@@ -1629,7 +1668,7 @@
|
|
|
1629
1668
|
"immutable": true,
|
|
1630
1669
|
"locationInModule": {
|
|
1631
1670
|
"filename": "src/construct-project-options.ts",
|
|
1632
|
-
"line":
|
|
1671
|
+
"line": 143
|
|
1633
1672
|
},
|
|
1634
1673
|
"name": "jsiiVersion",
|
|
1635
1674
|
"optional": true,
|
|
@@ -1646,7 +1685,7 @@
|
|
|
1646
1685
|
"immutable": true,
|
|
1647
1686
|
"locationInModule": {
|
|
1648
1687
|
"filename": "src/construct-project-options.ts",
|
|
1649
|
-
"line":
|
|
1688
|
+
"line": 897
|
|
1650
1689
|
},
|
|
1651
1690
|
"name": "keywords",
|
|
1652
1691
|
"optional": true,
|
|
@@ -1669,7 +1708,7 @@
|
|
|
1669
1708
|
"immutable": true,
|
|
1670
1709
|
"locationInModule": {
|
|
1671
1710
|
"filename": "src/construct-project-options.ts",
|
|
1672
|
-
"line":
|
|
1711
|
+
"line": 31
|
|
1673
1712
|
},
|
|
1674
1713
|
"name": "lambdaAutoDiscover",
|
|
1675
1714
|
"optional": true,
|
|
@@ -1687,7 +1726,7 @@
|
|
|
1687
1726
|
"immutable": true,
|
|
1688
1727
|
"locationInModule": {
|
|
1689
1728
|
"filename": "src/construct-project-options.ts",
|
|
1690
|
-
"line":
|
|
1729
|
+
"line": 25
|
|
1691
1730
|
},
|
|
1692
1731
|
"name": "lambdaExtensionAutoDiscover",
|
|
1693
1732
|
"optional": true,
|
|
@@ -1705,7 +1744,7 @@
|
|
|
1705
1744
|
"immutable": true,
|
|
1706
1745
|
"locationInModule": {
|
|
1707
1746
|
"filename": "src/construct-project-options.ts",
|
|
1708
|
-
"line":
|
|
1747
|
+
"line": 19
|
|
1709
1748
|
},
|
|
1710
1749
|
"name": "lambdaOptions",
|
|
1711
1750
|
"optional": true,
|
|
@@ -1723,7 +1762,7 @@
|
|
|
1723
1762
|
"immutable": true,
|
|
1724
1763
|
"locationInModule": {
|
|
1725
1764
|
"filename": "src/construct-project-options.ts",
|
|
1726
|
-
"line":
|
|
1765
|
+
"line": 268
|
|
1727
1766
|
},
|
|
1728
1767
|
"name": "libdir",
|
|
1729
1768
|
"optional": true,
|
|
@@ -1742,7 +1781,7 @@
|
|
|
1742
1781
|
"immutable": true,
|
|
1743
1782
|
"locationInModule": {
|
|
1744
1783
|
"filename": "src/construct-project-options.ts",
|
|
1745
|
-
"line":
|
|
1784
|
+
"line": 892
|
|
1746
1785
|
},
|
|
1747
1786
|
"name": "license",
|
|
1748
1787
|
"optional": true,
|
|
@@ -1760,7 +1799,7 @@
|
|
|
1760
1799
|
"immutable": true,
|
|
1761
1800
|
"locationInModule": {
|
|
1762
1801
|
"filename": "src/construct-project-options.ts",
|
|
1763
|
-
"line":
|
|
1802
|
+
"line": 884
|
|
1764
1803
|
},
|
|
1765
1804
|
"name": "licensed",
|
|
1766
1805
|
"optional": true,
|
|
@@ -1778,7 +1817,7 @@
|
|
|
1778
1817
|
"immutable": true,
|
|
1779
1818
|
"locationInModule": {
|
|
1780
1819
|
"filename": "src/construct-project-options.ts",
|
|
1781
|
-
"line":
|
|
1820
|
+
"line": 1196
|
|
1782
1821
|
},
|
|
1783
1822
|
"name": "logging",
|
|
1784
1823
|
"optional": true,
|
|
@@ -1797,7 +1836,7 @@
|
|
|
1797
1836
|
"immutable": true,
|
|
1798
1837
|
"locationInModule": {
|
|
1799
1838
|
"filename": "src/construct-project-options.ts",
|
|
1800
|
-
"line":
|
|
1839
|
+
"line": 729
|
|
1801
1840
|
},
|
|
1802
1841
|
"name": "majorVersion",
|
|
1803
1842
|
"optional": true,
|
|
@@ -1816,7 +1855,7 @@
|
|
|
1816
1855
|
"immutable": true,
|
|
1817
1856
|
"locationInModule": {
|
|
1818
1857
|
"filename": "src/construct-project-options.ts",
|
|
1819
|
-
"line":
|
|
1858
|
+
"line": 878
|
|
1820
1859
|
},
|
|
1821
1860
|
"name": "maxNodeVersion",
|
|
1822
1861
|
"optional": true,
|
|
@@ -1835,7 +1874,7 @@
|
|
|
1835
1874
|
"immutable": true,
|
|
1836
1875
|
"locationInModule": {
|
|
1837
1876
|
"filename": "src/construct-project-options.ts",
|
|
1838
|
-
"line":
|
|
1877
|
+
"line": 721
|
|
1839
1878
|
},
|
|
1840
1879
|
"name": "minMajorVersion",
|
|
1841
1880
|
"optional": true,
|
|
@@ -1854,7 +1893,7 @@
|
|
|
1854
1893
|
"immutable": true,
|
|
1855
1894
|
"locationInModule": {
|
|
1856
1895
|
"filename": "src/construct-project-options.ts",
|
|
1857
|
-
"line":
|
|
1896
|
+
"line": 867
|
|
1858
1897
|
},
|
|
1859
1898
|
"name": "minNodeVersion",
|
|
1860
1899
|
"optional": true,
|
|
@@ -1873,7 +1912,7 @@
|
|
|
1873
1912
|
"immutable": true,
|
|
1874
1913
|
"locationInModule": {
|
|
1875
1914
|
"filename": "src/construct-project-options.ts",
|
|
1876
|
-
"line":
|
|
1915
|
+
"line": 711
|
|
1877
1916
|
},
|
|
1878
1917
|
"name": "nextVersionCommand",
|
|
1879
1918
|
"optional": true,
|
|
@@ -1891,7 +1930,7 @@
|
|
|
1891
1930
|
"immutable": true,
|
|
1892
1931
|
"locationInModule": {
|
|
1893
1932
|
"filename": "src/construct-project-options.ts",
|
|
1894
|
-
"line":
|
|
1933
|
+
"line": 852
|
|
1895
1934
|
},
|
|
1896
1935
|
"name": "npmAccess",
|
|
1897
1936
|
"optional": true,
|
|
@@ -1910,7 +1949,7 @@
|
|
|
1910
1949
|
"immutable": true,
|
|
1911
1950
|
"locationInModule": {
|
|
1912
1951
|
"filename": "src/construct-project-options.ts",
|
|
1913
|
-
"line":
|
|
1952
|
+
"line": 687
|
|
1914
1953
|
},
|
|
1915
1954
|
"name": "npmDistTag",
|
|
1916
1955
|
"optional": true,
|
|
@@ -1928,7 +1967,7 @@
|
|
|
1928
1967
|
"immutable": true,
|
|
1929
1968
|
"locationInModule": {
|
|
1930
1969
|
"filename": "src/construct-project-options.ts",
|
|
1931
|
-
"line":
|
|
1970
|
+
"line": 412
|
|
1932
1971
|
},
|
|
1933
1972
|
"name": "npmignoreEnabled",
|
|
1934
1973
|
"optional": true,
|
|
@@ -1945,7 +1984,7 @@
|
|
|
1945
1984
|
"immutable": true,
|
|
1946
1985
|
"locationInModule": {
|
|
1947
1986
|
"filename": "src/construct-project-options.ts",
|
|
1948
|
-
"line":
|
|
1987
|
+
"line": 406
|
|
1949
1988
|
},
|
|
1950
1989
|
"name": "npmIgnoreOptions",
|
|
1951
1990
|
"optional": true,
|
|
@@ -1964,7 +2003,7 @@
|
|
|
1964
2003
|
"immutable": true,
|
|
1965
2004
|
"locationInModule": {
|
|
1966
2005
|
"filename": "src/construct-project-options.ts",
|
|
1967
|
-
"line":
|
|
2006
|
+
"line": 844
|
|
1968
2007
|
},
|
|
1969
2008
|
"name": "npmProvenance",
|
|
1970
2009
|
"optional": true,
|
|
@@ -1983,7 +2022,7 @@
|
|
|
1983
2022
|
"immutable": true,
|
|
1984
2023
|
"locationInModule": {
|
|
1985
2024
|
"filename": "src/construct-project-options.ts",
|
|
1986
|
-
"line":
|
|
2025
|
+
"line": 833
|
|
1987
2026
|
},
|
|
1988
2027
|
"name": "npmRegistryUrl",
|
|
1989
2028
|
"optional": true,
|
|
@@ -2001,7 +2040,7 @@
|
|
|
2001
2040
|
"immutable": true,
|
|
2002
2041
|
"locationInModule": {
|
|
2003
2042
|
"filename": "src/construct-project-options.ts",
|
|
2004
|
-
"line":
|
|
2043
|
+
"line": 826
|
|
2005
2044
|
},
|
|
2006
2045
|
"name": "npmTokenSecret",
|
|
2007
2046
|
"optional": true,
|
|
@@ -2019,7 +2058,7 @@
|
|
|
2019
2058
|
"immutable": true,
|
|
2020
2059
|
"locationInModule": {
|
|
2021
2060
|
"filename": "src/construct-project-options.ts",
|
|
2022
|
-
"line":
|
|
2061
|
+
"line": 820
|
|
2023
2062
|
},
|
|
2024
2063
|
"name": "npmTrustedPublishing",
|
|
2025
2064
|
"optional": true,
|
|
@@ -2038,7 +2077,7 @@
|
|
|
2038
2077
|
"immutable": true,
|
|
2039
2078
|
"locationInModule": {
|
|
2040
2079
|
"filename": "src/construct-project-options.ts",
|
|
2041
|
-
"line":
|
|
2080
|
+
"line": 1190
|
|
2042
2081
|
},
|
|
2043
2082
|
"name": "outdir",
|
|
2044
2083
|
"optional": true,
|
|
@@ -2056,7 +2095,7 @@
|
|
|
2056
2095
|
"immutable": true,
|
|
2057
2096
|
"locationInModule": {
|
|
2058
2097
|
"filename": "src/construct-project-options.ts",
|
|
2059
|
-
"line":
|
|
2098
|
+
"line": 401
|
|
2060
2099
|
},
|
|
2061
2100
|
"name": "package",
|
|
2062
2101
|
"optional": true,
|
|
@@ -2067,14 +2106,17 @@
|
|
|
2067
2106
|
{
|
|
2068
2107
|
"abstract": true,
|
|
2069
2108
|
"docs": {
|
|
2070
|
-
"
|
|
2109
|
+
"custom": {
|
|
2110
|
+
"pjnew": "$PACKAGE_MANAGER"
|
|
2111
|
+
},
|
|
2112
|
+
"default": "- Detected from the calling process or `YARN_CLASSIC` if detection fails.",
|
|
2071
2113
|
"stability": "stable",
|
|
2072
2114
|
"summary": "The Node Package Manager used to execute scripts."
|
|
2073
2115
|
},
|
|
2074
2116
|
"immutable": true,
|
|
2075
2117
|
"locationInModule": {
|
|
2076
2118
|
"filename": "src/construct-project-options.ts",
|
|
2077
|
-
"line":
|
|
2119
|
+
"line": 814
|
|
2078
2120
|
},
|
|
2079
2121
|
"name": "packageManager",
|
|
2080
2122
|
"optional": true,
|
|
@@ -2095,7 +2137,7 @@
|
|
|
2095
2137
|
"immutable": true,
|
|
2096
2138
|
"locationInModule": {
|
|
2097
2139
|
"filename": "src/construct-project-options.ts",
|
|
2098
|
-
"line":
|
|
2140
|
+
"line": 807
|
|
2099
2141
|
},
|
|
2100
2142
|
"name": "packageName",
|
|
2101
2143
|
"optional": true,
|
|
@@ -2112,7 +2154,7 @@
|
|
|
2112
2154
|
"immutable": true,
|
|
2113
2155
|
"locationInModule": {
|
|
2114
2156
|
"filename": "src/construct-project-options.ts",
|
|
2115
|
-
"line":
|
|
2157
|
+
"line": 1179
|
|
2116
2158
|
},
|
|
2117
2159
|
"name": "parent",
|
|
2118
2160
|
"optional": true,
|
|
@@ -2129,7 +2171,7 @@
|
|
|
2129
2171
|
"immutable": true,
|
|
2130
2172
|
"locationInModule": {
|
|
2131
2173
|
"filename": "src/construct-project-options.ts",
|
|
2132
|
-
"line":
|
|
2174
|
+
"line": 800
|
|
2133
2175
|
},
|
|
2134
2176
|
"name": "peerDependencyOptions",
|
|
2135
2177
|
"optional": true,
|
|
@@ -2148,7 +2190,7 @@
|
|
|
2148
2190
|
"immutable": true,
|
|
2149
2191
|
"locationInModule": {
|
|
2150
2192
|
"filename": "src/construct-project-options.ts",
|
|
2151
|
-
"line":
|
|
2193
|
+
"line": 795
|
|
2152
2194
|
},
|
|
2153
2195
|
"name": "peerDeps",
|
|
2154
2196
|
"optional": true,
|
|
@@ -2164,14 +2206,14 @@
|
|
|
2164
2206
|
{
|
|
2165
2207
|
"abstract": true,
|
|
2166
2208
|
"docs": {
|
|
2167
|
-
"default": "\"
|
|
2209
|
+
"default": "\"10.33.0\"",
|
|
2168
2210
|
"stability": "stable",
|
|
2169
2211
|
"summary": "The version of PNPM to use if using PNPM as a package manager."
|
|
2170
2212
|
},
|
|
2171
2213
|
"immutable": true,
|
|
2172
2214
|
"locationInModule": {
|
|
2173
2215
|
"filename": "src/construct-project-options.ts",
|
|
2174
|
-
"line":
|
|
2216
|
+
"line": 776
|
|
2175
2217
|
},
|
|
2176
2218
|
"name": "pnpmVersion",
|
|
2177
2219
|
"optional": true,
|
|
@@ -2189,7 +2231,7 @@
|
|
|
2189
2231
|
"immutable": true,
|
|
2190
2232
|
"locationInModule": {
|
|
2191
2233
|
"filename": "src/construct-project-options.ts",
|
|
2192
|
-
"line":
|
|
2234
|
+
"line": 679
|
|
2193
2235
|
},
|
|
2194
2236
|
"name": "postBuildSteps",
|
|
2195
2237
|
"optional": true,
|
|
@@ -2212,7 +2254,7 @@
|
|
|
2212
2254
|
"immutable": true,
|
|
2213
2255
|
"locationInModule": {
|
|
2214
2256
|
"filename": "src/construct-project-options.ts",
|
|
2215
|
-
"line":
|
|
2257
|
+
"line": 673
|
|
2216
2258
|
},
|
|
2217
2259
|
"name": "prerelease",
|
|
2218
2260
|
"optional": true,
|
|
@@ -2230,7 +2272,7 @@
|
|
|
2230
2272
|
"immutable": true,
|
|
2231
2273
|
"locationInModule": {
|
|
2232
2274
|
"filename": "src/construct-project-options.ts",
|
|
2233
|
-
"line":
|
|
2275
|
+
"line": 395
|
|
2234
2276
|
},
|
|
2235
2277
|
"name": "prettier",
|
|
2236
2278
|
"optional": true,
|
|
@@ -2248,7 +2290,7 @@
|
|
|
2248
2290
|
"immutable": true,
|
|
2249
2291
|
"locationInModule": {
|
|
2250
2292
|
"filename": "src/construct-project-options.ts",
|
|
2251
|
-
"line":
|
|
2293
|
+
"line": 389
|
|
2252
2294
|
},
|
|
2253
2295
|
"name": "prettierOptions",
|
|
2254
2296
|
"optional": true,
|
|
@@ -2256,6 +2298,24 @@
|
|
|
2256
2298
|
"fqn": "projen.javascript.PrettierOptions"
|
|
2257
2299
|
}
|
|
2258
2300
|
},
|
|
2301
|
+
{
|
|
2302
|
+
"abstract": true,
|
|
2303
|
+
"docs": {
|
|
2304
|
+
"default": "false",
|
|
2305
|
+
"stability": "stable",
|
|
2306
|
+
"summary": "Generate a project tree file (`.projen/tree.json`) that shows all components and their relationships. Useful for understanding your project structure and debugging."
|
|
2307
|
+
},
|
|
2308
|
+
"immutable": true,
|
|
2309
|
+
"locationInModule": {
|
|
2310
|
+
"filename": "src/construct-project-options.ts",
|
|
2311
|
+
"line": 1174
|
|
2312
|
+
},
|
|
2313
|
+
"name": "projectTree",
|
|
2314
|
+
"optional": true,
|
|
2315
|
+
"type": {
|
|
2316
|
+
"primitive": "boolean"
|
|
2317
|
+
}
|
|
2318
|
+
},
|
|
2259
2319
|
{
|
|
2260
2320
|
"abstract": true,
|
|
2261
2321
|
"docs": {
|
|
@@ -2267,7 +2327,7 @@
|
|
|
2267
2327
|
"immutable": true,
|
|
2268
2328
|
"locationInModule": {
|
|
2269
2329
|
"filename": "src/construct-project-options.ts",
|
|
2270
|
-
"line":
|
|
2330
|
+
"line": 1168
|
|
2271
2331
|
},
|
|
2272
2332
|
"name": "projenCommand",
|
|
2273
2333
|
"optional": true,
|
|
@@ -2285,7 +2345,7 @@
|
|
|
2285
2345
|
"immutable": true,
|
|
2286
2346
|
"locationInModule": {
|
|
2287
2347
|
"filename": "src/construct-project-options.ts",
|
|
2288
|
-
"line":
|
|
2348
|
+
"line": 1084
|
|
2289
2349
|
},
|
|
2290
2350
|
"name": "projenCredentials",
|
|
2291
2351
|
"optional": true,
|
|
@@ -2303,7 +2363,7 @@
|
|
|
2303
2363
|
"immutable": true,
|
|
2304
2364
|
"locationInModule": {
|
|
2305
2365
|
"filename": "src/construct-project-options.ts",
|
|
2306
|
-
"line":
|
|
2366
|
+
"line": 383
|
|
2307
2367
|
},
|
|
2308
2368
|
"name": "projenDevDependency",
|
|
2309
2369
|
"optional": true,
|
|
@@ -2321,7 +2381,7 @@
|
|
|
2321
2381
|
"immutable": true,
|
|
2322
2382
|
"locationInModule": {
|
|
2323
2383
|
"filename": "src/construct-project-options.ts",
|
|
2324
|
-
"line":
|
|
2384
|
+
"line": 377
|
|
2325
2385
|
},
|
|
2326
2386
|
"name": "projenrcJs",
|
|
2327
2387
|
"optional": true,
|
|
@@ -2339,7 +2399,7 @@
|
|
|
2339
2399
|
"immutable": true,
|
|
2340
2400
|
"locationInModule": {
|
|
2341
2401
|
"filename": "src/construct-project-options.ts",
|
|
2342
|
-
"line":
|
|
2402
|
+
"line": 1161
|
|
2343
2403
|
},
|
|
2344
2404
|
"name": "projenrcJson",
|
|
2345
2405
|
"optional": true,
|
|
@@ -2357,7 +2417,7 @@
|
|
|
2357
2417
|
"immutable": true,
|
|
2358
2418
|
"locationInModule": {
|
|
2359
2419
|
"filename": "src/construct-project-options.ts",
|
|
2360
|
-
"line":
|
|
2420
|
+
"line": 1155
|
|
2361
2421
|
},
|
|
2362
2422
|
"name": "projenrcJsonOptions",
|
|
2363
2423
|
"optional": true,
|
|
@@ -2375,7 +2435,7 @@
|
|
|
2375
2435
|
"immutable": true,
|
|
2376
2436
|
"locationInModule": {
|
|
2377
2437
|
"filename": "src/construct-project-options.ts",
|
|
2378
|
-
"line":
|
|
2438
|
+
"line": 371
|
|
2379
2439
|
},
|
|
2380
2440
|
"name": "projenrcJsOptions",
|
|
2381
2441
|
"optional": true,
|
|
@@ -2396,7 +2456,7 @@
|
|
|
2396
2456
|
"immutable": true,
|
|
2397
2457
|
"locationInModule": {
|
|
2398
2458
|
"filename": "src/construct-project-options.ts",
|
|
2399
|
-
"line":
|
|
2459
|
+
"line": 262
|
|
2400
2460
|
},
|
|
2401
2461
|
"name": "projenrcTs",
|
|
2402
2462
|
"optional": true,
|
|
@@ -2413,7 +2473,7 @@
|
|
|
2413
2473
|
"immutable": true,
|
|
2414
2474
|
"locationInModule": {
|
|
2415
2475
|
"filename": "src/construct-project-options.ts",
|
|
2416
|
-
"line":
|
|
2476
|
+
"line": 255
|
|
2417
2477
|
},
|
|
2418
2478
|
"name": "projenrcTsOptions",
|
|
2419
2479
|
"optional": true,
|
|
@@ -2431,7 +2491,7 @@
|
|
|
2431
2491
|
"immutable": true,
|
|
2432
2492
|
"locationInModule": {
|
|
2433
2493
|
"filename": "src/construct-project-options.ts",
|
|
2434
|
-
"line":
|
|
2494
|
+
"line": 365
|
|
2435
2495
|
},
|
|
2436
2496
|
"name": "projenVersion",
|
|
2437
2497
|
"optional": true,
|
|
@@ -2449,7 +2509,7 @@
|
|
|
2449
2509
|
"immutable": true,
|
|
2450
2510
|
"locationInModule": {
|
|
2451
2511
|
"filename": "src/construct-project-options.ts",
|
|
2452
|
-
"line":
|
|
2512
|
+
"line": 667
|
|
2453
2513
|
},
|
|
2454
2514
|
"name": "publishDryRun",
|
|
2455
2515
|
"optional": true,
|
|
@@ -2468,7 +2528,7 @@
|
|
|
2468
2528
|
"immutable": true,
|
|
2469
2529
|
"locationInModule": {
|
|
2470
2530
|
"filename": "src/construct-project-options.ts",
|
|
2471
|
-
"line":
|
|
2531
|
+
"line": 661
|
|
2472
2532
|
},
|
|
2473
2533
|
"name": "publishTasks",
|
|
2474
2534
|
"optional": true,
|
|
@@ -2486,7 +2546,7 @@
|
|
|
2486
2546
|
"immutable": true,
|
|
2487
2547
|
"locationInModule": {
|
|
2488
2548
|
"filename": "src/construct-project-options.ts",
|
|
2489
|
-
"line":
|
|
2549
|
+
"line": 130
|
|
2490
2550
|
},
|
|
2491
2551
|
"name": "publishToGo",
|
|
2492
2552
|
"optional": true,
|
|
@@ -2504,7 +2564,7 @@
|
|
|
2504
2564
|
"immutable": true,
|
|
2505
2565
|
"locationInModule": {
|
|
2506
2566
|
"filename": "src/construct-project-options.ts",
|
|
2507
|
-
"line":
|
|
2567
|
+
"line": 124
|
|
2508
2568
|
},
|
|
2509
2569
|
"name": "publishToMaven",
|
|
2510
2570
|
"optional": true,
|
|
@@ -2522,7 +2582,7 @@
|
|
|
2522
2582
|
"immutable": true,
|
|
2523
2583
|
"locationInModule": {
|
|
2524
2584
|
"filename": "src/construct-project-options.ts",
|
|
2525
|
-
"line":
|
|
2585
|
+
"line": 118
|
|
2526
2586
|
},
|
|
2527
2587
|
"name": "publishToNuget",
|
|
2528
2588
|
"optional": true,
|
|
@@ -2540,7 +2600,7 @@
|
|
|
2540
2600
|
"immutable": true,
|
|
2541
2601
|
"locationInModule": {
|
|
2542
2602
|
"filename": "src/construct-project-options.ts",
|
|
2543
|
-
"line":
|
|
2603
|
+
"line": 112
|
|
2544
2604
|
},
|
|
2545
2605
|
"name": "publishToPypi",
|
|
2546
2606
|
"optional": true,
|
|
@@ -2558,7 +2618,7 @@
|
|
|
2558
2618
|
"immutable": true,
|
|
2559
2619
|
"locationInModule": {
|
|
2560
2620
|
"filename": "src/construct-project-options.ts",
|
|
2561
|
-
"line":
|
|
2621
|
+
"line": 359
|
|
2562
2622
|
},
|
|
2563
2623
|
"name": "pullRequestTemplate",
|
|
2564
2624
|
"optional": true,
|
|
@@ -2576,7 +2636,7 @@
|
|
|
2576
2636
|
"immutable": true,
|
|
2577
2637
|
"locationInModule": {
|
|
2578
2638
|
"filename": "src/construct-project-options.ts",
|
|
2579
|
-
"line":
|
|
2639
|
+
"line": 353
|
|
2580
2640
|
},
|
|
2581
2641
|
"name": "pullRequestTemplateContents",
|
|
2582
2642
|
"optional": true,
|
|
@@ -2599,7 +2659,7 @@
|
|
|
2599
2659
|
"immutable": true,
|
|
2600
2660
|
"locationInModule": {
|
|
2601
2661
|
"filename": "src/construct-project-options.ts",
|
|
2602
|
-
"line":
|
|
2662
|
+
"line": 1078
|
|
2603
2663
|
},
|
|
2604
2664
|
"name": "readme",
|
|
2605
2665
|
"optional": true,
|
|
@@ -2617,7 +2677,7 @@
|
|
|
2617
2677
|
"immutable": true,
|
|
2618
2678
|
"locationInModule": {
|
|
2619
2679
|
"filename": "src/construct-project-options.ts",
|
|
2620
|
-
"line":
|
|
2680
|
+
"line": 653
|
|
2621
2681
|
},
|
|
2622
2682
|
"name": "releasableCommits",
|
|
2623
2683
|
"optional": true,
|
|
@@ -2635,7 +2695,7 @@
|
|
|
2635
2695
|
"immutable": true,
|
|
2636
2696
|
"locationInModule": {
|
|
2637
2697
|
"filename": "src/construct-project-options.ts",
|
|
2638
|
-
"line":
|
|
2698
|
+
"line": 347
|
|
2639
2699
|
},
|
|
2640
2700
|
"name": "release",
|
|
2641
2701
|
"optional": true,
|
|
@@ -2654,7 +2714,7 @@
|
|
|
2654
2714
|
"immutable": true,
|
|
2655
2715
|
"locationInModule": {
|
|
2656
2716
|
"filename": "src/construct-project-options.ts",
|
|
2657
|
-
"line":
|
|
2717
|
+
"line": 647
|
|
2658
2718
|
},
|
|
2659
2719
|
"name": "releaseBranches",
|
|
2660
2720
|
"optional": true,
|
|
@@ -2678,7 +2738,7 @@
|
|
|
2678
2738
|
"immutable": true,
|
|
2679
2739
|
"locationInModule": {
|
|
2680
2740
|
"filename": "src/construct-project-options.ts",
|
|
2681
|
-
"line":
|
|
2741
|
+
"line": 634
|
|
2682
2742
|
},
|
|
2683
2743
|
"name": "releaseEnvironment",
|
|
2684
2744
|
"optional": true,
|
|
@@ -2696,7 +2756,7 @@
|
|
|
2696
2756
|
"immutable": true,
|
|
2697
2757
|
"locationInModule": {
|
|
2698
2758
|
"filename": "src/construct-project-options.ts",
|
|
2699
|
-
"line":
|
|
2759
|
+
"line": 623
|
|
2700
2760
|
},
|
|
2701
2761
|
"name": "releaseFailureIssue",
|
|
2702
2762
|
"optional": true,
|
|
@@ -2715,7 +2775,7 @@
|
|
|
2715
2775
|
"immutable": true,
|
|
2716
2776
|
"locationInModule": {
|
|
2717
2777
|
"filename": "src/construct-project-options.ts",
|
|
2718
|
-
"line":
|
|
2778
|
+
"line": 617
|
|
2719
2779
|
},
|
|
2720
2780
|
"name": "releaseFailureIssueLabel",
|
|
2721
2781
|
"optional": true,
|
|
@@ -2734,7 +2794,7 @@
|
|
|
2734
2794
|
"immutable": true,
|
|
2735
2795
|
"locationInModule": {
|
|
2736
2796
|
"filename": "src/construct-project-options.ts",
|
|
2737
|
-
"line":
|
|
2797
|
+
"line": 610
|
|
2738
2798
|
},
|
|
2739
2799
|
"name": "releaseTagPrefix",
|
|
2740
2800
|
"optional": true,
|
|
@@ -2752,7 +2812,7 @@
|
|
|
2752
2812
|
"immutable": true,
|
|
2753
2813
|
"locationInModule": {
|
|
2754
2814
|
"filename": "src/construct-project-options.ts",
|
|
2755
|
-
"line":
|
|
2815
|
+
"line": 341
|
|
2756
2816
|
},
|
|
2757
2817
|
"name": "releaseToNpm",
|
|
2758
2818
|
"optional": true,
|
|
@@ -2770,7 +2830,7 @@
|
|
|
2770
2830
|
"immutable": true,
|
|
2771
2831
|
"locationInModule": {
|
|
2772
2832
|
"filename": "src/construct-project-options.ts",
|
|
2773
|
-
"line":
|
|
2833
|
+
"line": 600
|
|
2774
2834
|
},
|
|
2775
2835
|
"name": "releaseTrigger",
|
|
2776
2836
|
"optional": true,
|
|
@@ -2788,7 +2848,7 @@
|
|
|
2788
2848
|
"immutable": true,
|
|
2789
2849
|
"locationInModule": {
|
|
2790
2850
|
"filename": "src/construct-project-options.ts",
|
|
2791
|
-
"line":
|
|
2851
|
+
"line": 594
|
|
2792
2852
|
},
|
|
2793
2853
|
"name": "releaseWorkflowEnv",
|
|
2794
2854
|
"optional": true,
|
|
@@ -2811,7 +2871,7 @@
|
|
|
2811
2871
|
"immutable": true,
|
|
2812
2872
|
"locationInModule": {
|
|
2813
2873
|
"filename": "src/construct-project-options.ts",
|
|
2814
|
-
"line":
|
|
2874
|
+
"line": 588
|
|
2815
2875
|
},
|
|
2816
2876
|
"name": "releaseWorkflowName",
|
|
2817
2877
|
"optional": true,
|
|
@@ -2828,7 +2888,7 @@
|
|
|
2828
2888
|
"immutable": true,
|
|
2829
2889
|
"locationInModule": {
|
|
2830
2890
|
"filename": "src/construct-project-options.ts",
|
|
2831
|
-
"line":
|
|
2891
|
+
"line": 582
|
|
2832
2892
|
},
|
|
2833
2893
|
"name": "releaseWorkflowSetupSteps",
|
|
2834
2894
|
"optional": true,
|
|
@@ -2851,7 +2911,7 @@
|
|
|
2851
2911
|
"immutable": true,
|
|
2852
2912
|
"locationInModule": {
|
|
2853
2913
|
"filename": "src/construct-project-options.ts",
|
|
2854
|
-
"line":
|
|
2914
|
+
"line": 1149
|
|
2855
2915
|
},
|
|
2856
2916
|
"name": "renovatebot",
|
|
2857
2917
|
"optional": true,
|
|
@@ -2869,7 +2929,7 @@
|
|
|
2869
2929
|
"immutable": true,
|
|
2870
2930
|
"locationInModule": {
|
|
2871
2931
|
"filename": "src/construct-project-options.ts",
|
|
2872
|
-
"line":
|
|
2932
|
+
"line": 1143
|
|
2873
2933
|
},
|
|
2874
2934
|
"name": "renovatebotOptions",
|
|
2875
2935
|
"optional": true,
|
|
@@ -2887,7 +2947,7 @@
|
|
|
2887
2947
|
"immutable": true,
|
|
2888
2948
|
"locationInModule": {
|
|
2889
2949
|
"filename": "src/construct-project-options.ts",
|
|
2890
|
-
"line":
|
|
2950
|
+
"line": 770
|
|
2891
2951
|
},
|
|
2892
2952
|
"name": "repository",
|
|
2893
2953
|
"optional": true,
|
|
@@ -2904,7 +2964,7 @@
|
|
|
2904
2964
|
"immutable": true,
|
|
2905
2965
|
"locationInModule": {
|
|
2906
2966
|
"filename": "src/construct-project-options.ts",
|
|
2907
|
-
"line":
|
|
2967
|
+
"line": 764
|
|
2908
2968
|
},
|
|
2909
2969
|
"name": "repositoryDirectory",
|
|
2910
2970
|
"optional": true,
|
|
@@ -2921,7 +2981,7 @@
|
|
|
2921
2981
|
"immutable": true,
|
|
2922
2982
|
"locationInModule": {
|
|
2923
2983
|
"filename": "src/construct-project-options.ts",
|
|
2924
|
-
"line":
|
|
2984
|
+
"line": 106
|
|
2925
2985
|
},
|
|
2926
2986
|
"name": "rootdir",
|
|
2927
2987
|
"optional": true,
|
|
@@ -2939,7 +2999,7 @@
|
|
|
2939
2999
|
"immutable": true,
|
|
2940
3000
|
"locationInModule": {
|
|
2941
3001
|
"filename": "src/construct-project-options.ts",
|
|
2942
|
-
"line":
|
|
3002
|
+
"line": 250
|
|
2943
3003
|
},
|
|
2944
3004
|
"name": "sampleCode",
|
|
2945
3005
|
"optional": true,
|
|
@@ -2957,7 +3017,7 @@
|
|
|
2957
3017
|
"immutable": true,
|
|
2958
3018
|
"locationInModule": {
|
|
2959
3019
|
"filename": "src/construct-project-options.ts",
|
|
2960
|
-
"line":
|
|
3020
|
+
"line": 759
|
|
2961
3021
|
},
|
|
2962
3022
|
"name": "scopedPackagesOptions",
|
|
2963
3023
|
"optional": true,
|
|
@@ -2970,6 +3030,24 @@
|
|
|
2970
3030
|
}
|
|
2971
3031
|
}
|
|
2972
3032
|
},
|
|
3033
|
+
{
|
|
3034
|
+
"abstract": true,
|
|
3035
|
+
"docs": {
|
|
3036
|
+
"default": "true",
|
|
3037
|
+
"stability": "stable",
|
|
3038
|
+
"summary": "Automatically adds an `awscdk.SingletonFunction` for each `.singleton-lambda.ts` handler in your source tree. If this is disabled, you can manually add an `awscdk.AutoDiscover` component to your project."
|
|
3039
|
+
},
|
|
3040
|
+
"immutable": true,
|
|
3041
|
+
"locationInModule": {
|
|
3042
|
+
"filename": "src/construct-project-options.ts",
|
|
3043
|
+
"line": 13
|
|
3044
|
+
},
|
|
3045
|
+
"name": "singletonLambdaAutoDiscover",
|
|
3046
|
+
"optional": true,
|
|
3047
|
+
"type": {
|
|
3048
|
+
"primitive": "boolean"
|
|
3049
|
+
}
|
|
3050
|
+
},
|
|
2973
3051
|
{
|
|
2974
3052
|
"abstract": true,
|
|
2975
3053
|
"docs": {
|
|
@@ -2980,7 +3058,7 @@
|
|
|
2980
3058
|
"immutable": true,
|
|
2981
3059
|
"locationInModule": {
|
|
2982
3060
|
"filename": "src/construct-project-options.ts",
|
|
2983
|
-
"line":
|
|
3061
|
+
"line": 244
|
|
2984
3062
|
},
|
|
2985
3063
|
"name": "srcdir",
|
|
2986
3064
|
"optional": true,
|
|
@@ -2997,7 +3075,7 @@
|
|
|
2997
3075
|
"immutable": true,
|
|
2998
3076
|
"locationInModule": {
|
|
2999
3077
|
"filename": "src/construct-project-options.ts",
|
|
3000
|
-
"line":
|
|
3078
|
+
"line": 753
|
|
3001
3079
|
},
|
|
3002
3080
|
"name": "stability",
|
|
3003
3081
|
"optional": true,
|
|
@@ -3016,7 +3094,7 @@
|
|
|
3016
3094
|
"immutable": true,
|
|
3017
3095
|
"locationInModule": {
|
|
3018
3096
|
"filename": "src/construct-project-options.ts",
|
|
3019
|
-
"line":
|
|
3097
|
+
"line": 1072
|
|
3020
3098
|
},
|
|
3021
3099
|
"name": "stale",
|
|
3022
3100
|
"optional": true,
|
|
@@ -3035,7 +3113,7 @@
|
|
|
3035
3113
|
"immutable": true,
|
|
3036
3114
|
"locationInModule": {
|
|
3037
3115
|
"filename": "src/construct-project-options.ts",
|
|
3038
|
-
"line":
|
|
3116
|
+
"line": 1065
|
|
3039
3117
|
},
|
|
3040
3118
|
"name": "staleOptions",
|
|
3041
3119
|
"optional": true,
|
|
@@ -3054,7 +3132,7 @@
|
|
|
3054
3132
|
"immutable": true,
|
|
3055
3133
|
"locationInModule": {
|
|
3056
3134
|
"filename": "src/construct-project-options.ts",
|
|
3057
|
-
"line":
|
|
3135
|
+
"line": 238
|
|
3058
3136
|
},
|
|
3059
3137
|
"name": "testdir",
|
|
3060
3138
|
"optional": true,
|
|
@@ -3072,7 +3150,7 @@
|
|
|
3072
3150
|
"immutable": true,
|
|
3073
3151
|
"locationInModule": {
|
|
3074
3152
|
"filename": "src/construct-project-options.ts",
|
|
3075
|
-
"line":
|
|
3153
|
+
"line": 228
|
|
3076
3154
|
},
|
|
3077
3155
|
"name": "tsconfig",
|
|
3078
3156
|
"optional": true,
|
|
@@ -3090,7 +3168,7 @@
|
|
|
3090
3168
|
"immutable": true,
|
|
3091
3169
|
"locationInModule": {
|
|
3092
3170
|
"filename": "src/construct-project-options.ts",
|
|
3093
|
-
"line":
|
|
3171
|
+
"line": 222
|
|
3094
3172
|
},
|
|
3095
3173
|
"name": "tsconfigDev",
|
|
3096
3174
|
"optional": true,
|
|
@@ -3108,7 +3186,7 @@
|
|
|
3108
3186
|
"immutable": true,
|
|
3109
3187
|
"locationInModule": {
|
|
3110
3188
|
"filename": "src/construct-project-options.ts",
|
|
3111
|
-
"line":
|
|
3189
|
+
"line": 216
|
|
3112
3190
|
},
|
|
3113
3191
|
"name": "tsconfigDevFile",
|
|
3114
3192
|
"optional": true,
|
|
@@ -3125,7 +3203,7 @@
|
|
|
3125
3203
|
"immutable": true,
|
|
3126
3204
|
"locationInModule": {
|
|
3127
3205
|
"filename": "src/construct-project-options.ts",
|
|
3128
|
-
"line":
|
|
3206
|
+
"line": 210
|
|
3129
3207
|
},
|
|
3130
3208
|
"name": "tsJestOptions",
|
|
3131
3209
|
"optional": true,
|
|
@@ -3144,7 +3222,7 @@
|
|
|
3144
3222
|
"immutable": true,
|
|
3145
3223
|
"locationInModule": {
|
|
3146
3224
|
"filename": "src/construct-project-options.ts",
|
|
3147
|
-
"line":
|
|
3225
|
+
"line": 205
|
|
3148
3226
|
},
|
|
3149
3227
|
"name": "typescriptVersion",
|
|
3150
3228
|
"optional": true,
|
|
@@ -3152,6 +3230,25 @@
|
|
|
3152
3230
|
"primitive": "string"
|
|
3153
3231
|
}
|
|
3154
3232
|
},
|
|
3233
|
+
{
|
|
3234
|
+
"abstract": true,
|
|
3235
|
+
"docs": {
|
|
3236
|
+
"default": "ValidateTsconfig.STRICT",
|
|
3237
|
+
"remarks": "Only relevant when the project synthesizes its own tsconfig\n(i.e. `disableTsconfig` is not set on the TypeScriptProject).",
|
|
3238
|
+
"stability": "stable",
|
|
3239
|
+
"summary": "Level of tsconfig validation jsii should perform on the user-provided tsconfig."
|
|
3240
|
+
},
|
|
3241
|
+
"immutable": true,
|
|
3242
|
+
"locationInModule": {
|
|
3243
|
+
"filename": "src/construct-project-options.ts",
|
|
3244
|
+
"line": 101
|
|
3245
|
+
},
|
|
3246
|
+
"name": "validateTsconfig",
|
|
3247
|
+
"optional": true,
|
|
3248
|
+
"type": {
|
|
3249
|
+
"fqn": "projen.cdk.ValidateTsconfig"
|
|
3250
|
+
}
|
|
3251
|
+
},
|
|
3155
3252
|
{
|
|
3156
3253
|
"abstract": true,
|
|
3157
3254
|
"docs": {
|
|
@@ -3163,7 +3260,7 @@
|
|
|
3163
3260
|
"immutable": true,
|
|
3164
3261
|
"locationInModule": {
|
|
3165
3262
|
"filename": "src/construct-project-options.ts",
|
|
3166
|
-
"line":
|
|
3263
|
+
"line": 577
|
|
3167
3264
|
},
|
|
3168
3265
|
"name": "versionrcOptions",
|
|
3169
3266
|
"optional": true,
|
|
@@ -3187,7 +3284,7 @@
|
|
|
3187
3284
|
"immutable": true,
|
|
3188
3285
|
"locationInModule": {
|
|
3189
3286
|
"filename": "src/construct-project-options.ts",
|
|
3190
|
-
"line":
|
|
3287
|
+
"line": 1058
|
|
3191
3288
|
},
|
|
3192
3289
|
"name": "vscode",
|
|
3193
3290
|
"optional": true,
|
|
@@ -3205,7 +3302,7 @@
|
|
|
3205
3302
|
"immutable": true,
|
|
3206
3303
|
"locationInModule": {
|
|
3207
3304
|
"filename": "src/construct-project-options.ts",
|
|
3208
|
-
"line":
|
|
3305
|
+
"line": 335
|
|
3209
3306
|
},
|
|
3210
3307
|
"name": "workflowBootstrapSteps",
|
|
3211
3308
|
"optional": true,
|
|
@@ -3228,7 +3325,7 @@
|
|
|
3228
3325
|
"immutable": true,
|
|
3229
3326
|
"locationInModule": {
|
|
3230
3327
|
"filename": "src/construct-project-options.ts",
|
|
3231
|
-
"line":
|
|
3328
|
+
"line": 570
|
|
3232
3329
|
},
|
|
3233
3330
|
"name": "workflowContainerImage",
|
|
3234
3331
|
"optional": true,
|
|
@@ -3246,7 +3343,7 @@
|
|
|
3246
3343
|
"immutable": true,
|
|
3247
3344
|
"locationInModule": {
|
|
3248
3345
|
"filename": "src/construct-project-options.ts",
|
|
3249
|
-
"line":
|
|
3346
|
+
"line": 329
|
|
3250
3347
|
},
|
|
3251
3348
|
"name": "workflowGitIdentity",
|
|
3252
3349
|
"optional": true,
|
|
@@ -3265,7 +3362,7 @@
|
|
|
3265
3362
|
"immutable": true,
|
|
3266
3363
|
"locationInModule": {
|
|
3267
3364
|
"filename": "src/construct-project-options.ts",
|
|
3268
|
-
"line":
|
|
3365
|
+
"line": 323
|
|
3269
3366
|
},
|
|
3270
3367
|
"name": "workflowNodeVersion",
|
|
3271
3368
|
"optional": true,
|
|
@@ -3283,7 +3380,7 @@
|
|
|
3283
3380
|
"immutable": true,
|
|
3284
3381
|
"locationInModule": {
|
|
3285
3382
|
"filename": "src/construct-project-options.ts",
|
|
3286
|
-
"line":
|
|
3383
|
+
"line": 316
|
|
3287
3384
|
},
|
|
3288
3385
|
"name": "workflowPackageCache",
|
|
3289
3386
|
"optional": true,
|
|
@@ -3305,7 +3402,7 @@
|
|
|
3305
3402
|
"immutable": true,
|
|
3306
3403
|
"locationInModule": {
|
|
3307
3404
|
"filename": "src/construct-project-options.ts",
|
|
3308
|
-
"line":
|
|
3405
|
+
"line": 564
|
|
3309
3406
|
},
|
|
3310
3407
|
"name": "workflowRunsOn",
|
|
3311
3408
|
"optional": true,
|
|
@@ -3331,7 +3428,7 @@
|
|
|
3331
3428
|
"immutable": true,
|
|
3332
3429
|
"locationInModule": {
|
|
3333
3430
|
"filename": "src/construct-project-options.ts",
|
|
3334
|
-
"line":
|
|
3431
|
+
"line": 556
|
|
3335
3432
|
},
|
|
3336
3433
|
"name": "workflowRunsOnGroup",
|
|
3337
3434
|
"optional": true,
|
|
@@ -3349,7 +3446,7 @@
|
|
|
3349
3446
|
"immutable": true,
|
|
3350
3447
|
"locationInModule": {
|
|
3351
3448
|
"filename": "src/construct-project-options.ts",
|
|
3352
|
-
"line":
|
|
3449
|
+
"line": 748
|
|
3353
3450
|
},
|
|
3354
3451
|
"name": "yarnBerryOptions",
|
|
3355
3452
|
"optional": true,
|
|
@@ -3452,7 +3549,7 @@
|
|
|
3452
3549
|
"immutable": true,
|
|
3453
3550
|
"locationInModule": {
|
|
3454
3551
|
"filename": "src/projen-project-options.ts",
|
|
3455
|
-
"line":
|
|
3552
|
+
"line": 884
|
|
3456
3553
|
},
|
|
3457
3554
|
"name": "authorName",
|
|
3458
3555
|
"type": {
|
|
@@ -3467,13 +3564,31 @@
|
|
|
3467
3564
|
"immutable": true,
|
|
3468
3565
|
"locationInModule": {
|
|
3469
3566
|
"filename": "src/projen-project-options.ts",
|
|
3470
|
-
"line":
|
|
3567
|
+
"line": 1075
|
|
3471
3568
|
},
|
|
3472
3569
|
"name": "repo",
|
|
3473
3570
|
"type": {
|
|
3474
3571
|
"primitive": "string"
|
|
3475
3572
|
}
|
|
3476
3573
|
},
|
|
3574
|
+
{
|
|
3575
|
+
"abstract": true,
|
|
3576
|
+
"docs": {
|
|
3577
|
+
"default": "true",
|
|
3578
|
+
"stability": "stable",
|
|
3579
|
+
"summary": "Automatically add the resolved `packageManager` to `devEngines.packageManager` in `package.json`, setting `onFail` to `ignore`."
|
|
3580
|
+
},
|
|
3581
|
+
"immutable": true,
|
|
3582
|
+
"locationInModule": {
|
|
3583
|
+
"filename": "src/projen-project-options.ts",
|
|
3584
|
+
"line": 903
|
|
3585
|
+
},
|
|
3586
|
+
"name": "addPackageManagerToDevEngines",
|
|
3587
|
+
"optional": true,
|
|
3588
|
+
"type": {
|
|
3589
|
+
"primitive": "boolean"
|
|
3590
|
+
}
|
|
3591
|
+
},
|
|
3477
3592
|
{
|
|
3478
3593
|
"abstract": true,
|
|
3479
3594
|
"docs": {
|
|
@@ -3484,7 +3599,7 @@
|
|
|
3484
3599
|
"immutable": true,
|
|
3485
3600
|
"locationInModule": {
|
|
3486
3601
|
"filename": "src/projen-project-options.ts",
|
|
3487
|
-
"line":
|
|
3602
|
+
"line": 1088
|
|
3488
3603
|
},
|
|
3489
3604
|
"name": "allowedCommitTypes",
|
|
3490
3605
|
"optional": true,
|
|
@@ -3508,7 +3623,7 @@
|
|
|
3508
3623
|
"immutable": true,
|
|
3509
3624
|
"locationInModule": {
|
|
3510
3625
|
"filename": "src/projen-project-options.ts",
|
|
3511
|
-
"line":
|
|
3626
|
+
"line": 897
|
|
3512
3627
|
},
|
|
3513
3628
|
"name": "allowLibraryDependencies",
|
|
3514
3629
|
"optional": true,
|
|
@@ -3526,7 +3641,7 @@
|
|
|
3526
3641
|
"immutable": true,
|
|
3527
3642
|
"locationInModule": {
|
|
3528
3643
|
"filename": "src/projen-project-options.ts",
|
|
3529
|
-
"line":
|
|
3644
|
+
"line": 412
|
|
3530
3645
|
},
|
|
3531
3646
|
"name": "artifactsDirectory",
|
|
3532
3647
|
"optional": true,
|
|
@@ -3545,7 +3660,7 @@
|
|
|
3545
3660
|
"immutable": true,
|
|
3546
3661
|
"locationInModule": {
|
|
3547
3662
|
"filename": "src/projen-project-options.ts",
|
|
3548
|
-
"line":
|
|
3663
|
+
"line": 406
|
|
3549
3664
|
},
|
|
3550
3665
|
"name": "auditDeps",
|
|
3551
3666
|
"optional": true,
|
|
@@ -3563,7 +3678,7 @@
|
|
|
3563
3678
|
"immutable": true,
|
|
3564
3679
|
"locationInModule": {
|
|
3565
3680
|
"filename": "src/projen-project-options.ts",
|
|
3566
|
-
"line":
|
|
3681
|
+
"line": 397
|
|
3567
3682
|
},
|
|
3568
3683
|
"name": "auditDepsOptions",
|
|
3569
3684
|
"optional": true,
|
|
@@ -3581,7 +3696,7 @@
|
|
|
3581
3696
|
"immutable": true,
|
|
3582
3697
|
"locationInModule": {
|
|
3583
3698
|
"filename": "src/projen-project-options.ts",
|
|
3584
|
-
"line":
|
|
3699
|
+
"line": 87
|
|
3585
3700
|
},
|
|
3586
3701
|
"name": "authorAddress",
|
|
3587
3702
|
"optional": true,
|
|
@@ -3598,7 +3713,7 @@
|
|
|
3598
3713
|
"immutable": true,
|
|
3599
3714
|
"locationInModule": {
|
|
3600
3715
|
"filename": "src/projen-project-options.ts",
|
|
3601
|
-
"line":
|
|
3716
|
+
"line": 889
|
|
3602
3717
|
},
|
|
3603
3718
|
"name": "authorEmail",
|
|
3604
3719
|
"optional": true,
|
|
@@ -3615,7 +3730,7 @@
|
|
|
3615
3730
|
"immutable": true,
|
|
3616
3731
|
"locationInModule": {
|
|
3617
3732
|
"filename": "src/projen-project-options.ts",
|
|
3618
|
-
"line":
|
|
3733
|
+
"line": 879
|
|
3619
3734
|
},
|
|
3620
3735
|
"name": "authorOrganization",
|
|
3621
3736
|
"optional": true,
|
|
@@ -3633,7 +3748,7 @@
|
|
|
3633
3748
|
"immutable": true,
|
|
3634
3749
|
"locationInModule": {
|
|
3635
3750
|
"filename": "src/projen-project-options.ts",
|
|
3636
|
-
"line":
|
|
3751
|
+
"line": 989
|
|
3637
3752
|
},
|
|
3638
3753
|
"name": "autoApproveOptions",
|
|
3639
3754
|
"optional": true,
|
|
@@ -3647,12 +3762,12 @@
|
|
|
3647
3762
|
"default": "- true",
|
|
3648
3763
|
"remarks": "Throw if set to true but `autoApproveOptions` are not defined.",
|
|
3649
3764
|
"stability": "stable",
|
|
3650
|
-
"summary": "Automatically approve deps upgrade PRs, allowing them to be merged by mergify (if
|
|
3765
|
+
"summary": "Automatically approve deps upgrade PRs, allowing them to be merged by mergify (if configured)."
|
|
3651
3766
|
},
|
|
3652
3767
|
"immutable": true,
|
|
3653
3768
|
"locationInModule": {
|
|
3654
3769
|
"filename": "src/projen-project-options.ts",
|
|
3655
|
-
"line":
|
|
3770
|
+
"line": 391
|
|
3656
3771
|
},
|
|
3657
3772
|
"name": "autoApproveUpgrades",
|
|
3658
3773
|
"optional": true,
|
|
@@ -3670,7 +3785,7 @@
|
|
|
3670
3785
|
"immutable": true,
|
|
3671
3786
|
"locationInModule": {
|
|
3672
3787
|
"filename": "src/projen-project-options.ts",
|
|
3673
|
-
"line":
|
|
3788
|
+
"line": 874
|
|
3674
3789
|
},
|
|
3675
3790
|
"name": "autoDetectBin",
|
|
3676
3791
|
"optional": true,
|
|
@@ -3689,7 +3804,7 @@
|
|
|
3689
3804
|
"immutable": true,
|
|
3690
3805
|
"locationInModule": {
|
|
3691
3806
|
"filename": "src/projen-project-options.ts",
|
|
3692
|
-
"line":
|
|
3807
|
+
"line": 1094
|
|
3693
3808
|
},
|
|
3694
3809
|
"name": "automationAppName",
|
|
3695
3810
|
"optional": true,
|
|
@@ -3708,7 +3823,7 @@
|
|
|
3708
3823
|
"immutable": true,
|
|
3709
3824
|
"locationInModule": {
|
|
3710
3825
|
"filename": "src/projen-project-options.ts",
|
|
3711
|
-
"line":
|
|
3826
|
+
"line": 1100
|
|
3712
3827
|
},
|
|
3713
3828
|
"name": "automationEnvironment",
|
|
3714
3829
|
"optional": true,
|
|
@@ -3727,7 +3842,7 @@
|
|
|
3727
3842
|
"immutable": true,
|
|
3728
3843
|
"locationInModule": {
|
|
3729
3844
|
"filename": "src/projen-project-options.ts",
|
|
3730
|
-
"line":
|
|
3845
|
+
"line": 983
|
|
3731
3846
|
},
|
|
3732
3847
|
"name": "autoMerge",
|
|
3733
3848
|
"optional": true,
|
|
@@ -3746,7 +3861,7 @@
|
|
|
3746
3861
|
"immutable": true,
|
|
3747
3862
|
"locationInModule": {
|
|
3748
3863
|
"filename": "src/projen-project-options.ts",
|
|
3749
|
-
"line":
|
|
3864
|
+
"line": 975
|
|
3750
3865
|
},
|
|
3751
3866
|
"name": "autoMergeOptions",
|
|
3752
3867
|
"optional": true,
|
|
@@ -3764,7 +3879,7 @@
|
|
|
3764
3879
|
"immutable": true,
|
|
3765
3880
|
"locationInModule": {
|
|
3766
3881
|
"filename": "src/projen-project-options.ts",
|
|
3767
|
-
"line":
|
|
3882
|
+
"line": 868
|
|
3768
3883
|
},
|
|
3769
3884
|
"name": "bin",
|
|
3770
3885
|
"optional": true,
|
|
@@ -3787,7 +3902,7 @@
|
|
|
3787
3902
|
"immutable": true,
|
|
3788
3903
|
"locationInModule": {
|
|
3789
3904
|
"filename": "src/projen-project-options.ts",
|
|
3790
|
-
"line":
|
|
3905
|
+
"line": 384
|
|
3791
3906
|
},
|
|
3792
3907
|
"name": "biome",
|
|
3793
3908
|
"optional": true,
|
|
@@ -3805,7 +3920,7 @@
|
|
|
3805
3920
|
"immutable": true,
|
|
3806
3921
|
"locationInModule": {
|
|
3807
3922
|
"filename": "src/projen-project-options.ts",
|
|
3808
|
-
"line":
|
|
3923
|
+
"line": 378
|
|
3809
3924
|
},
|
|
3810
3925
|
"name": "biomeOptions",
|
|
3811
3926
|
"optional": true,
|
|
@@ -3822,7 +3937,7 @@
|
|
|
3822
3937
|
"immutable": true,
|
|
3823
3938
|
"locationInModule": {
|
|
3824
3939
|
"filename": "src/projen-project-options.ts",
|
|
3825
|
-
"line":
|
|
3940
|
+
"line": 860
|
|
3826
3941
|
},
|
|
3827
3942
|
"name": "bugsEmail",
|
|
3828
3943
|
"optional": true,
|
|
@@ -3839,7 +3954,7 @@
|
|
|
3839
3954
|
"immutable": true,
|
|
3840
3955
|
"locationInModule": {
|
|
3841
3956
|
"filename": "src/projen-project-options.ts",
|
|
3842
|
-
"line":
|
|
3957
|
+
"line": 855
|
|
3843
3958
|
},
|
|
3844
3959
|
"name": "bugsUrl",
|
|
3845
3960
|
"optional": true,
|
|
@@ -3857,7 +3972,7 @@
|
|
|
3857
3972
|
"immutable": true,
|
|
3858
3973
|
"locationInModule": {
|
|
3859
3974
|
"filename": "src/projen-project-options.ts",
|
|
3860
|
-
"line":
|
|
3975
|
+
"line": 372
|
|
3861
3976
|
},
|
|
3862
3977
|
"name": "buildWorkflow",
|
|
3863
3978
|
"optional": true,
|
|
@@ -3874,7 +3989,7 @@
|
|
|
3874
3989
|
"immutable": true,
|
|
3875
3990
|
"locationInModule": {
|
|
3876
3991
|
"filename": "src/projen-project-options.ts",
|
|
3877
|
-
"line":
|
|
3992
|
+
"line": 366
|
|
3878
3993
|
},
|
|
3879
3994
|
"name": "buildWorkflowOptions",
|
|
3880
3995
|
"optional": true,
|
|
@@ -3893,7 +4008,7 @@
|
|
|
3893
4008
|
"immutable": true,
|
|
3894
4009
|
"locationInModule": {
|
|
3895
4010
|
"filename": "src/projen-project-options.ts",
|
|
3896
|
-
"line":
|
|
4011
|
+
"line": 599
|
|
3897
4012
|
},
|
|
3898
4013
|
"name": "bumpPackage",
|
|
3899
4014
|
"optional": true,
|
|
@@ -3904,14 +4019,14 @@
|
|
|
3904
4019
|
{
|
|
3905
4020
|
"abstract": true,
|
|
3906
4021
|
"docs": {
|
|
3907
|
-
"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 `
|
|
4022
|
+
"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 `pnpm 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 `pnpm add` or `npm i` (e.g. `express@^2`) and\nthis will be what your `package.json` will eventually include.",
|
|
3908
4023
|
"stability": "stable",
|
|
3909
4024
|
"summary": "List of dependencies to bundle into this module."
|
|
3910
4025
|
},
|
|
3911
4026
|
"immutable": true,
|
|
3912
4027
|
"locationInModule": {
|
|
3913
4028
|
"filename": "src/projen-project-options.ts",
|
|
3914
|
-
"line":
|
|
4029
|
+
"line": 850
|
|
3915
4030
|
},
|
|
3916
4031
|
"name": "bundledDeps",
|
|
3917
4032
|
"optional": true,
|
|
@@ -3933,7 +4048,7 @@
|
|
|
3933
4048
|
"immutable": true,
|
|
3934
4049
|
"locationInModule": {
|
|
3935
4050
|
"filename": "src/projen-project-options.ts",
|
|
3936
|
-
"line":
|
|
4051
|
+
"line": 361
|
|
3937
4052
|
},
|
|
3938
4053
|
"name": "bundlerOptions",
|
|
3939
4054
|
"optional": true,
|
|
@@ -3951,7 +4066,7 @@
|
|
|
3951
4066
|
"immutable": true,
|
|
3952
4067
|
"locationInModule": {
|
|
3953
4068
|
"filename": "src/projen-project-options.ts",
|
|
3954
|
-
"line":
|
|
4069
|
+
"line": 835
|
|
3955
4070
|
},
|
|
3956
4071
|
"name": "bunVersion",
|
|
3957
4072
|
"optional": true,
|
|
@@ -3970,7 +4085,7 @@
|
|
|
3970
4085
|
"immutable": true,
|
|
3971
4086
|
"locationInModule": {
|
|
3972
4087
|
"filename": "src/projen-project-options.ts",
|
|
3973
|
-
"line":
|
|
4088
|
+
"line": 356
|
|
3974
4089
|
},
|
|
3975
4090
|
"name": "checkLicenses",
|
|
3976
4091
|
"optional": true,
|
|
@@ -3988,7 +4103,7 @@
|
|
|
3988
4103
|
"immutable": true,
|
|
3989
4104
|
"locationInModule": {
|
|
3990
4105
|
"filename": "src/projen-project-options.ts",
|
|
3991
|
-
"line":
|
|
4106
|
+
"line": 967
|
|
3992
4107
|
},
|
|
3993
4108
|
"name": "clobber",
|
|
3994
4109
|
"optional": true,
|
|
@@ -4007,7 +4122,7 @@
|
|
|
4007
4122
|
"immutable": true,
|
|
4008
4123
|
"locationInModule": {
|
|
4009
4124
|
"filename": "src/projen-project-options.ts",
|
|
4010
|
-
"line":
|
|
4125
|
+
"line": 829
|
|
4011
4126
|
},
|
|
4012
4127
|
"name": "codeArtifactOptions",
|
|
4013
4128
|
"optional": true,
|
|
@@ -4025,7 +4140,7 @@
|
|
|
4025
4140
|
"immutable": true,
|
|
4026
4141
|
"locationInModule": {
|
|
4027
4142
|
"filename": "src/projen-project-options.ts",
|
|
4028
|
-
"line":
|
|
4143
|
+
"line": 349
|
|
4029
4144
|
},
|
|
4030
4145
|
"name": "codeCov",
|
|
4031
4146
|
"optional": true,
|
|
@@ -4043,7 +4158,7 @@
|
|
|
4043
4158
|
"immutable": true,
|
|
4044
4159
|
"locationInModule": {
|
|
4045
4160
|
"filename": "src/projen-project-options.ts",
|
|
4046
|
-
"line":
|
|
4161
|
+
"line": 343
|
|
4047
4162
|
},
|
|
4048
4163
|
"name": "codeCovTokenSecret",
|
|
4049
4164
|
"optional": true,
|
|
@@ -4061,7 +4176,7 @@
|
|
|
4061
4176
|
"immutable": true,
|
|
4062
4177
|
"locationInModule": {
|
|
4063
4178
|
"filename": "src/projen-project-options.ts",
|
|
4064
|
-
"line":
|
|
4179
|
+
"line": 1064
|
|
4065
4180
|
},
|
|
4066
4181
|
"name": "commitGenerated",
|
|
4067
4182
|
"optional": true,
|
|
@@ -4080,7 +4195,7 @@
|
|
|
4080
4195
|
"immutable": true,
|
|
4081
4196
|
"locationInModule": {
|
|
4082
4197
|
"filename": "src/projen-project-options.ts",
|
|
4083
|
-
"line":
|
|
4198
|
+
"line": 81
|
|
4084
4199
|
},
|
|
4085
4200
|
"name": "compat",
|
|
4086
4201
|
"optional": true,
|
|
@@ -4098,7 +4213,7 @@
|
|
|
4098
4213
|
"immutable": true,
|
|
4099
4214
|
"locationInModule": {
|
|
4100
4215
|
"filename": "src/projen-project-options.ts",
|
|
4101
|
-
"line":
|
|
4216
|
+
"line": 73
|
|
4102
4217
|
},
|
|
4103
4218
|
"name": "compatIgnore",
|
|
4104
4219
|
"optional": true,
|
|
@@ -4116,7 +4231,7 @@
|
|
|
4116
4231
|
"immutable": true,
|
|
4117
4232
|
"locationInModule": {
|
|
4118
4233
|
"filename": "src/projen-project-options.ts",
|
|
4119
|
-
"line":
|
|
4234
|
+
"line": 67
|
|
4120
4235
|
},
|
|
4121
4236
|
"name": "compressAssembly",
|
|
4122
4237
|
"optional": true,
|
|
@@ -4134,7 +4249,7 @@
|
|
|
4134
4249
|
"immutable": true,
|
|
4135
4250
|
"locationInModule": {
|
|
4136
4251
|
"filename": "src/projen-project-options.ts",
|
|
4137
|
-
"line":
|
|
4252
|
+
"line": 337
|
|
4138
4253
|
},
|
|
4139
4254
|
"name": "copyrightOwner",
|
|
4140
4255
|
"optional": true,
|
|
@@ -4152,7 +4267,7 @@
|
|
|
4152
4267
|
"immutable": true,
|
|
4153
4268
|
"locationInModule": {
|
|
4154
4269
|
"filename": "src/projen-project-options.ts",
|
|
4155
|
-
"line":
|
|
4270
|
+
"line": 331
|
|
4156
4271
|
},
|
|
4157
4272
|
"name": "copyrightPeriod",
|
|
4158
4273
|
"optional": true,
|
|
@@ -4163,6 +4278,9 @@
|
|
|
4163
4278
|
{
|
|
4164
4279
|
"abstract": true,
|
|
4165
4280
|
"docs": {
|
|
4281
|
+
"custom": {
|
|
4282
|
+
"featured": "true"
|
|
4283
|
+
},
|
|
4166
4284
|
"default": "\"main\"",
|
|
4167
4285
|
"stability": "stable",
|
|
4168
4286
|
"summary": "The name of the main release branch."
|
|
@@ -4170,7 +4288,7 @@
|
|
|
4170
4288
|
"immutable": true,
|
|
4171
4289
|
"locationInModule": {
|
|
4172
4290
|
"filename": "src/projen-project-options.ts",
|
|
4173
|
-
"line":
|
|
4291
|
+
"line": 325
|
|
4174
4292
|
},
|
|
4175
4293
|
"name": "defaultReleaseBranch",
|
|
4176
4294
|
"optional": true,
|
|
@@ -4178,6 +4296,25 @@
|
|
|
4178
4296
|
"primitive": "string"
|
|
4179
4297
|
}
|
|
4180
4298
|
},
|
|
4299
|
+
{
|
|
4300
|
+
"abstract": true,
|
|
4301
|
+
"docs": {
|
|
4302
|
+
"default": "true",
|
|
4303
|
+
"remarks": "Only triggered when the lockfile for the configured package\nmanager already exists.\n\nThis is useful when migrating between package managers to avoid conflicts.",
|
|
4304
|
+
"stability": "stable",
|
|
4305
|
+
"summary": "Automatically delete lockfiles from package managers that are not the active one."
|
|
4306
|
+
},
|
|
4307
|
+
"immutable": true,
|
|
4308
|
+
"locationInModule": {
|
|
4309
|
+
"filename": "src/projen-project-options.ts",
|
|
4310
|
+
"line": 822
|
|
4311
|
+
},
|
|
4312
|
+
"name": "deleteOrphanedLockFiles",
|
|
4313
|
+
"optional": true,
|
|
4314
|
+
"type": {
|
|
4315
|
+
"primitive": "boolean"
|
|
4316
|
+
}
|
|
4317
|
+
},
|
|
4181
4318
|
{
|
|
4182
4319
|
"abstract": true,
|
|
4183
4320
|
"docs": {
|
|
@@ -4189,7 +4326,7 @@
|
|
|
4189
4326
|
"immutable": true,
|
|
4190
4327
|
"locationInModule": {
|
|
4191
4328
|
"filename": "src/projen-project-options.ts",
|
|
4192
|
-
"line":
|
|
4329
|
+
"line": 318
|
|
4193
4330
|
},
|
|
4194
4331
|
"name": "dependabot",
|
|
4195
4332
|
"optional": true,
|
|
@@ -4207,7 +4344,7 @@
|
|
|
4207
4344
|
"immutable": true,
|
|
4208
4345
|
"locationInModule": {
|
|
4209
4346
|
"filename": "src/projen-project-options.ts",
|
|
4210
|
-
"line":
|
|
4347
|
+
"line": 311
|
|
4211
4348
|
},
|
|
4212
4349
|
"name": "dependabotOptions",
|
|
4213
4350
|
"optional": true,
|
|
@@ -4222,14 +4359,14 @@
|
|
|
4222
4359
|
"featured": "true"
|
|
4223
4360
|
},
|
|
4224
4361
|
"default": "[]",
|
|
4225
|
-
"remarks": "The recommendation is to only specify the module name here (e.g.\n`express`). This will behave similar to `
|
|
4362
|
+
"remarks": "The recommendation is to only specify the module name here (e.g.\n`express`). This will behave similar to `pnpm 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 `pnpm add` or `npm i` (e.g. `express@^2`) and\nthis will be what your `package.json` will eventually include.",
|
|
4226
4363
|
"stability": "stable",
|
|
4227
4364
|
"summary": "Runtime dependencies of this module."
|
|
4228
4365
|
},
|
|
4229
4366
|
"immutable": true,
|
|
4230
4367
|
"locationInModule": {
|
|
4231
4368
|
"filename": "src/projen-project-options.ts",
|
|
4232
|
-
"line":
|
|
4369
|
+
"line": 812
|
|
4233
4370
|
},
|
|
4234
4371
|
"name": "deps",
|
|
4235
4372
|
"optional": true,
|
|
@@ -4245,7 +4382,7 @@
|
|
|
4245
4382
|
{
|
|
4246
4383
|
"abstract": true,
|
|
4247
4384
|
"docs": {
|
|
4248
|
-
"default": "true",
|
|
4385
|
+
"default": "- `true` for root projects, `false` for subprojects",
|
|
4249
4386
|
"remarks": "Cannot be used in conjunction with `dependabot`.",
|
|
4250
4387
|
"stability": "stable",
|
|
4251
4388
|
"summary": "Use tasks and github workflows to handle dependency upgrades."
|
|
@@ -4253,7 +4390,7 @@
|
|
|
4253
4390
|
"immutable": true,
|
|
4254
4391
|
"locationInModule": {
|
|
4255
4392
|
"filename": "src/projen-project-options.ts",
|
|
4256
|
-
"line":
|
|
4393
|
+
"line": 305
|
|
4257
4394
|
},
|
|
4258
4395
|
"name": "depsUpgrade",
|
|
4259
4396
|
"optional": true,
|
|
@@ -4271,7 +4408,7 @@
|
|
|
4271
4408
|
"immutable": true,
|
|
4272
4409
|
"locationInModule": {
|
|
4273
4410
|
"filename": "src/projen-project-options.ts",
|
|
4274
|
-
"line":
|
|
4411
|
+
"line": 298
|
|
4275
4412
|
},
|
|
4276
4413
|
"name": "depsUpgradeOptions",
|
|
4277
4414
|
"optional": true,
|
|
@@ -4292,7 +4429,7 @@
|
|
|
4292
4429
|
"immutable": true,
|
|
4293
4430
|
"locationInModule": {
|
|
4294
4431
|
"filename": "src/projen-project-options.ts",
|
|
4295
|
-
"line":
|
|
4432
|
+
"line": 799
|
|
4296
4433
|
},
|
|
4297
4434
|
"name": "description",
|
|
4298
4435
|
"optional": true,
|
|
@@ -4310,7 +4447,7 @@
|
|
|
4310
4447
|
"immutable": true,
|
|
4311
4448
|
"locationInModule": {
|
|
4312
4449
|
"filename": "src/projen-project-options.ts",
|
|
4313
|
-
"line":
|
|
4450
|
+
"line": 961
|
|
4314
4451
|
},
|
|
4315
4452
|
"name": "devContainer",
|
|
4316
4453
|
"optional": true,
|
|
@@ -4325,14 +4462,14 @@
|
|
|
4325
4462
|
"featured": "true"
|
|
4326
4463
|
},
|
|
4327
4464
|
"default": "[]",
|
|
4328
|
-
"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 `
|
|
4465
|
+
"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 `pnpm 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 `pnpm add` or `npm i` (e.g. `express@^2`) and\nthis will be what your `package.json` will eventually include.",
|
|
4329
4466
|
"stability": "stable",
|
|
4330
4467
|
"summary": "Build dependencies for this module."
|
|
4331
4468
|
},
|
|
4332
4469
|
"immutable": true,
|
|
4333
4470
|
"locationInModule": {
|
|
4334
4471
|
"filename": "src/projen-project-options.ts",
|
|
4335
|
-
"line":
|
|
4472
|
+
"line": 791
|
|
4336
4473
|
},
|
|
4337
4474
|
"name": "devDeps",
|
|
4338
4475
|
"optional": true,
|
|
@@ -4345,6 +4482,23 @@
|
|
|
4345
4482
|
}
|
|
4346
4483
|
}
|
|
4347
4484
|
},
|
|
4485
|
+
{
|
|
4486
|
+
"abstract": true,
|
|
4487
|
+
"docs": {
|
|
4488
|
+
"stability": "stable",
|
|
4489
|
+
"summary": "Configure the `devEngines` field in `package.json`. The `devEngines.packageManager` field is automatically populated based on the resolved `packageManager` value. Any fields provided here are merged with the auto-populated `packageManager` entry."
|
|
4490
|
+
},
|
|
4491
|
+
"immutable": true,
|
|
4492
|
+
"locationInModule": {
|
|
4493
|
+
"filename": "src/projen-project-options.ts",
|
|
4494
|
+
"line": 774
|
|
4495
|
+
},
|
|
4496
|
+
"name": "devEngines",
|
|
4497
|
+
"optional": true,
|
|
4498
|
+
"type": {
|
|
4499
|
+
"fqn": "projen.javascript.DevEngines"
|
|
4500
|
+
}
|
|
4501
|
+
},
|
|
4348
4502
|
{
|
|
4349
4503
|
"abstract": true,
|
|
4350
4504
|
"docs": {
|
|
@@ -4355,7 +4509,7 @@
|
|
|
4355
4509
|
"immutable": true,
|
|
4356
4510
|
"locationInModule": {
|
|
4357
4511
|
"filename": "src/projen-project-options.ts",
|
|
4358
|
-
"line":
|
|
4512
|
+
"line": 179
|
|
4359
4513
|
},
|
|
4360
4514
|
"name": "disableTsconfig",
|
|
4361
4515
|
"optional": true,
|
|
@@ -4373,7 +4527,7 @@
|
|
|
4373
4527
|
"immutable": true,
|
|
4374
4528
|
"locationInModule": {
|
|
4375
4529
|
"filename": "src/projen-project-options.ts",
|
|
4376
|
-
"line":
|
|
4530
|
+
"line": 173
|
|
4377
4531
|
},
|
|
4378
4532
|
"name": "disableTsconfigDev",
|
|
4379
4533
|
"optional": true,
|
|
@@ -4391,7 +4545,7 @@
|
|
|
4391
4545
|
"immutable": true,
|
|
4392
4546
|
"locationInModule": {
|
|
4393
4547
|
"filename": "src/projen-project-options.ts",
|
|
4394
|
-
"line":
|
|
4548
|
+
"line": 167
|
|
4395
4549
|
},
|
|
4396
4550
|
"name": "docgen",
|
|
4397
4551
|
"optional": true,
|
|
@@ -4409,7 +4563,7 @@
|
|
|
4409
4563
|
"immutable": true,
|
|
4410
4564
|
"locationInModule": {
|
|
4411
4565
|
"filename": "src/projen-project-options.ts",
|
|
4412
|
-
"line":
|
|
4566
|
+
"line": 61
|
|
4413
4567
|
},
|
|
4414
4568
|
"name": "docgenFilePath",
|
|
4415
4569
|
"optional": true,
|
|
@@ -4427,7 +4581,7 @@
|
|
|
4427
4581
|
"immutable": true,
|
|
4428
4582
|
"locationInModule": {
|
|
4429
4583
|
"filename": "src/projen-project-options.ts",
|
|
4430
|
-
"line":
|
|
4584
|
+
"line": 161
|
|
4431
4585
|
},
|
|
4432
4586
|
"name": "docsDirectory",
|
|
4433
4587
|
"optional": true,
|
|
@@ -4445,7 +4599,7 @@
|
|
|
4445
4599
|
"immutable": true,
|
|
4446
4600
|
"locationInModule": {
|
|
4447
4601
|
"filename": "src/projen-project-options.ts",
|
|
4448
|
-
"line":
|
|
4602
|
+
"line": 766
|
|
4449
4603
|
},
|
|
4450
4604
|
"name": "entrypoint",
|
|
4451
4605
|
"optional": true,
|
|
@@ -4463,7 +4617,7 @@
|
|
|
4463
4617
|
"immutable": true,
|
|
4464
4618
|
"locationInModule": {
|
|
4465
4619
|
"filename": "src/projen-project-options.ts",
|
|
4466
|
-
"line":
|
|
4620
|
+
"line": 155
|
|
4467
4621
|
},
|
|
4468
4622
|
"name": "entrypointTypes",
|
|
4469
4623
|
"optional": true,
|
|
@@ -4481,7 +4635,7 @@
|
|
|
4481
4635
|
"immutable": true,
|
|
4482
4636
|
"locationInModule": {
|
|
4483
4637
|
"filename": "src/projen-project-options.ts",
|
|
4484
|
-
"line":
|
|
4638
|
+
"line": 149
|
|
4485
4639
|
},
|
|
4486
4640
|
"name": "eslint",
|
|
4487
4641
|
"optional": true,
|
|
@@ -4499,7 +4653,7 @@
|
|
|
4499
4653
|
"immutable": true,
|
|
4500
4654
|
"locationInModule": {
|
|
4501
4655
|
"filename": "src/projen-project-options.ts",
|
|
4502
|
-
"line":
|
|
4656
|
+
"line": 143
|
|
4503
4657
|
},
|
|
4504
4658
|
"name": "eslintOptions",
|
|
4505
4659
|
"optional": true,
|
|
@@ -4517,7 +4671,7 @@
|
|
|
4517
4671
|
"immutable": true,
|
|
4518
4672
|
"locationInModule": {
|
|
4519
4673
|
"filename": "src/projen-project-options.ts",
|
|
4520
|
-
"line":
|
|
4674
|
+
"line": 55
|
|
4521
4675
|
},
|
|
4522
4676
|
"name": "excludeTypescript",
|
|
4523
4677
|
"optional": true,
|
|
@@ -4541,7 +4695,7 @@
|
|
|
4541
4695
|
"immutable": true,
|
|
4542
4696
|
"locationInModule": {
|
|
4543
4697
|
"filename": "src/projen-project-options.ts",
|
|
4544
|
-
"line":
|
|
4698
|
+
"line": 955
|
|
4545
4699
|
},
|
|
4546
4700
|
"name": "github",
|
|
4547
4701
|
"optional": true,
|
|
@@ -4559,7 +4713,7 @@
|
|
|
4559
4713
|
"immutable": true,
|
|
4560
4714
|
"locationInModule": {
|
|
4561
4715
|
"filename": "src/projen-project-options.ts",
|
|
4562
|
-
"line":
|
|
4716
|
+
"line": 948
|
|
4563
4717
|
},
|
|
4564
4718
|
"name": "githubOptions",
|
|
4565
4719
|
"optional": true,
|
|
@@ -4576,7 +4730,7 @@
|
|
|
4576
4730
|
"immutable": true,
|
|
4577
4731
|
"locationInModule": {
|
|
4578
4732
|
"filename": "src/projen-project-options.ts",
|
|
4579
|
-
"line":
|
|
4733
|
+
"line": 292
|
|
4580
4734
|
},
|
|
4581
4735
|
"name": "gitignore",
|
|
4582
4736
|
"optional": true,
|
|
@@ -4598,7 +4752,7 @@
|
|
|
4598
4752
|
"immutable": true,
|
|
4599
4753
|
"locationInModule": {
|
|
4600
4754
|
"filename": "src/projen-project-options.ts",
|
|
4601
|
-
"line":
|
|
4755
|
+
"line": 1058
|
|
4602
4756
|
},
|
|
4603
4757
|
"name": "gitIgnoreOptions",
|
|
4604
4758
|
"optional": true,
|
|
@@ -4615,7 +4769,7 @@
|
|
|
4615
4769
|
"immutable": true,
|
|
4616
4770
|
"locationInModule": {
|
|
4617
4771
|
"filename": "src/projen-project-options.ts",
|
|
4618
|
-
"line":
|
|
4772
|
+
"line": 1053
|
|
4619
4773
|
},
|
|
4620
4774
|
"name": "gitOptions",
|
|
4621
4775
|
"optional": true,
|
|
@@ -4633,7 +4787,7 @@
|
|
|
4633
4787
|
"immutable": true,
|
|
4634
4788
|
"locationInModule": {
|
|
4635
4789
|
"filename": "src/projen-project-options.ts",
|
|
4636
|
-
"line":
|
|
4790
|
+
"line": 942
|
|
4637
4791
|
},
|
|
4638
4792
|
"name": "gitpod",
|
|
4639
4793
|
"optional": true,
|
|
@@ -4650,7 +4804,7 @@
|
|
|
4650
4804
|
"immutable": true,
|
|
4651
4805
|
"locationInModule": {
|
|
4652
4806
|
"filename": "src/projen-project-options.ts",
|
|
4653
|
-
"line":
|
|
4807
|
+
"line": 759
|
|
4654
4808
|
},
|
|
4655
4809
|
"name": "homepage",
|
|
4656
4810
|
"optional": true,
|
|
@@ -4668,7 +4822,7 @@
|
|
|
4668
4822
|
"immutable": true,
|
|
4669
4823
|
"locationInModule": {
|
|
4670
4824
|
"filename": "src/projen-project-options.ts",
|
|
4671
|
-
"line":
|
|
4825
|
+
"line": 287
|
|
4672
4826
|
},
|
|
4673
4827
|
"name": "jest",
|
|
4674
4828
|
"optional": true,
|
|
@@ -4686,7 +4840,7 @@
|
|
|
4686
4840
|
"immutable": true,
|
|
4687
4841
|
"locationInModule": {
|
|
4688
4842
|
"filename": "src/projen-project-options.ts",
|
|
4689
|
-
"line":
|
|
4843
|
+
"line": 281
|
|
4690
4844
|
},
|
|
4691
4845
|
"name": "jestOptions",
|
|
4692
4846
|
"optional": true,
|
|
@@ -4704,7 +4858,7 @@
|
|
|
4704
4858
|
"immutable": true,
|
|
4705
4859
|
"locationInModule": {
|
|
4706
4860
|
"filename": "src/projen-project-options.ts",
|
|
4707
|
-
"line":
|
|
4861
|
+
"line": 592
|
|
4708
4862
|
},
|
|
4709
4863
|
"name": "jsiiReleaseVersion",
|
|
4710
4864
|
"optional": true,
|
|
@@ -4721,7 +4875,7 @@
|
|
|
4721
4875
|
"immutable": true,
|
|
4722
4876
|
"locationInModule": {
|
|
4723
4877
|
"filename": "src/projen-project-options.ts",
|
|
4724
|
-
"line":
|
|
4878
|
+
"line": 754
|
|
4725
4879
|
},
|
|
4726
4880
|
"name": "keywords",
|
|
4727
4881
|
"optional": true,
|
|
@@ -4744,7 +4898,7 @@
|
|
|
4744
4898
|
"immutable": true,
|
|
4745
4899
|
"locationInModule": {
|
|
4746
4900
|
"filename": "src/projen-project-options.ts",
|
|
4747
|
-
"line":
|
|
4901
|
+
"line": 137
|
|
4748
4902
|
},
|
|
4749
4903
|
"name": "libdir",
|
|
4750
4904
|
"optional": true,
|
|
@@ -4763,7 +4917,7 @@
|
|
|
4763
4917
|
"immutable": true,
|
|
4764
4918
|
"locationInModule": {
|
|
4765
4919
|
"filename": "src/projen-project-options.ts",
|
|
4766
|
-
"line":
|
|
4920
|
+
"line": 749
|
|
4767
4921
|
},
|
|
4768
4922
|
"name": "license",
|
|
4769
4923
|
"optional": true,
|
|
@@ -4781,7 +4935,7 @@
|
|
|
4781
4935
|
"immutable": true,
|
|
4782
4936
|
"locationInModule": {
|
|
4783
4937
|
"filename": "src/projen-project-options.ts",
|
|
4784
|
-
"line":
|
|
4938
|
+
"line": 741
|
|
4785
4939
|
},
|
|
4786
4940
|
"name": "licensed",
|
|
4787
4941
|
"optional": true,
|
|
@@ -4799,7 +4953,7 @@
|
|
|
4799
4953
|
"immutable": true,
|
|
4800
4954
|
"locationInModule": {
|
|
4801
4955
|
"filename": "src/projen-project-options.ts",
|
|
4802
|
-
"line":
|
|
4956
|
+
"line": 1048
|
|
4803
4957
|
},
|
|
4804
4958
|
"name": "logging",
|
|
4805
4959
|
"optional": true,
|
|
@@ -4817,7 +4971,7 @@
|
|
|
4817
4971
|
"immutable": true,
|
|
4818
4972
|
"locationInModule": {
|
|
4819
4973
|
"filename": "src/projen-project-options.ts",
|
|
4820
|
-
"line":
|
|
4974
|
+
"line": 1117
|
|
4821
4975
|
},
|
|
4822
4976
|
"name": "logo",
|
|
4823
4977
|
"optional": true,
|
|
@@ -4836,7 +4990,7 @@
|
|
|
4836
4990
|
"immutable": true,
|
|
4837
4991
|
"locationInModule": {
|
|
4838
4992
|
"filename": "src/projen-project-options.ts",
|
|
4839
|
-
"line":
|
|
4993
|
+
"line": 586
|
|
4840
4994
|
},
|
|
4841
4995
|
"name": "majorVersion",
|
|
4842
4996
|
"optional": true,
|
|
@@ -4855,7 +5009,7 @@
|
|
|
4855
5009
|
"immutable": true,
|
|
4856
5010
|
"locationInModule": {
|
|
4857
5011
|
"filename": "src/projen-project-options.ts",
|
|
4858
|
-
"line":
|
|
5012
|
+
"line": 735
|
|
4859
5013
|
},
|
|
4860
5014
|
"name": "maxNodeVersion",
|
|
4861
5015
|
"optional": true,
|
|
@@ -4874,7 +5028,7 @@
|
|
|
4874
5028
|
"immutable": true,
|
|
4875
5029
|
"locationInModule": {
|
|
4876
5030
|
"filename": "src/projen-project-options.ts",
|
|
4877
|
-
"line":
|
|
5031
|
+
"line": 578
|
|
4878
5032
|
},
|
|
4879
5033
|
"name": "minMajorVersion",
|
|
4880
5034
|
"optional": true,
|
|
@@ -4893,7 +5047,7 @@
|
|
|
4893
5047
|
"immutable": true,
|
|
4894
5048
|
"locationInModule": {
|
|
4895
5049
|
"filename": "src/projen-project-options.ts",
|
|
4896
|
-
"line":
|
|
5050
|
+
"line": 724
|
|
4897
5051
|
},
|
|
4898
5052
|
"name": "minNodeVersion",
|
|
4899
5053
|
"optional": true,
|
|
@@ -4914,7 +5068,7 @@
|
|
|
4914
5068
|
"immutable": true,
|
|
4915
5069
|
"locationInModule": {
|
|
4916
5070
|
"filename": "src/projen-project-options.ts",
|
|
4917
|
-
"line":
|
|
5071
|
+
"line": 1071
|
|
4918
5072
|
},
|
|
4919
5073
|
"name": "name",
|
|
4920
5074
|
"optional": true,
|
|
@@ -4933,7 +5087,7 @@
|
|
|
4933
5087
|
"immutable": true,
|
|
4934
5088
|
"locationInModule": {
|
|
4935
5089
|
"filename": "src/projen-project-options.ts",
|
|
4936
|
-
"line":
|
|
5090
|
+
"line": 568
|
|
4937
5091
|
},
|
|
4938
5092
|
"name": "nextVersionCommand",
|
|
4939
5093
|
"optional": true,
|
|
@@ -4951,7 +5105,7 @@
|
|
|
4951
5105
|
"immutable": true,
|
|
4952
5106
|
"locationInModule": {
|
|
4953
5107
|
"filename": "src/projen-project-options.ts",
|
|
4954
|
-
"line":
|
|
5108
|
+
"line": 709
|
|
4955
5109
|
},
|
|
4956
5110
|
"name": "npmAccess",
|
|
4957
5111
|
"optional": true,
|
|
@@ -4970,7 +5124,7 @@
|
|
|
4970
5124
|
"immutable": true,
|
|
4971
5125
|
"locationInModule": {
|
|
4972
5126
|
"filename": "src/projen-project-options.ts",
|
|
4973
|
-
"line":
|
|
5127
|
+
"line": 544
|
|
4974
5128
|
},
|
|
4975
5129
|
"name": "npmDistTag",
|
|
4976
5130
|
"optional": true,
|
|
@@ -4988,7 +5142,7 @@
|
|
|
4988
5142
|
"immutable": true,
|
|
4989
5143
|
"locationInModule": {
|
|
4990
5144
|
"filename": "src/projen-project-options.ts",
|
|
4991
|
-
"line":
|
|
5145
|
+
"line": 275
|
|
4992
5146
|
},
|
|
4993
5147
|
"name": "npmignoreEnabled",
|
|
4994
5148
|
"optional": true,
|
|
@@ -5005,7 +5159,7 @@
|
|
|
5005
5159
|
"immutable": true,
|
|
5006
5160
|
"locationInModule": {
|
|
5007
5161
|
"filename": "src/projen-project-options.ts",
|
|
5008
|
-
"line":
|
|
5162
|
+
"line": 269
|
|
5009
5163
|
},
|
|
5010
5164
|
"name": "npmIgnoreOptions",
|
|
5011
5165
|
"optional": true,
|
|
@@ -5024,7 +5178,7 @@
|
|
|
5024
5178
|
"immutable": true,
|
|
5025
5179
|
"locationInModule": {
|
|
5026
5180
|
"filename": "src/projen-project-options.ts",
|
|
5027
|
-
"line":
|
|
5181
|
+
"line": 701
|
|
5028
5182
|
},
|
|
5029
5183
|
"name": "npmProvenance",
|
|
5030
5184
|
"optional": true,
|
|
@@ -5043,7 +5197,7 @@
|
|
|
5043
5197
|
"immutable": true,
|
|
5044
5198
|
"locationInModule": {
|
|
5045
5199
|
"filename": "src/projen-project-options.ts",
|
|
5046
|
-
"line":
|
|
5200
|
+
"line": 690
|
|
5047
5201
|
},
|
|
5048
5202
|
"name": "npmRegistryUrl",
|
|
5049
5203
|
"optional": true,
|
|
@@ -5061,7 +5215,7 @@
|
|
|
5061
5215
|
"immutable": true,
|
|
5062
5216
|
"locationInModule": {
|
|
5063
5217
|
"filename": "src/projen-project-options.ts",
|
|
5064
|
-
"line":
|
|
5218
|
+
"line": 683
|
|
5065
5219
|
},
|
|
5066
5220
|
"name": "npmTokenSecret",
|
|
5067
5221
|
"optional": true,
|
|
@@ -5079,7 +5233,7 @@
|
|
|
5079
5233
|
"immutable": true,
|
|
5080
5234
|
"locationInModule": {
|
|
5081
5235
|
"filename": "src/projen-project-options.ts",
|
|
5082
|
-
"line":
|
|
5236
|
+
"line": 677
|
|
5083
5237
|
},
|
|
5084
5238
|
"name": "npmTrustedPublishing",
|
|
5085
5239
|
"optional": true,
|
|
@@ -5098,7 +5252,7 @@
|
|
|
5098
5252
|
"immutable": true,
|
|
5099
5253
|
"locationInModule": {
|
|
5100
5254
|
"filename": "src/projen-project-options.ts",
|
|
5101
|
-
"line":
|
|
5255
|
+
"line": 1042
|
|
5102
5256
|
},
|
|
5103
5257
|
"name": "outdir",
|
|
5104
5258
|
"optional": true,
|
|
@@ -5116,7 +5270,7 @@
|
|
|
5116
5270
|
"immutable": true,
|
|
5117
5271
|
"locationInModule": {
|
|
5118
5272
|
"filename": "src/projen-project-options.ts",
|
|
5119
|
-
"line":
|
|
5273
|
+
"line": 1106
|
|
5120
5274
|
},
|
|
5121
5275
|
"name": "ownerCanSelfApprovePRs",
|
|
5122
5276
|
"optional": true,
|
|
@@ -5134,7 +5288,7 @@
|
|
|
5134
5288
|
"immutable": true,
|
|
5135
5289
|
"locationInModule": {
|
|
5136
5290
|
"filename": "src/projen-project-options.ts",
|
|
5137
|
-
"line":
|
|
5291
|
+
"line": 264
|
|
5138
5292
|
},
|
|
5139
5293
|
"name": "package",
|
|
5140
5294
|
"optional": true,
|
|
@@ -5145,14 +5299,17 @@
|
|
|
5145
5299
|
{
|
|
5146
5300
|
"abstract": true,
|
|
5147
5301
|
"docs": {
|
|
5148
|
-
"
|
|
5302
|
+
"custom": {
|
|
5303
|
+
"pjnew": "$PACKAGE_MANAGER"
|
|
5304
|
+
},
|
|
5305
|
+
"default": "- Detected from the calling process or `YARN_CLASSIC` if detection fails.",
|
|
5149
5306
|
"stability": "stable",
|
|
5150
5307
|
"summary": "The Node Package Manager used to execute scripts."
|
|
5151
5308
|
},
|
|
5152
5309
|
"immutable": true,
|
|
5153
5310
|
"locationInModule": {
|
|
5154
5311
|
"filename": "src/projen-project-options.ts",
|
|
5155
|
-
"line":
|
|
5312
|
+
"line": 671
|
|
5156
5313
|
},
|
|
5157
5314
|
"name": "packageManager",
|
|
5158
5315
|
"optional": true,
|
|
@@ -5173,7 +5330,7 @@
|
|
|
5173
5330
|
"immutable": true,
|
|
5174
5331
|
"locationInModule": {
|
|
5175
5332
|
"filename": "src/projen-project-options.ts",
|
|
5176
|
-
"line":
|
|
5333
|
+
"line": 664
|
|
5177
5334
|
},
|
|
5178
5335
|
"name": "packageName",
|
|
5179
5336
|
"optional": true,
|
|
@@ -5190,7 +5347,7 @@
|
|
|
5190
5347
|
"immutable": true,
|
|
5191
5348
|
"locationInModule": {
|
|
5192
5349
|
"filename": "src/projen-project-options.ts",
|
|
5193
|
-
"line":
|
|
5350
|
+
"line": 1031
|
|
5194
5351
|
},
|
|
5195
5352
|
"name": "parent",
|
|
5196
5353
|
"optional": true,
|
|
@@ -5207,7 +5364,7 @@
|
|
|
5207
5364
|
"immutable": true,
|
|
5208
5365
|
"locationInModule": {
|
|
5209
5366
|
"filename": "src/projen-project-options.ts",
|
|
5210
|
-
"line":
|
|
5367
|
+
"line": 657
|
|
5211
5368
|
},
|
|
5212
5369
|
"name": "peerDependencyOptions",
|
|
5213
5370
|
"optional": true,
|
|
@@ -5226,7 +5383,7 @@
|
|
|
5226
5383
|
"immutable": true,
|
|
5227
5384
|
"locationInModule": {
|
|
5228
5385
|
"filename": "src/projen-project-options.ts",
|
|
5229
|
-
"line":
|
|
5386
|
+
"line": 652
|
|
5230
5387
|
},
|
|
5231
5388
|
"name": "peerDeps",
|
|
5232
5389
|
"optional": true,
|
|
@@ -5242,14 +5399,14 @@
|
|
|
5242
5399
|
{
|
|
5243
5400
|
"abstract": true,
|
|
5244
5401
|
"docs": {
|
|
5245
|
-
"default": "\"
|
|
5402
|
+
"default": "\"10.33.0\"",
|
|
5246
5403
|
"stability": "stable",
|
|
5247
5404
|
"summary": "The version of PNPM to use if using PNPM as a package manager."
|
|
5248
5405
|
},
|
|
5249
5406
|
"immutable": true,
|
|
5250
5407
|
"locationInModule": {
|
|
5251
5408
|
"filename": "src/projen-project-options.ts",
|
|
5252
|
-
"line":
|
|
5409
|
+
"line": 633
|
|
5253
5410
|
},
|
|
5254
5411
|
"name": "pnpmVersion",
|
|
5255
5412
|
"optional": true,
|
|
@@ -5267,7 +5424,7 @@
|
|
|
5267
5424
|
"immutable": true,
|
|
5268
5425
|
"locationInModule": {
|
|
5269
5426
|
"filename": "src/projen-project-options.ts",
|
|
5270
|
-
"line":
|
|
5427
|
+
"line": 536
|
|
5271
5428
|
},
|
|
5272
5429
|
"name": "postBuildSteps",
|
|
5273
5430
|
"optional": true,
|
|
@@ -5290,7 +5447,7 @@
|
|
|
5290
5447
|
"immutable": true,
|
|
5291
5448
|
"locationInModule": {
|
|
5292
5449
|
"filename": "src/projen-project-options.ts",
|
|
5293
|
-
"line":
|
|
5450
|
+
"line": 530
|
|
5294
5451
|
},
|
|
5295
5452
|
"name": "prerelease",
|
|
5296
5453
|
"optional": true,
|
|
@@ -5308,7 +5465,7 @@
|
|
|
5308
5465
|
"immutable": true,
|
|
5309
5466
|
"locationInModule": {
|
|
5310
5467
|
"filename": "src/projen-project-options.ts",
|
|
5311
|
-
"line":
|
|
5468
|
+
"line": 258
|
|
5312
5469
|
},
|
|
5313
5470
|
"name": "prettier",
|
|
5314
5471
|
"optional": true,
|
|
@@ -5326,7 +5483,7 @@
|
|
|
5326
5483
|
"immutable": true,
|
|
5327
5484
|
"locationInModule": {
|
|
5328
5485
|
"filename": "src/projen-project-options.ts",
|
|
5329
|
-
"line":
|
|
5486
|
+
"line": 252
|
|
5330
5487
|
},
|
|
5331
5488
|
"name": "prettierOptions",
|
|
5332
5489
|
"optional": true,
|
|
@@ -5334,6 +5491,24 @@
|
|
|
5334
5491
|
"fqn": "projen.javascript.PrettierOptions"
|
|
5335
5492
|
}
|
|
5336
5493
|
},
|
|
5494
|
+
{
|
|
5495
|
+
"abstract": true,
|
|
5496
|
+
"docs": {
|
|
5497
|
+
"default": "false",
|
|
5498
|
+
"stability": "stable",
|
|
5499
|
+
"summary": "Generate a project tree file (`.projen/tree.json`) that shows all components and their relationships. Useful for understanding your project structure and debugging."
|
|
5500
|
+
},
|
|
5501
|
+
"immutable": true,
|
|
5502
|
+
"locationInModule": {
|
|
5503
|
+
"filename": "src/projen-project-options.ts",
|
|
5504
|
+
"line": 1026
|
|
5505
|
+
},
|
|
5506
|
+
"name": "projectTree",
|
|
5507
|
+
"optional": true,
|
|
5508
|
+
"type": {
|
|
5509
|
+
"primitive": "boolean"
|
|
5510
|
+
}
|
|
5511
|
+
},
|
|
5337
5512
|
{
|
|
5338
5513
|
"abstract": true,
|
|
5339
5514
|
"docs": {
|
|
@@ -5345,7 +5520,7 @@
|
|
|
5345
5520
|
"immutable": true,
|
|
5346
5521
|
"locationInModule": {
|
|
5347
5522
|
"filename": "src/projen-project-options.ts",
|
|
5348
|
-
"line":
|
|
5523
|
+
"line": 1020
|
|
5349
5524
|
},
|
|
5350
5525
|
"name": "projenCommand",
|
|
5351
5526
|
"optional": true,
|
|
@@ -5363,7 +5538,7 @@
|
|
|
5363
5538
|
"immutable": true,
|
|
5364
5539
|
"locationInModule": {
|
|
5365
5540
|
"filename": "src/projen-project-options.ts",
|
|
5366
|
-
"line":
|
|
5541
|
+
"line": 936
|
|
5367
5542
|
},
|
|
5368
5543
|
"name": "projenCredentials",
|
|
5369
5544
|
"optional": true,
|
|
@@ -5381,7 +5556,7 @@
|
|
|
5381
5556
|
"immutable": true,
|
|
5382
5557
|
"locationInModule": {
|
|
5383
5558
|
"filename": "src/projen-project-options.ts",
|
|
5384
|
-
"line":
|
|
5559
|
+
"line": 246
|
|
5385
5560
|
},
|
|
5386
5561
|
"name": "projenDevDependency",
|
|
5387
5562
|
"optional": true,
|
|
@@ -5399,7 +5574,7 @@
|
|
|
5399
5574
|
"immutable": true,
|
|
5400
5575
|
"locationInModule": {
|
|
5401
5576
|
"filename": "src/projen-project-options.ts",
|
|
5402
|
-
"line":
|
|
5577
|
+
"line": 240
|
|
5403
5578
|
},
|
|
5404
5579
|
"name": "projenrcJs",
|
|
5405
5580
|
"optional": true,
|
|
@@ -5417,7 +5592,7 @@
|
|
|
5417
5592
|
"immutable": true,
|
|
5418
5593
|
"locationInModule": {
|
|
5419
5594
|
"filename": "src/projen-project-options.ts",
|
|
5420
|
-
"line":
|
|
5595
|
+
"line": 1013
|
|
5421
5596
|
},
|
|
5422
5597
|
"name": "projenrcJson",
|
|
5423
5598
|
"optional": true,
|
|
@@ -5435,7 +5610,7 @@
|
|
|
5435
5610
|
"immutable": true,
|
|
5436
5611
|
"locationInModule": {
|
|
5437
5612
|
"filename": "src/projen-project-options.ts",
|
|
5438
|
-
"line":
|
|
5613
|
+
"line": 1007
|
|
5439
5614
|
},
|
|
5440
5615
|
"name": "projenrcJsonOptions",
|
|
5441
5616
|
"optional": true,
|
|
@@ -5453,7 +5628,7 @@
|
|
|
5453
5628
|
"immutable": true,
|
|
5454
5629
|
"locationInModule": {
|
|
5455
5630
|
"filename": "src/projen-project-options.ts",
|
|
5456
|
-
"line":
|
|
5631
|
+
"line": 234
|
|
5457
5632
|
},
|
|
5458
5633
|
"name": "projenrcJsOptions",
|
|
5459
5634
|
"optional": true,
|
|
@@ -5470,7 +5645,7 @@
|
|
|
5470
5645
|
"immutable": true,
|
|
5471
5646
|
"locationInModule": {
|
|
5472
5647
|
"filename": "src/projen-project-options.ts",
|
|
5473
|
-
"line":
|
|
5648
|
+
"line": 131
|
|
5474
5649
|
},
|
|
5475
5650
|
"name": "projenrcTsOptions",
|
|
5476
5651
|
"optional": true,
|
|
@@ -5488,7 +5663,7 @@
|
|
|
5488
5663
|
"immutable": true,
|
|
5489
5664
|
"locationInModule": {
|
|
5490
5665
|
"filename": "src/projen-project-options.ts",
|
|
5491
|
-
"line":
|
|
5666
|
+
"line": 1130
|
|
5492
5667
|
},
|
|
5493
5668
|
"name": "projenVersion",
|
|
5494
5669
|
"optional": true,
|
|
@@ -5506,7 +5681,7 @@
|
|
|
5506
5681
|
"immutable": true,
|
|
5507
5682
|
"locationInModule": {
|
|
5508
5683
|
"filename": "src/projen-project-options.ts",
|
|
5509
|
-
"line":
|
|
5684
|
+
"line": 524
|
|
5510
5685
|
},
|
|
5511
5686
|
"name": "publishDryRun",
|
|
5512
5687
|
"optional": true,
|
|
@@ -5525,7 +5700,7 @@
|
|
|
5525
5700
|
"immutable": true,
|
|
5526
5701
|
"locationInModule": {
|
|
5527
5702
|
"filename": "src/projen-project-options.ts",
|
|
5528
|
-
"line":
|
|
5703
|
+
"line": 518
|
|
5529
5704
|
},
|
|
5530
5705
|
"name": "publishTasks",
|
|
5531
5706
|
"optional": true,
|
|
@@ -5543,7 +5718,7 @@
|
|
|
5543
5718
|
"immutable": true,
|
|
5544
5719
|
"locationInModule": {
|
|
5545
5720
|
"filename": "src/projen-project-options.ts",
|
|
5546
|
-
"line":
|
|
5721
|
+
"line": 45
|
|
5547
5722
|
},
|
|
5548
5723
|
"name": "publishToGo",
|
|
5549
5724
|
"optional": true,
|
|
@@ -5561,7 +5736,7 @@
|
|
|
5561
5736
|
"immutable": true,
|
|
5562
5737
|
"locationInModule": {
|
|
5563
5738
|
"filename": "src/projen-project-options.ts",
|
|
5564
|
-
"line":
|
|
5739
|
+
"line": 39
|
|
5565
5740
|
},
|
|
5566
5741
|
"name": "publishToMaven",
|
|
5567
5742
|
"optional": true,
|
|
@@ -5579,7 +5754,7 @@
|
|
|
5579
5754
|
"immutable": true,
|
|
5580
5755
|
"locationInModule": {
|
|
5581
5756
|
"filename": "src/projen-project-options.ts",
|
|
5582
|
-
"line":
|
|
5757
|
+
"line": 33
|
|
5583
5758
|
},
|
|
5584
5759
|
"name": "publishToNuget",
|
|
5585
5760
|
"optional": true,
|
|
@@ -5597,7 +5772,7 @@
|
|
|
5597
5772
|
"immutable": true,
|
|
5598
5773
|
"locationInModule": {
|
|
5599
5774
|
"filename": "src/projen-project-options.ts",
|
|
5600
|
-
"line":
|
|
5775
|
+
"line": 27
|
|
5601
5776
|
},
|
|
5602
5777
|
"name": "publishToPypi",
|
|
5603
5778
|
"optional": true,
|
|
@@ -5615,7 +5790,7 @@
|
|
|
5615
5790
|
"immutable": true,
|
|
5616
5791
|
"locationInModule": {
|
|
5617
5792
|
"filename": "src/projen-project-options.ts",
|
|
5618
|
-
"line":
|
|
5793
|
+
"line": 228
|
|
5619
5794
|
},
|
|
5620
5795
|
"name": "pullRequestTemplate",
|
|
5621
5796
|
"optional": true,
|
|
@@ -5633,7 +5808,7 @@
|
|
|
5633
5808
|
"immutable": true,
|
|
5634
5809
|
"locationInModule": {
|
|
5635
5810
|
"filename": "src/projen-project-options.ts",
|
|
5636
|
-
"line":
|
|
5811
|
+
"line": 222
|
|
5637
5812
|
},
|
|
5638
5813
|
"name": "pullRequestTemplateContents",
|
|
5639
5814
|
"optional": true,
|
|
@@ -5656,7 +5831,7 @@
|
|
|
5656
5831
|
"immutable": true,
|
|
5657
5832
|
"locationInModule": {
|
|
5658
5833
|
"filename": "src/projen-project-options.ts",
|
|
5659
|
-
"line":
|
|
5834
|
+
"line": 930
|
|
5660
5835
|
},
|
|
5661
5836
|
"name": "readme",
|
|
5662
5837
|
"optional": true,
|
|
@@ -5674,7 +5849,7 @@
|
|
|
5674
5849
|
"immutable": true,
|
|
5675
5850
|
"locationInModule": {
|
|
5676
5851
|
"filename": "src/projen-project-options.ts",
|
|
5677
|
-
"line":
|
|
5852
|
+
"line": 1081
|
|
5678
5853
|
},
|
|
5679
5854
|
"name": "releasableCommitTypes",
|
|
5680
5855
|
"optional": true,
|
|
@@ -5697,7 +5872,7 @@
|
|
|
5697
5872
|
"immutable": true,
|
|
5698
5873
|
"locationInModule": {
|
|
5699
5874
|
"filename": "src/projen-project-options.ts",
|
|
5700
|
-
"line":
|
|
5875
|
+
"line": 216
|
|
5701
5876
|
},
|
|
5702
5877
|
"name": "release",
|
|
5703
5878
|
"optional": true,
|
|
@@ -5716,7 +5891,7 @@
|
|
|
5716
5891
|
"immutable": true,
|
|
5717
5892
|
"locationInModule": {
|
|
5718
5893
|
"filename": "src/projen-project-options.ts",
|
|
5719
|
-
"line":
|
|
5894
|
+
"line": 510
|
|
5720
5895
|
},
|
|
5721
5896
|
"name": "releaseBranches",
|
|
5722
5897
|
"optional": true,
|
|
@@ -5740,7 +5915,7 @@
|
|
|
5740
5915
|
"immutable": true,
|
|
5741
5916
|
"locationInModule": {
|
|
5742
5917
|
"filename": "src/projen-project-options.ts",
|
|
5743
|
-
"line":
|
|
5918
|
+
"line": 497
|
|
5744
5919
|
},
|
|
5745
5920
|
"name": "releaseEnvironment",
|
|
5746
5921
|
"optional": true,
|
|
@@ -5758,7 +5933,7 @@
|
|
|
5758
5933
|
"immutable": true,
|
|
5759
5934
|
"locationInModule": {
|
|
5760
5935
|
"filename": "src/projen-project-options.ts",
|
|
5761
|
-
"line":
|
|
5936
|
+
"line": 486
|
|
5762
5937
|
},
|
|
5763
5938
|
"name": "releaseFailureIssue",
|
|
5764
5939
|
"optional": true,
|
|
@@ -5777,7 +5952,7 @@
|
|
|
5777
5952
|
"immutable": true,
|
|
5778
5953
|
"locationInModule": {
|
|
5779
5954
|
"filename": "src/projen-project-options.ts",
|
|
5780
|
-
"line":
|
|
5955
|
+
"line": 480
|
|
5781
5956
|
},
|
|
5782
5957
|
"name": "releaseFailureIssueLabel",
|
|
5783
5958
|
"optional": true,
|
|
@@ -5796,7 +5971,7 @@
|
|
|
5796
5971
|
"immutable": true,
|
|
5797
5972
|
"locationInModule": {
|
|
5798
5973
|
"filename": "src/projen-project-options.ts",
|
|
5799
|
-
"line":
|
|
5974
|
+
"line": 473
|
|
5800
5975
|
},
|
|
5801
5976
|
"name": "releaseTagPrefix",
|
|
5802
5977
|
"optional": true,
|
|
@@ -5814,7 +5989,7 @@
|
|
|
5814
5989
|
"immutable": true,
|
|
5815
5990
|
"locationInModule": {
|
|
5816
5991
|
"filename": "src/projen-project-options.ts",
|
|
5817
|
-
"line":
|
|
5992
|
+
"line": 210
|
|
5818
5993
|
},
|
|
5819
5994
|
"name": "releaseToNpm",
|
|
5820
5995
|
"optional": true,
|
|
@@ -5832,7 +6007,7 @@
|
|
|
5832
6007
|
"immutable": true,
|
|
5833
6008
|
"locationInModule": {
|
|
5834
6009
|
"filename": "src/projen-project-options.ts",
|
|
5835
|
-
"line":
|
|
6010
|
+
"line": 463
|
|
5836
6011
|
},
|
|
5837
6012
|
"name": "releaseTrigger",
|
|
5838
6013
|
"optional": true,
|
|
@@ -5850,7 +6025,7 @@
|
|
|
5850
6025
|
"immutable": true,
|
|
5851
6026
|
"locationInModule": {
|
|
5852
6027
|
"filename": "src/projen-project-options.ts",
|
|
5853
|
-
"line":
|
|
6028
|
+
"line": 457
|
|
5854
6029
|
},
|
|
5855
6030
|
"name": "releaseWorkflowEnv",
|
|
5856
6031
|
"optional": true,
|
|
@@ -5873,7 +6048,7 @@
|
|
|
5873
6048
|
"immutable": true,
|
|
5874
6049
|
"locationInModule": {
|
|
5875
6050
|
"filename": "src/projen-project-options.ts",
|
|
5876
|
-
"line":
|
|
6051
|
+
"line": 451
|
|
5877
6052
|
},
|
|
5878
6053
|
"name": "releaseWorkflowName",
|
|
5879
6054
|
"optional": true,
|
|
@@ -5890,7 +6065,7 @@
|
|
|
5890
6065
|
"immutable": true,
|
|
5891
6066
|
"locationInModule": {
|
|
5892
6067
|
"filename": "src/projen-project-options.ts",
|
|
5893
|
-
"line":
|
|
6068
|
+
"line": 445
|
|
5894
6069
|
},
|
|
5895
6070
|
"name": "releaseWorkflowSetupSteps",
|
|
5896
6071
|
"optional": true,
|
|
@@ -5913,7 +6088,7 @@
|
|
|
5913
6088
|
"immutable": true,
|
|
5914
6089
|
"locationInModule": {
|
|
5915
6090
|
"filename": "src/projen-project-options.ts",
|
|
5916
|
-
"line":
|
|
6091
|
+
"line": 1001
|
|
5917
6092
|
},
|
|
5918
6093
|
"name": "renovatebot",
|
|
5919
6094
|
"optional": true,
|
|
@@ -5931,7 +6106,7 @@
|
|
|
5931
6106
|
"immutable": true,
|
|
5932
6107
|
"locationInModule": {
|
|
5933
6108
|
"filename": "src/projen-project-options.ts",
|
|
5934
|
-
"line":
|
|
6109
|
+
"line": 995
|
|
5935
6110
|
},
|
|
5936
6111
|
"name": "renovatebotOptions",
|
|
5937
6112
|
"optional": true,
|
|
@@ -5949,7 +6124,7 @@
|
|
|
5949
6124
|
"immutable": true,
|
|
5950
6125
|
"locationInModule": {
|
|
5951
6126
|
"filename": "src/projen-project-options.ts",
|
|
5952
|
-
"line":
|
|
6127
|
+
"line": 627
|
|
5953
6128
|
},
|
|
5954
6129
|
"name": "repository",
|
|
5955
6130
|
"optional": true,
|
|
@@ -5966,7 +6141,7 @@
|
|
|
5966
6141
|
"immutable": true,
|
|
5967
6142
|
"locationInModule": {
|
|
5968
6143
|
"filename": "src/projen-project-options.ts",
|
|
5969
|
-
"line":
|
|
6144
|
+
"line": 621
|
|
5970
6145
|
},
|
|
5971
6146
|
"name": "repositoryDirectory",
|
|
5972
6147
|
"optional": true,
|
|
@@ -5983,7 +6158,7 @@
|
|
|
5983
6158
|
"immutable": true,
|
|
5984
6159
|
"locationInModule": {
|
|
5985
6160
|
"filename": "src/projen-project-options.ts",
|
|
5986
|
-
"line":
|
|
6161
|
+
"line": 21
|
|
5987
6162
|
},
|
|
5988
6163
|
"name": "rootdir",
|
|
5989
6164
|
"optional": true,
|
|
@@ -6001,7 +6176,7 @@
|
|
|
6001
6176
|
"immutable": true,
|
|
6002
6177
|
"locationInModule": {
|
|
6003
6178
|
"filename": "src/projen-project-options.ts",
|
|
6004
|
-
"line":
|
|
6179
|
+
"line": 616
|
|
6005
6180
|
},
|
|
6006
6181
|
"name": "scopedPackagesOptions",
|
|
6007
6182
|
"optional": true,
|
|
@@ -6024,7 +6199,7 @@
|
|
|
6024
6199
|
"immutable": true,
|
|
6025
6200
|
"locationInModule": {
|
|
6026
6201
|
"filename": "src/projen-project-options.ts",
|
|
6027
|
-
"line":
|
|
6202
|
+
"line": 126
|
|
6028
6203
|
},
|
|
6029
6204
|
"name": "srcdir",
|
|
6030
6205
|
"optional": true,
|
|
@@ -6041,7 +6216,7 @@
|
|
|
6041
6216
|
"immutable": true,
|
|
6042
6217
|
"locationInModule": {
|
|
6043
6218
|
"filename": "src/projen-project-options.ts",
|
|
6044
|
-
"line":
|
|
6219
|
+
"line": 610
|
|
6045
6220
|
},
|
|
6046
6221
|
"name": "stability",
|
|
6047
6222
|
"optional": true,
|
|
@@ -6060,7 +6235,7 @@
|
|
|
6060
6235
|
"immutable": true,
|
|
6061
6236
|
"locationInModule": {
|
|
6062
6237
|
"filename": "src/projen-project-options.ts",
|
|
6063
|
-
"line":
|
|
6238
|
+
"line": 924
|
|
6064
6239
|
},
|
|
6065
6240
|
"name": "stale",
|
|
6066
6241
|
"optional": true,
|
|
@@ -6079,7 +6254,7 @@
|
|
|
6079
6254
|
"immutable": true,
|
|
6080
6255
|
"locationInModule": {
|
|
6081
6256
|
"filename": "src/projen-project-options.ts",
|
|
6082
|
-
"line":
|
|
6257
|
+
"line": 917
|
|
6083
6258
|
},
|
|
6084
6259
|
"name": "staleOptions",
|
|
6085
6260
|
"optional": true,
|
|
@@ -6098,7 +6273,7 @@
|
|
|
6098
6273
|
"immutable": true,
|
|
6099
6274
|
"locationInModule": {
|
|
6100
6275
|
"filename": "src/projen-project-options.ts",
|
|
6101
|
-
"line":
|
|
6276
|
+
"line": 120
|
|
6102
6277
|
},
|
|
6103
6278
|
"name": "testdir",
|
|
6104
6279
|
"optional": true,
|
|
@@ -6116,7 +6291,7 @@
|
|
|
6116
6291
|
"immutable": true,
|
|
6117
6292
|
"locationInModule": {
|
|
6118
6293
|
"filename": "src/projen-project-options.ts",
|
|
6119
|
-
"line":
|
|
6294
|
+
"line": 110
|
|
6120
6295
|
},
|
|
6121
6296
|
"name": "tsconfig",
|
|
6122
6297
|
"optional": true,
|
|
@@ -6134,7 +6309,7 @@
|
|
|
6134
6309
|
"immutable": true,
|
|
6135
6310
|
"locationInModule": {
|
|
6136
6311
|
"filename": "src/projen-project-options.ts",
|
|
6137
|
-
"line":
|
|
6312
|
+
"line": 104
|
|
6138
6313
|
},
|
|
6139
6314
|
"name": "tsconfigDev",
|
|
6140
6315
|
"optional": true,
|
|
@@ -6152,7 +6327,7 @@
|
|
|
6152
6327
|
"immutable": true,
|
|
6153
6328
|
"locationInModule": {
|
|
6154
6329
|
"filename": "src/projen-project-options.ts",
|
|
6155
|
-
"line":
|
|
6330
|
+
"line": 98
|
|
6156
6331
|
},
|
|
6157
6332
|
"name": "tsconfigDevFile",
|
|
6158
6333
|
"optional": true,
|
|
@@ -6169,7 +6344,7 @@
|
|
|
6169
6344
|
"immutable": true,
|
|
6170
6345
|
"locationInModule": {
|
|
6171
6346
|
"filename": "src/projen-project-options.ts",
|
|
6172
|
-
"line":
|
|
6347
|
+
"line": 92
|
|
6173
6348
|
},
|
|
6174
6349
|
"name": "tsJestOptions",
|
|
6175
6350
|
"optional": true,
|
|
@@ -6186,12 +6361,31 @@
|
|
|
6186
6361
|
"immutable": true,
|
|
6187
6362
|
"locationInModule": {
|
|
6188
6363
|
"filename": "src/projen-project-options.ts",
|
|
6189
|
-
"line":
|
|
6364
|
+
"line": 1111
|
|
6365
|
+
},
|
|
6366
|
+
"name": "upgradesSchedule",
|
|
6367
|
+
"optional": true,
|
|
6368
|
+
"type": {
|
|
6369
|
+
"fqn": "projen.javascript.UpgradeDependenciesSchedule"
|
|
6370
|
+
}
|
|
6371
|
+
},
|
|
6372
|
+
{
|
|
6373
|
+
"abstract": true,
|
|
6374
|
+
"docs": {
|
|
6375
|
+
"default": "ValidateTsconfig.STRICT",
|
|
6376
|
+
"remarks": "Only relevant when the project synthesizes its own tsconfig\n(i.e. `disableTsconfig` is not set on the TypeScriptProject).",
|
|
6377
|
+
"stability": "stable",
|
|
6378
|
+
"summary": "Level of tsconfig validation jsii should perform on the user-provided tsconfig."
|
|
6379
|
+
},
|
|
6380
|
+
"immutable": true,
|
|
6381
|
+
"locationInModule": {
|
|
6382
|
+
"filename": "src/projen-project-options.ts",
|
|
6383
|
+
"line": 16
|
|
6190
6384
|
},
|
|
6191
|
-
"name": "
|
|
6385
|
+
"name": "validateTsconfig",
|
|
6192
6386
|
"optional": true,
|
|
6193
6387
|
"type": {
|
|
6194
|
-
"fqn": "projen.
|
|
6388
|
+
"fqn": "projen.cdk.ValidateTsconfig"
|
|
6195
6389
|
}
|
|
6196
6390
|
},
|
|
6197
6391
|
{
|
|
@@ -6205,7 +6399,7 @@
|
|
|
6205
6399
|
"immutable": true,
|
|
6206
6400
|
"locationInModule": {
|
|
6207
6401
|
"filename": "src/projen-project-options.ts",
|
|
6208
|
-
"line":
|
|
6402
|
+
"line": 440
|
|
6209
6403
|
},
|
|
6210
6404
|
"name": "versionrcOptions",
|
|
6211
6405
|
"optional": true,
|
|
@@ -6229,7 +6423,7 @@
|
|
|
6229
6423
|
"immutable": true,
|
|
6230
6424
|
"locationInModule": {
|
|
6231
6425
|
"filename": "src/projen-project-options.ts",
|
|
6232
|
-
"line":
|
|
6426
|
+
"line": 910
|
|
6233
6427
|
},
|
|
6234
6428
|
"name": "vscode",
|
|
6235
6429
|
"optional": true,
|
|
@@ -6248,7 +6442,7 @@
|
|
|
6248
6442
|
"immutable": true,
|
|
6249
6443
|
"locationInModule": {
|
|
6250
6444
|
"filename": "src/projen-project-options.ts",
|
|
6251
|
-
"line":
|
|
6445
|
+
"line": 1124
|
|
6252
6446
|
},
|
|
6253
6447
|
"name": "wordmarkOptions",
|
|
6254
6448
|
"optional": true,
|
|
@@ -6266,7 +6460,7 @@
|
|
|
6266
6460
|
"immutable": true,
|
|
6267
6461
|
"locationInModule": {
|
|
6268
6462
|
"filename": "src/projen-project-options.ts",
|
|
6269
|
-
"line":
|
|
6463
|
+
"line": 204
|
|
6270
6464
|
},
|
|
6271
6465
|
"name": "workflowBootstrapSteps",
|
|
6272
6466
|
"optional": true,
|
|
@@ -6289,7 +6483,7 @@
|
|
|
6289
6483
|
"immutable": true,
|
|
6290
6484
|
"locationInModule": {
|
|
6291
6485
|
"filename": "src/projen-project-options.ts",
|
|
6292
|
-
"line":
|
|
6486
|
+
"line": 433
|
|
6293
6487
|
},
|
|
6294
6488
|
"name": "workflowContainerImage",
|
|
6295
6489
|
"optional": true,
|
|
@@ -6307,7 +6501,7 @@
|
|
|
6307
6501
|
"immutable": true,
|
|
6308
6502
|
"locationInModule": {
|
|
6309
6503
|
"filename": "src/projen-project-options.ts",
|
|
6310
|
-
"line":
|
|
6504
|
+
"line": 198
|
|
6311
6505
|
},
|
|
6312
6506
|
"name": "workflowGitIdentity",
|
|
6313
6507
|
"optional": true,
|
|
@@ -6326,7 +6520,7 @@
|
|
|
6326
6520
|
"immutable": true,
|
|
6327
6521
|
"locationInModule": {
|
|
6328
6522
|
"filename": "src/projen-project-options.ts",
|
|
6329
|
-
"line":
|
|
6523
|
+
"line": 192
|
|
6330
6524
|
},
|
|
6331
6525
|
"name": "workflowNodeVersion",
|
|
6332
6526
|
"optional": true,
|
|
@@ -6344,7 +6538,7 @@
|
|
|
6344
6538
|
"immutable": true,
|
|
6345
6539
|
"locationInModule": {
|
|
6346
6540
|
"filename": "src/projen-project-options.ts",
|
|
6347
|
-
"line":
|
|
6541
|
+
"line": 185
|
|
6348
6542
|
},
|
|
6349
6543
|
"name": "workflowPackageCache",
|
|
6350
6544
|
"optional": true,
|
|
@@ -6366,7 +6560,7 @@
|
|
|
6366
6560
|
"immutable": true,
|
|
6367
6561
|
"locationInModule": {
|
|
6368
6562
|
"filename": "src/projen-project-options.ts",
|
|
6369
|
-
"line":
|
|
6563
|
+
"line": 427
|
|
6370
6564
|
},
|
|
6371
6565
|
"name": "workflowRunsOn",
|
|
6372
6566
|
"optional": true,
|
|
@@ -6392,7 +6586,7 @@
|
|
|
6392
6586
|
"immutable": true,
|
|
6393
6587
|
"locationInModule": {
|
|
6394
6588
|
"filename": "src/projen-project-options.ts",
|
|
6395
|
-
"line":
|
|
6589
|
+
"line": 419
|
|
6396
6590
|
},
|
|
6397
6591
|
"name": "workflowRunsOnGroup",
|
|
6398
6592
|
"optional": true,
|
|
@@ -6410,7 +6604,7 @@
|
|
|
6410
6604
|
"immutable": true,
|
|
6411
6605
|
"locationInModule": {
|
|
6412
6606
|
"filename": "src/projen-project-options.ts",
|
|
6413
|
-
"line":
|
|
6607
|
+
"line": 605
|
|
6414
6608
|
},
|
|
6415
6609
|
"name": "yarnBerryOptions",
|
|
6416
6610
|
"optional": true,
|
|
@@ -6512,7 +6706,7 @@
|
|
|
6512
6706
|
"immutable": true,
|
|
6513
6707
|
"locationInModule": {
|
|
6514
6708
|
"filename": "src/typescript-project-options.ts",
|
|
6515
|
-
"line":
|
|
6709
|
+
"line": 824
|
|
6516
6710
|
},
|
|
6517
6711
|
"name": "authorName",
|
|
6518
6712
|
"type": {
|
|
@@ -6527,13 +6721,31 @@
|
|
|
6527
6721
|
"immutable": true,
|
|
6528
6722
|
"locationInModule": {
|
|
6529
6723
|
"filename": "src/typescript-project-options.ts",
|
|
6530
|
-
"line":
|
|
6724
|
+
"line": 1015
|
|
6531
6725
|
},
|
|
6532
6726
|
"name": "repo",
|
|
6533
6727
|
"type": {
|
|
6534
6728
|
"primitive": "string"
|
|
6535
6729
|
}
|
|
6536
6730
|
},
|
|
6731
|
+
{
|
|
6732
|
+
"abstract": true,
|
|
6733
|
+
"docs": {
|
|
6734
|
+
"default": "true",
|
|
6735
|
+
"stability": "stable",
|
|
6736
|
+
"summary": "Automatically add the resolved `packageManager` to `devEngines.packageManager` in `package.json`, setting `onFail` to `ignore`."
|
|
6737
|
+
},
|
|
6738
|
+
"immutable": true,
|
|
6739
|
+
"locationInModule": {
|
|
6740
|
+
"filename": "src/typescript-project-options.ts",
|
|
6741
|
+
"line": 843
|
|
6742
|
+
},
|
|
6743
|
+
"name": "addPackageManagerToDevEngines",
|
|
6744
|
+
"optional": true,
|
|
6745
|
+
"type": {
|
|
6746
|
+
"primitive": "boolean"
|
|
6747
|
+
}
|
|
6748
|
+
},
|
|
6537
6749
|
{
|
|
6538
6750
|
"abstract": true,
|
|
6539
6751
|
"docs": {
|
|
@@ -6544,7 +6756,7 @@
|
|
|
6544
6756
|
"immutable": true,
|
|
6545
6757
|
"locationInModule": {
|
|
6546
6758
|
"filename": "src/typescript-project-options.ts",
|
|
6547
|
-
"line":
|
|
6759
|
+
"line": 1028
|
|
6548
6760
|
},
|
|
6549
6761
|
"name": "allowedCommitTypes",
|
|
6550
6762
|
"optional": true,
|
|
@@ -6568,7 +6780,7 @@
|
|
|
6568
6780
|
"immutable": true,
|
|
6569
6781
|
"locationInModule": {
|
|
6570
6782
|
"filename": "src/typescript-project-options.ts",
|
|
6571
|
-
"line":
|
|
6783
|
+
"line": 837
|
|
6572
6784
|
},
|
|
6573
6785
|
"name": "allowLibraryDependencies",
|
|
6574
6786
|
"optional": true,
|
|
@@ -6586,7 +6798,7 @@
|
|
|
6586
6798
|
"immutable": true,
|
|
6587
6799
|
"locationInModule": {
|
|
6588
6800
|
"filename": "src/typescript-project-options.ts",
|
|
6589
|
-
"line":
|
|
6801
|
+
"line": 347
|
|
6590
6802
|
},
|
|
6591
6803
|
"name": "artifactsDirectory",
|
|
6592
6804
|
"optional": true,
|
|
@@ -6605,7 +6817,7 @@
|
|
|
6605
6817
|
"immutable": true,
|
|
6606
6818
|
"locationInModule": {
|
|
6607
6819
|
"filename": "src/typescript-project-options.ts",
|
|
6608
|
-
"line":
|
|
6820
|
+
"line": 341
|
|
6609
6821
|
},
|
|
6610
6822
|
"name": "auditDeps",
|
|
6611
6823
|
"optional": true,
|
|
@@ -6623,7 +6835,7 @@
|
|
|
6623
6835
|
"immutable": true,
|
|
6624
6836
|
"locationInModule": {
|
|
6625
6837
|
"filename": "src/typescript-project-options.ts",
|
|
6626
|
-
"line":
|
|
6838
|
+
"line": 332
|
|
6627
6839
|
},
|
|
6628
6840
|
"name": "auditDepsOptions",
|
|
6629
6841
|
"optional": true,
|
|
@@ -6640,7 +6852,7 @@
|
|
|
6640
6852
|
"immutable": true,
|
|
6641
6853
|
"locationInModule": {
|
|
6642
6854
|
"filename": "src/typescript-project-options.ts",
|
|
6643
|
-
"line":
|
|
6855
|
+
"line": 829
|
|
6644
6856
|
},
|
|
6645
6857
|
"name": "authorEmail",
|
|
6646
6858
|
"optional": true,
|
|
@@ -6657,7 +6869,7 @@
|
|
|
6657
6869
|
"immutable": true,
|
|
6658
6870
|
"locationInModule": {
|
|
6659
6871
|
"filename": "src/typescript-project-options.ts",
|
|
6660
|
-
"line":
|
|
6872
|
+
"line": 819
|
|
6661
6873
|
},
|
|
6662
6874
|
"name": "authorOrganization",
|
|
6663
6875
|
"optional": true,
|
|
@@ -6674,7 +6886,7 @@
|
|
|
6674
6886
|
"immutable": true,
|
|
6675
6887
|
"locationInModule": {
|
|
6676
6888
|
"filename": "src/typescript-project-options.ts",
|
|
6677
|
-
"line":
|
|
6889
|
+
"line": 814
|
|
6678
6890
|
},
|
|
6679
6891
|
"name": "authorUrl",
|
|
6680
6892
|
"optional": true,
|
|
@@ -6692,7 +6904,7 @@
|
|
|
6692
6904
|
"immutable": true,
|
|
6693
6905
|
"locationInModule": {
|
|
6694
6906
|
"filename": "src/typescript-project-options.ts",
|
|
6695
|
-
"line":
|
|
6907
|
+
"line": 929
|
|
6696
6908
|
},
|
|
6697
6909
|
"name": "autoApproveOptions",
|
|
6698
6910
|
"optional": true,
|
|
@@ -6706,12 +6918,12 @@
|
|
|
6706
6918
|
"default": "- true",
|
|
6707
6919
|
"remarks": "Throw if set to true but `autoApproveOptions` are not defined.",
|
|
6708
6920
|
"stability": "stable",
|
|
6709
|
-
"summary": "Automatically approve deps upgrade PRs, allowing them to be merged by mergify (if
|
|
6921
|
+
"summary": "Automatically approve deps upgrade PRs, allowing them to be merged by mergify (if configured)."
|
|
6710
6922
|
},
|
|
6711
6923
|
"immutable": true,
|
|
6712
6924
|
"locationInModule": {
|
|
6713
6925
|
"filename": "src/typescript-project-options.ts",
|
|
6714
|
-
"line":
|
|
6926
|
+
"line": 326
|
|
6715
6927
|
},
|
|
6716
6928
|
"name": "autoApproveUpgrades",
|
|
6717
6929
|
"optional": true,
|
|
@@ -6729,7 +6941,7 @@
|
|
|
6729
6941
|
"immutable": true,
|
|
6730
6942
|
"locationInModule": {
|
|
6731
6943
|
"filename": "src/typescript-project-options.ts",
|
|
6732
|
-
"line":
|
|
6944
|
+
"line": 809
|
|
6733
6945
|
},
|
|
6734
6946
|
"name": "autoDetectBin",
|
|
6735
6947
|
"optional": true,
|
|
@@ -6748,7 +6960,7 @@
|
|
|
6748
6960
|
"immutable": true,
|
|
6749
6961
|
"locationInModule": {
|
|
6750
6962
|
"filename": "src/typescript-project-options.ts",
|
|
6751
|
-
"line":
|
|
6963
|
+
"line": 1034
|
|
6752
6964
|
},
|
|
6753
6965
|
"name": "automationAppName",
|
|
6754
6966
|
"optional": true,
|
|
@@ -6767,7 +6979,7 @@
|
|
|
6767
6979
|
"immutable": true,
|
|
6768
6980
|
"locationInModule": {
|
|
6769
6981
|
"filename": "src/typescript-project-options.ts",
|
|
6770
|
-
"line":
|
|
6982
|
+
"line": 1040
|
|
6771
6983
|
},
|
|
6772
6984
|
"name": "automationEnvironment",
|
|
6773
6985
|
"optional": true,
|
|
@@ -6786,7 +6998,7 @@
|
|
|
6786
6998
|
"immutable": true,
|
|
6787
6999
|
"locationInModule": {
|
|
6788
7000
|
"filename": "src/typescript-project-options.ts",
|
|
6789
|
-
"line":
|
|
7001
|
+
"line": 923
|
|
6790
7002
|
},
|
|
6791
7003
|
"name": "autoMerge",
|
|
6792
7004
|
"optional": true,
|
|
@@ -6805,7 +7017,7 @@
|
|
|
6805
7017
|
"immutable": true,
|
|
6806
7018
|
"locationInModule": {
|
|
6807
7019
|
"filename": "src/typescript-project-options.ts",
|
|
6808
|
-
"line":
|
|
7020
|
+
"line": 915
|
|
6809
7021
|
},
|
|
6810
7022
|
"name": "autoMergeOptions",
|
|
6811
7023
|
"optional": true,
|
|
@@ -6823,7 +7035,7 @@
|
|
|
6823
7035
|
"immutable": true,
|
|
6824
7036
|
"locationInModule": {
|
|
6825
7037
|
"filename": "src/typescript-project-options.ts",
|
|
6826
|
-
"line":
|
|
7038
|
+
"line": 803
|
|
6827
7039
|
},
|
|
6828
7040
|
"name": "bin",
|
|
6829
7041
|
"optional": true,
|
|
@@ -6846,7 +7058,7 @@
|
|
|
6846
7058
|
"immutable": true,
|
|
6847
7059
|
"locationInModule": {
|
|
6848
7060
|
"filename": "src/typescript-project-options.ts",
|
|
6849
|
-
"line":
|
|
7061
|
+
"line": 319
|
|
6850
7062
|
},
|
|
6851
7063
|
"name": "biome",
|
|
6852
7064
|
"optional": true,
|
|
@@ -6864,7 +7076,7 @@
|
|
|
6864
7076
|
"immutable": true,
|
|
6865
7077
|
"locationInModule": {
|
|
6866
7078
|
"filename": "src/typescript-project-options.ts",
|
|
6867
|
-
"line":
|
|
7079
|
+
"line": 313
|
|
6868
7080
|
},
|
|
6869
7081
|
"name": "biomeOptions",
|
|
6870
7082
|
"optional": true,
|
|
@@ -6881,7 +7093,7 @@
|
|
|
6881
7093
|
"immutable": true,
|
|
6882
7094
|
"locationInModule": {
|
|
6883
7095
|
"filename": "src/typescript-project-options.ts",
|
|
6884
|
-
"line":
|
|
7096
|
+
"line": 795
|
|
6885
7097
|
},
|
|
6886
7098
|
"name": "bugsEmail",
|
|
6887
7099
|
"optional": true,
|
|
@@ -6898,7 +7110,7 @@
|
|
|
6898
7110
|
"immutable": true,
|
|
6899
7111
|
"locationInModule": {
|
|
6900
7112
|
"filename": "src/typescript-project-options.ts",
|
|
6901
|
-
"line":
|
|
7113
|
+
"line": 790
|
|
6902
7114
|
},
|
|
6903
7115
|
"name": "bugsUrl",
|
|
6904
7116
|
"optional": true,
|
|
@@ -6916,7 +7128,7 @@
|
|
|
6916
7128
|
"immutable": true,
|
|
6917
7129
|
"locationInModule": {
|
|
6918
7130
|
"filename": "src/typescript-project-options.ts",
|
|
6919
|
-
"line":
|
|
7131
|
+
"line": 307
|
|
6920
7132
|
},
|
|
6921
7133
|
"name": "buildWorkflow",
|
|
6922
7134
|
"optional": true,
|
|
@@ -6933,7 +7145,7 @@
|
|
|
6933
7145
|
"immutable": true,
|
|
6934
7146
|
"locationInModule": {
|
|
6935
7147
|
"filename": "src/typescript-project-options.ts",
|
|
6936
|
-
"line":
|
|
7148
|
+
"line": 301
|
|
6937
7149
|
},
|
|
6938
7150
|
"name": "buildWorkflowOptions",
|
|
6939
7151
|
"optional": true,
|
|
@@ -6952,7 +7164,7 @@
|
|
|
6952
7164
|
"immutable": true,
|
|
6953
7165
|
"locationInModule": {
|
|
6954
7166
|
"filename": "src/typescript-project-options.ts",
|
|
6955
|
-
"line":
|
|
7167
|
+
"line": 534
|
|
6956
7168
|
},
|
|
6957
7169
|
"name": "bumpPackage",
|
|
6958
7170
|
"optional": true,
|
|
@@ -6963,14 +7175,14 @@
|
|
|
6963
7175
|
{
|
|
6964
7176
|
"abstract": true,
|
|
6965
7177
|
"docs": {
|
|
6966
|
-
"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 `
|
|
7178
|
+
"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 `pnpm 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 `pnpm add` or `npm i` (e.g. `express@^2`) and\nthis will be what your `package.json` will eventually include.",
|
|
6967
7179
|
"stability": "stable",
|
|
6968
7180
|
"summary": "List of dependencies to bundle into this module."
|
|
6969
7181
|
},
|
|
6970
7182
|
"immutable": true,
|
|
6971
7183
|
"locationInModule": {
|
|
6972
7184
|
"filename": "src/typescript-project-options.ts",
|
|
6973
|
-
"line":
|
|
7185
|
+
"line": 785
|
|
6974
7186
|
},
|
|
6975
7187
|
"name": "bundledDeps",
|
|
6976
7188
|
"optional": true,
|
|
@@ -6992,7 +7204,7 @@
|
|
|
6992
7204
|
"immutable": true,
|
|
6993
7205
|
"locationInModule": {
|
|
6994
7206
|
"filename": "src/typescript-project-options.ts",
|
|
6995
|
-
"line":
|
|
7207
|
+
"line": 296
|
|
6996
7208
|
},
|
|
6997
7209
|
"name": "bundlerOptions",
|
|
6998
7210
|
"optional": true,
|
|
@@ -7010,7 +7222,7 @@
|
|
|
7010
7222
|
"immutable": true,
|
|
7011
7223
|
"locationInModule": {
|
|
7012
7224
|
"filename": "src/typescript-project-options.ts",
|
|
7013
|
-
"line":
|
|
7225
|
+
"line": 770
|
|
7014
7226
|
},
|
|
7015
7227
|
"name": "bunVersion",
|
|
7016
7228
|
"optional": true,
|
|
@@ -7029,7 +7241,7 @@
|
|
|
7029
7241
|
"immutable": true,
|
|
7030
7242
|
"locationInModule": {
|
|
7031
7243
|
"filename": "src/typescript-project-options.ts",
|
|
7032
|
-
"line":
|
|
7244
|
+
"line": 291
|
|
7033
7245
|
},
|
|
7034
7246
|
"name": "checkLicenses",
|
|
7035
7247
|
"optional": true,
|
|
@@ -7047,7 +7259,7 @@
|
|
|
7047
7259
|
"immutable": true,
|
|
7048
7260
|
"locationInModule": {
|
|
7049
7261
|
"filename": "src/typescript-project-options.ts",
|
|
7050
|
-
"line":
|
|
7262
|
+
"line": 907
|
|
7051
7263
|
},
|
|
7052
7264
|
"name": "clobber",
|
|
7053
7265
|
"optional": true,
|
|
@@ -7066,7 +7278,7 @@
|
|
|
7066
7278
|
"immutable": true,
|
|
7067
7279
|
"locationInModule": {
|
|
7068
7280
|
"filename": "src/typescript-project-options.ts",
|
|
7069
|
-
"line":
|
|
7281
|
+
"line": 764
|
|
7070
7282
|
},
|
|
7071
7283
|
"name": "codeArtifactOptions",
|
|
7072
7284
|
"optional": true,
|
|
@@ -7084,7 +7296,7 @@
|
|
|
7084
7296
|
"immutable": true,
|
|
7085
7297
|
"locationInModule": {
|
|
7086
7298
|
"filename": "src/typescript-project-options.ts",
|
|
7087
|
-
"line":
|
|
7299
|
+
"line": 284
|
|
7088
7300
|
},
|
|
7089
7301
|
"name": "codeCov",
|
|
7090
7302
|
"optional": true,
|
|
@@ -7102,7 +7314,7 @@
|
|
|
7102
7314
|
"immutable": true,
|
|
7103
7315
|
"locationInModule": {
|
|
7104
7316
|
"filename": "src/typescript-project-options.ts",
|
|
7105
|
-
"line":
|
|
7317
|
+
"line": 278
|
|
7106
7318
|
},
|
|
7107
7319
|
"name": "codeCovTokenSecret",
|
|
7108
7320
|
"optional": true,
|
|
@@ -7120,7 +7332,7 @@
|
|
|
7120
7332
|
"immutable": true,
|
|
7121
7333
|
"locationInModule": {
|
|
7122
7334
|
"filename": "src/typescript-project-options.ts",
|
|
7123
|
-
"line":
|
|
7335
|
+
"line": 1004
|
|
7124
7336
|
},
|
|
7125
7337
|
"name": "commitGenerated",
|
|
7126
7338
|
"optional": true,
|
|
@@ -7138,7 +7350,7 @@
|
|
|
7138
7350
|
"immutable": true,
|
|
7139
7351
|
"locationInModule": {
|
|
7140
7352
|
"filename": "src/typescript-project-options.ts",
|
|
7141
|
-
"line":
|
|
7353
|
+
"line": 272
|
|
7142
7354
|
},
|
|
7143
7355
|
"name": "copyrightOwner",
|
|
7144
7356
|
"optional": true,
|
|
@@ -7156,7 +7368,7 @@
|
|
|
7156
7368
|
"immutable": true,
|
|
7157
7369
|
"locationInModule": {
|
|
7158
7370
|
"filename": "src/typescript-project-options.ts",
|
|
7159
|
-
"line":
|
|
7371
|
+
"line": 266
|
|
7160
7372
|
},
|
|
7161
7373
|
"name": "copyrightPeriod",
|
|
7162
7374
|
"optional": true,
|
|
@@ -7167,6 +7379,9 @@
|
|
|
7167
7379
|
{
|
|
7168
7380
|
"abstract": true,
|
|
7169
7381
|
"docs": {
|
|
7382
|
+
"custom": {
|
|
7383
|
+
"featured": "true"
|
|
7384
|
+
},
|
|
7170
7385
|
"default": "\"main\"",
|
|
7171
7386
|
"stability": "stable",
|
|
7172
7387
|
"summary": "The name of the main release branch."
|
|
@@ -7174,7 +7389,7 @@
|
|
|
7174
7389
|
"immutable": true,
|
|
7175
7390
|
"locationInModule": {
|
|
7176
7391
|
"filename": "src/typescript-project-options.ts",
|
|
7177
|
-
"line":
|
|
7392
|
+
"line": 260
|
|
7178
7393
|
},
|
|
7179
7394
|
"name": "defaultReleaseBranch",
|
|
7180
7395
|
"optional": true,
|
|
@@ -7182,6 +7397,25 @@
|
|
|
7182
7397
|
"primitive": "string"
|
|
7183
7398
|
}
|
|
7184
7399
|
},
|
|
7400
|
+
{
|
|
7401
|
+
"abstract": true,
|
|
7402
|
+
"docs": {
|
|
7403
|
+
"default": "true",
|
|
7404
|
+
"remarks": "Only triggered when the lockfile for the configured package\nmanager already exists.\n\nThis is useful when migrating between package managers to avoid conflicts.",
|
|
7405
|
+
"stability": "stable",
|
|
7406
|
+
"summary": "Automatically delete lockfiles from package managers that are not the active one."
|
|
7407
|
+
},
|
|
7408
|
+
"immutable": true,
|
|
7409
|
+
"locationInModule": {
|
|
7410
|
+
"filename": "src/typescript-project-options.ts",
|
|
7411
|
+
"line": 757
|
|
7412
|
+
},
|
|
7413
|
+
"name": "deleteOrphanedLockFiles",
|
|
7414
|
+
"optional": true,
|
|
7415
|
+
"type": {
|
|
7416
|
+
"primitive": "boolean"
|
|
7417
|
+
}
|
|
7418
|
+
},
|
|
7185
7419
|
{
|
|
7186
7420
|
"abstract": true,
|
|
7187
7421
|
"docs": {
|
|
@@ -7226,14 +7460,14 @@
|
|
|
7226
7460
|
"featured": "true"
|
|
7227
7461
|
},
|
|
7228
7462
|
"default": "[]",
|
|
7229
|
-
"remarks": "The recommendation is to only specify the module name here (e.g.\n`express`). This will behave similar to `
|
|
7463
|
+
"remarks": "The recommendation is to only specify the module name here (e.g.\n`express`). This will behave similar to `pnpm 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 `pnpm add` or `npm i` (e.g. `express@^2`) and\nthis will be what your `package.json` will eventually include.",
|
|
7230
7464
|
"stability": "stable",
|
|
7231
7465
|
"summary": "Runtime dependencies of this module."
|
|
7232
7466
|
},
|
|
7233
7467
|
"immutable": true,
|
|
7234
7468
|
"locationInModule": {
|
|
7235
7469
|
"filename": "src/typescript-project-options.ts",
|
|
7236
|
-
"line":
|
|
7470
|
+
"line": 747
|
|
7237
7471
|
},
|
|
7238
7472
|
"name": "deps",
|
|
7239
7473
|
"optional": true,
|
|
@@ -7249,7 +7483,7 @@
|
|
|
7249
7483
|
{
|
|
7250
7484
|
"abstract": true,
|
|
7251
7485
|
"docs": {
|
|
7252
|
-
"default": "true",
|
|
7486
|
+
"default": "- `true` for root projects, `false` for subprojects",
|
|
7253
7487
|
"remarks": "Cannot be used in conjunction with `dependabot`.",
|
|
7254
7488
|
"stability": "stable",
|
|
7255
7489
|
"summary": "Use tasks and github workflows to handle dependency upgrades."
|
|
@@ -7296,7 +7530,7 @@
|
|
|
7296
7530
|
"immutable": true,
|
|
7297
7531
|
"locationInModule": {
|
|
7298
7532
|
"filename": "src/typescript-project-options.ts",
|
|
7299
|
-
"line":
|
|
7533
|
+
"line": 734
|
|
7300
7534
|
},
|
|
7301
7535
|
"name": "description",
|
|
7302
7536
|
"optional": true,
|
|
@@ -7314,7 +7548,7 @@
|
|
|
7314
7548
|
"immutable": true,
|
|
7315
7549
|
"locationInModule": {
|
|
7316
7550
|
"filename": "src/typescript-project-options.ts",
|
|
7317
|
-
"line":
|
|
7551
|
+
"line": 901
|
|
7318
7552
|
},
|
|
7319
7553
|
"name": "devContainer",
|
|
7320
7554
|
"optional": true,
|
|
@@ -7329,14 +7563,14 @@
|
|
|
7329
7563
|
"featured": "true"
|
|
7330
7564
|
},
|
|
7331
7565
|
"default": "[]",
|
|
7332
|
-
"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 `
|
|
7566
|
+
"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 `pnpm 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 `pnpm add` or `npm i` (e.g. `express@^2`) and\nthis will be what your `package.json` will eventually include.",
|
|
7333
7567
|
"stability": "stable",
|
|
7334
7568
|
"summary": "Build dependencies for this module."
|
|
7335
7569
|
},
|
|
7336
7570
|
"immutable": true,
|
|
7337
7571
|
"locationInModule": {
|
|
7338
7572
|
"filename": "src/typescript-project-options.ts",
|
|
7339
|
-
"line":
|
|
7573
|
+
"line": 726
|
|
7340
7574
|
},
|
|
7341
7575
|
"name": "devDeps",
|
|
7342
7576
|
"optional": true,
|
|
@@ -7349,6 +7583,23 @@
|
|
|
7349
7583
|
}
|
|
7350
7584
|
}
|
|
7351
7585
|
},
|
|
7586
|
+
{
|
|
7587
|
+
"abstract": true,
|
|
7588
|
+
"docs": {
|
|
7589
|
+
"stability": "stable",
|
|
7590
|
+
"summary": "Configure the `devEngines` field in `package.json`. The `devEngines.packageManager` field is automatically populated based on the resolved `packageManager` value. Any fields provided here are merged with the auto-populated `packageManager` entry."
|
|
7591
|
+
},
|
|
7592
|
+
"immutable": true,
|
|
7593
|
+
"locationInModule": {
|
|
7594
|
+
"filename": "src/typescript-project-options.ts",
|
|
7595
|
+
"line": 709
|
|
7596
|
+
},
|
|
7597
|
+
"name": "devEngines",
|
|
7598
|
+
"optional": true,
|
|
7599
|
+
"type": {
|
|
7600
|
+
"fqn": "projen.javascript.DevEngines"
|
|
7601
|
+
}
|
|
7602
|
+
},
|
|
7352
7603
|
{
|
|
7353
7604
|
"abstract": true,
|
|
7354
7605
|
"docs": {
|
|
@@ -7431,7 +7682,7 @@
|
|
|
7431
7682
|
"immutable": true,
|
|
7432
7683
|
"locationInModule": {
|
|
7433
7684
|
"filename": "src/typescript-project-options.ts",
|
|
7434
|
-
"line":
|
|
7685
|
+
"line": 701
|
|
7435
7686
|
},
|
|
7436
7687
|
"name": "entrypoint",
|
|
7437
7688
|
"optional": true,
|
|
@@ -7504,7 +7755,7 @@
|
|
|
7504
7755
|
"immutable": true,
|
|
7505
7756
|
"locationInModule": {
|
|
7506
7757
|
"filename": "src/typescript-project-options.ts",
|
|
7507
|
-
"line":
|
|
7758
|
+
"line": 895
|
|
7508
7759
|
},
|
|
7509
7760
|
"name": "github",
|
|
7510
7761
|
"optional": true,
|
|
@@ -7522,7 +7773,7 @@
|
|
|
7522
7773
|
"immutable": true,
|
|
7523
7774
|
"locationInModule": {
|
|
7524
7775
|
"filename": "src/typescript-project-options.ts",
|
|
7525
|
-
"line":
|
|
7776
|
+
"line": 888
|
|
7526
7777
|
},
|
|
7527
7778
|
"name": "githubOptions",
|
|
7528
7779
|
"optional": true,
|
|
@@ -7561,7 +7812,7 @@
|
|
|
7561
7812
|
"immutable": true,
|
|
7562
7813
|
"locationInModule": {
|
|
7563
7814
|
"filename": "src/typescript-project-options.ts",
|
|
7564
|
-
"line":
|
|
7815
|
+
"line": 998
|
|
7565
7816
|
},
|
|
7566
7817
|
"name": "gitIgnoreOptions",
|
|
7567
7818
|
"optional": true,
|
|
@@ -7578,7 +7829,7 @@
|
|
|
7578
7829
|
"immutable": true,
|
|
7579
7830
|
"locationInModule": {
|
|
7580
7831
|
"filename": "src/typescript-project-options.ts",
|
|
7581
|
-
"line":
|
|
7832
|
+
"line": 993
|
|
7582
7833
|
},
|
|
7583
7834
|
"name": "gitOptions",
|
|
7584
7835
|
"optional": true,
|
|
@@ -7596,7 +7847,7 @@
|
|
|
7596
7847
|
"immutable": true,
|
|
7597
7848
|
"locationInModule": {
|
|
7598
7849
|
"filename": "src/typescript-project-options.ts",
|
|
7599
|
-
"line":
|
|
7850
|
+
"line": 882
|
|
7600
7851
|
},
|
|
7601
7852
|
"name": "gitpod",
|
|
7602
7853
|
"optional": true,
|
|
@@ -7613,7 +7864,7 @@
|
|
|
7613
7864
|
"immutable": true,
|
|
7614
7865
|
"locationInModule": {
|
|
7615
7866
|
"filename": "src/typescript-project-options.ts",
|
|
7616
|
-
"line":
|
|
7867
|
+
"line": 694
|
|
7617
7868
|
},
|
|
7618
7869
|
"name": "homepage",
|
|
7619
7870
|
"optional": true,
|
|
@@ -7667,7 +7918,7 @@
|
|
|
7667
7918
|
"immutable": true,
|
|
7668
7919
|
"locationInModule": {
|
|
7669
7920
|
"filename": "src/typescript-project-options.ts",
|
|
7670
|
-
"line":
|
|
7921
|
+
"line": 527
|
|
7671
7922
|
},
|
|
7672
7923
|
"name": "jsiiReleaseVersion",
|
|
7673
7924
|
"optional": true,
|
|
@@ -7684,7 +7935,7 @@
|
|
|
7684
7935
|
"immutable": true,
|
|
7685
7936
|
"locationInModule": {
|
|
7686
7937
|
"filename": "src/typescript-project-options.ts",
|
|
7687
|
-
"line":
|
|
7938
|
+
"line": 689
|
|
7688
7939
|
},
|
|
7689
7940
|
"name": "keywords",
|
|
7690
7941
|
"optional": true,
|
|
@@ -7726,7 +7977,7 @@
|
|
|
7726
7977
|
"immutable": true,
|
|
7727
7978
|
"locationInModule": {
|
|
7728
7979
|
"filename": "src/typescript-project-options.ts",
|
|
7729
|
-
"line":
|
|
7980
|
+
"line": 684
|
|
7730
7981
|
},
|
|
7731
7982
|
"name": "license",
|
|
7732
7983
|
"optional": true,
|
|
@@ -7744,7 +7995,7 @@
|
|
|
7744
7995
|
"immutable": true,
|
|
7745
7996
|
"locationInModule": {
|
|
7746
7997
|
"filename": "src/typescript-project-options.ts",
|
|
7747
|
-
"line":
|
|
7998
|
+
"line": 676
|
|
7748
7999
|
},
|
|
7749
8000
|
"name": "licensed",
|
|
7750
8001
|
"optional": true,
|
|
@@ -7762,7 +8013,7 @@
|
|
|
7762
8013
|
"immutable": true,
|
|
7763
8014
|
"locationInModule": {
|
|
7764
8015
|
"filename": "src/typescript-project-options.ts",
|
|
7765
|
-
"line":
|
|
8016
|
+
"line": 988
|
|
7766
8017
|
},
|
|
7767
8018
|
"name": "logging",
|
|
7768
8019
|
"optional": true,
|
|
@@ -7780,7 +8031,7 @@
|
|
|
7780
8031
|
"immutable": true,
|
|
7781
8032
|
"locationInModule": {
|
|
7782
8033
|
"filename": "src/typescript-project-options.ts",
|
|
7783
|
-
"line":
|
|
8034
|
+
"line": 1057
|
|
7784
8035
|
},
|
|
7785
8036
|
"name": "logo",
|
|
7786
8037
|
"optional": true,
|
|
@@ -7799,7 +8050,7 @@
|
|
|
7799
8050
|
"immutable": true,
|
|
7800
8051
|
"locationInModule": {
|
|
7801
8052
|
"filename": "src/typescript-project-options.ts",
|
|
7802
|
-
"line":
|
|
8053
|
+
"line": 521
|
|
7803
8054
|
},
|
|
7804
8055
|
"name": "majorVersion",
|
|
7805
8056
|
"optional": true,
|
|
@@ -7818,7 +8069,7 @@
|
|
|
7818
8069
|
"immutable": true,
|
|
7819
8070
|
"locationInModule": {
|
|
7820
8071
|
"filename": "src/typescript-project-options.ts",
|
|
7821
|
-
"line":
|
|
8072
|
+
"line": 670
|
|
7822
8073
|
},
|
|
7823
8074
|
"name": "maxNodeVersion",
|
|
7824
8075
|
"optional": true,
|
|
@@ -7837,7 +8088,7 @@
|
|
|
7837
8088
|
"immutable": true,
|
|
7838
8089
|
"locationInModule": {
|
|
7839
8090
|
"filename": "src/typescript-project-options.ts",
|
|
7840
|
-
"line":
|
|
8091
|
+
"line": 513
|
|
7841
8092
|
},
|
|
7842
8093
|
"name": "minMajorVersion",
|
|
7843
8094
|
"optional": true,
|
|
@@ -7856,7 +8107,7 @@
|
|
|
7856
8107
|
"immutable": true,
|
|
7857
8108
|
"locationInModule": {
|
|
7858
8109
|
"filename": "src/typescript-project-options.ts",
|
|
7859
|
-
"line":
|
|
8110
|
+
"line": 659
|
|
7860
8111
|
},
|
|
7861
8112
|
"name": "minNodeVersion",
|
|
7862
8113
|
"optional": true,
|
|
@@ -7877,7 +8128,7 @@
|
|
|
7877
8128
|
"immutable": true,
|
|
7878
8129
|
"locationInModule": {
|
|
7879
8130
|
"filename": "src/typescript-project-options.ts",
|
|
7880
|
-
"line":
|
|
8131
|
+
"line": 1011
|
|
7881
8132
|
},
|
|
7882
8133
|
"name": "name",
|
|
7883
8134
|
"optional": true,
|
|
@@ -7896,7 +8147,7 @@
|
|
|
7896
8147
|
"immutable": true,
|
|
7897
8148
|
"locationInModule": {
|
|
7898
8149
|
"filename": "src/typescript-project-options.ts",
|
|
7899
|
-
"line":
|
|
8150
|
+
"line": 503
|
|
7900
8151
|
},
|
|
7901
8152
|
"name": "nextVersionCommand",
|
|
7902
8153
|
"optional": true,
|
|
@@ -7914,7 +8165,7 @@
|
|
|
7914
8165
|
"immutable": true,
|
|
7915
8166
|
"locationInModule": {
|
|
7916
8167
|
"filename": "src/typescript-project-options.ts",
|
|
7917
|
-
"line":
|
|
8168
|
+
"line": 644
|
|
7918
8169
|
},
|
|
7919
8170
|
"name": "npmAccess",
|
|
7920
8171
|
"optional": true,
|
|
@@ -7933,7 +8184,7 @@
|
|
|
7933
8184
|
"immutable": true,
|
|
7934
8185
|
"locationInModule": {
|
|
7935
8186
|
"filename": "src/typescript-project-options.ts",
|
|
7936
|
-
"line":
|
|
8187
|
+
"line": 479
|
|
7937
8188
|
},
|
|
7938
8189
|
"name": "npmDistTag",
|
|
7939
8190
|
"optional": true,
|
|
@@ -7987,7 +8238,7 @@
|
|
|
7987
8238
|
"immutable": true,
|
|
7988
8239
|
"locationInModule": {
|
|
7989
8240
|
"filename": "src/typescript-project-options.ts",
|
|
7990
|
-
"line":
|
|
8241
|
+
"line": 636
|
|
7991
8242
|
},
|
|
7992
8243
|
"name": "npmProvenance",
|
|
7993
8244
|
"optional": true,
|
|
@@ -8006,7 +8257,7 @@
|
|
|
8006
8257
|
"immutable": true,
|
|
8007
8258
|
"locationInModule": {
|
|
8008
8259
|
"filename": "src/typescript-project-options.ts",
|
|
8009
|
-
"line":
|
|
8260
|
+
"line": 625
|
|
8010
8261
|
},
|
|
8011
8262
|
"name": "npmRegistryUrl",
|
|
8012
8263
|
"optional": true,
|
|
@@ -8024,7 +8275,7 @@
|
|
|
8024
8275
|
"immutable": true,
|
|
8025
8276
|
"locationInModule": {
|
|
8026
8277
|
"filename": "src/typescript-project-options.ts",
|
|
8027
|
-
"line":
|
|
8278
|
+
"line": 618
|
|
8028
8279
|
},
|
|
8029
8280
|
"name": "npmTokenSecret",
|
|
8030
8281
|
"optional": true,
|
|
@@ -8042,7 +8293,7 @@
|
|
|
8042
8293
|
"immutable": true,
|
|
8043
8294
|
"locationInModule": {
|
|
8044
8295
|
"filename": "src/typescript-project-options.ts",
|
|
8045
|
-
"line":
|
|
8296
|
+
"line": 612
|
|
8046
8297
|
},
|
|
8047
8298
|
"name": "npmTrustedPublishing",
|
|
8048
8299
|
"optional": true,
|
|
@@ -8061,7 +8312,7 @@
|
|
|
8061
8312
|
"immutable": true,
|
|
8062
8313
|
"locationInModule": {
|
|
8063
8314
|
"filename": "src/typescript-project-options.ts",
|
|
8064
|
-
"line":
|
|
8315
|
+
"line": 982
|
|
8065
8316
|
},
|
|
8066
8317
|
"name": "outdir",
|
|
8067
8318
|
"optional": true,
|
|
@@ -8079,7 +8330,7 @@
|
|
|
8079
8330
|
"immutable": true,
|
|
8080
8331
|
"locationInModule": {
|
|
8081
8332
|
"filename": "src/typescript-project-options.ts",
|
|
8082
|
-
"line":
|
|
8333
|
+
"line": 1046
|
|
8083
8334
|
},
|
|
8084
8335
|
"name": "ownerCanSelfApprovePRs",
|
|
8085
8336
|
"optional": true,
|
|
@@ -8108,14 +8359,17 @@
|
|
|
8108
8359
|
{
|
|
8109
8360
|
"abstract": true,
|
|
8110
8361
|
"docs": {
|
|
8111
|
-
"
|
|
8362
|
+
"custom": {
|
|
8363
|
+
"pjnew": "$PACKAGE_MANAGER"
|
|
8364
|
+
},
|
|
8365
|
+
"default": "- Detected from the calling process or `YARN_CLASSIC` if detection fails.",
|
|
8112
8366
|
"stability": "stable",
|
|
8113
8367
|
"summary": "The Node Package Manager used to execute scripts."
|
|
8114
8368
|
},
|
|
8115
8369
|
"immutable": true,
|
|
8116
8370
|
"locationInModule": {
|
|
8117
8371
|
"filename": "src/typescript-project-options.ts",
|
|
8118
|
-
"line":
|
|
8372
|
+
"line": 606
|
|
8119
8373
|
},
|
|
8120
8374
|
"name": "packageManager",
|
|
8121
8375
|
"optional": true,
|
|
@@ -8136,7 +8390,7 @@
|
|
|
8136
8390
|
"immutable": true,
|
|
8137
8391
|
"locationInModule": {
|
|
8138
8392
|
"filename": "src/typescript-project-options.ts",
|
|
8139
|
-
"line":
|
|
8393
|
+
"line": 599
|
|
8140
8394
|
},
|
|
8141
8395
|
"name": "packageName",
|
|
8142
8396
|
"optional": true,
|
|
@@ -8153,7 +8407,7 @@
|
|
|
8153
8407
|
"immutable": true,
|
|
8154
8408
|
"locationInModule": {
|
|
8155
8409
|
"filename": "src/typescript-project-options.ts",
|
|
8156
|
-
"line":
|
|
8410
|
+
"line": 971
|
|
8157
8411
|
},
|
|
8158
8412
|
"name": "parent",
|
|
8159
8413
|
"optional": true,
|
|
@@ -8170,7 +8424,7 @@
|
|
|
8170
8424
|
"immutable": true,
|
|
8171
8425
|
"locationInModule": {
|
|
8172
8426
|
"filename": "src/typescript-project-options.ts",
|
|
8173
|
-
"line":
|
|
8427
|
+
"line": 592
|
|
8174
8428
|
},
|
|
8175
8429
|
"name": "peerDependencyOptions",
|
|
8176
8430
|
"optional": true,
|
|
@@ -8189,7 +8443,7 @@
|
|
|
8189
8443
|
"immutable": true,
|
|
8190
8444
|
"locationInModule": {
|
|
8191
8445
|
"filename": "src/typescript-project-options.ts",
|
|
8192
|
-
"line":
|
|
8446
|
+
"line": 587
|
|
8193
8447
|
},
|
|
8194
8448
|
"name": "peerDeps",
|
|
8195
8449
|
"optional": true,
|
|
@@ -8205,14 +8459,14 @@
|
|
|
8205
8459
|
{
|
|
8206
8460
|
"abstract": true,
|
|
8207
8461
|
"docs": {
|
|
8208
|
-
"default": "\"
|
|
8462
|
+
"default": "\"10.33.0\"",
|
|
8209
8463
|
"stability": "stable",
|
|
8210
8464
|
"summary": "The version of PNPM to use if using PNPM as a package manager."
|
|
8211
8465
|
},
|
|
8212
8466
|
"immutable": true,
|
|
8213
8467
|
"locationInModule": {
|
|
8214
8468
|
"filename": "src/typescript-project-options.ts",
|
|
8215
|
-
"line":
|
|
8469
|
+
"line": 568
|
|
8216
8470
|
},
|
|
8217
8471
|
"name": "pnpmVersion",
|
|
8218
8472
|
"optional": true,
|
|
@@ -8230,7 +8484,7 @@
|
|
|
8230
8484
|
"immutable": true,
|
|
8231
8485
|
"locationInModule": {
|
|
8232
8486
|
"filename": "src/typescript-project-options.ts",
|
|
8233
|
-
"line":
|
|
8487
|
+
"line": 471
|
|
8234
8488
|
},
|
|
8235
8489
|
"name": "postBuildSteps",
|
|
8236
8490
|
"optional": true,
|
|
@@ -8253,7 +8507,7 @@
|
|
|
8253
8507
|
"immutable": true,
|
|
8254
8508
|
"locationInModule": {
|
|
8255
8509
|
"filename": "src/typescript-project-options.ts",
|
|
8256
|
-
"line":
|
|
8510
|
+
"line": 465
|
|
8257
8511
|
},
|
|
8258
8512
|
"name": "prerelease",
|
|
8259
8513
|
"optional": true,
|
|
@@ -8297,6 +8551,24 @@
|
|
|
8297
8551
|
"fqn": "projen.javascript.PrettierOptions"
|
|
8298
8552
|
}
|
|
8299
8553
|
},
|
|
8554
|
+
{
|
|
8555
|
+
"abstract": true,
|
|
8556
|
+
"docs": {
|
|
8557
|
+
"default": "false",
|
|
8558
|
+
"stability": "stable",
|
|
8559
|
+
"summary": "Generate a project tree file (`.projen/tree.json`) that shows all components and their relationships. Useful for understanding your project structure and debugging."
|
|
8560
|
+
},
|
|
8561
|
+
"immutable": true,
|
|
8562
|
+
"locationInModule": {
|
|
8563
|
+
"filename": "src/typescript-project-options.ts",
|
|
8564
|
+
"line": 966
|
|
8565
|
+
},
|
|
8566
|
+
"name": "projectTree",
|
|
8567
|
+
"optional": true,
|
|
8568
|
+
"type": {
|
|
8569
|
+
"primitive": "boolean"
|
|
8570
|
+
}
|
|
8571
|
+
},
|
|
8300
8572
|
{
|
|
8301
8573
|
"abstract": true,
|
|
8302
8574
|
"docs": {
|
|
@@ -8308,7 +8580,7 @@
|
|
|
8308
8580
|
"immutable": true,
|
|
8309
8581
|
"locationInModule": {
|
|
8310
8582
|
"filename": "src/typescript-project-options.ts",
|
|
8311
|
-
"line":
|
|
8583
|
+
"line": 960
|
|
8312
8584
|
},
|
|
8313
8585
|
"name": "projenCommand",
|
|
8314
8586
|
"optional": true,
|
|
@@ -8326,7 +8598,7 @@
|
|
|
8326
8598
|
"immutable": true,
|
|
8327
8599
|
"locationInModule": {
|
|
8328
8600
|
"filename": "src/typescript-project-options.ts",
|
|
8329
|
-
"line":
|
|
8601
|
+
"line": 876
|
|
8330
8602
|
},
|
|
8331
8603
|
"name": "projenCredentials",
|
|
8332
8604
|
"optional": true,
|
|
@@ -8380,7 +8652,7 @@
|
|
|
8380
8652
|
"immutable": true,
|
|
8381
8653
|
"locationInModule": {
|
|
8382
8654
|
"filename": "src/typescript-project-options.ts",
|
|
8383
|
-
"line":
|
|
8655
|
+
"line": 953
|
|
8384
8656
|
},
|
|
8385
8657
|
"name": "projenrcJson",
|
|
8386
8658
|
"optional": true,
|
|
@@ -8398,7 +8670,7 @@
|
|
|
8398
8670
|
"immutable": true,
|
|
8399
8671
|
"locationInModule": {
|
|
8400
8672
|
"filename": "src/typescript-project-options.ts",
|
|
8401
|
-
"line":
|
|
8673
|
+
"line": 947
|
|
8402
8674
|
},
|
|
8403
8675
|
"name": "projenrcJsonOptions",
|
|
8404
8676
|
"optional": true,
|
|
@@ -8469,7 +8741,7 @@
|
|
|
8469
8741
|
"immutable": true,
|
|
8470
8742
|
"locationInModule": {
|
|
8471
8743
|
"filename": "src/typescript-project-options.ts",
|
|
8472
|
-
"line":
|
|
8744
|
+
"line": 459
|
|
8473
8745
|
},
|
|
8474
8746
|
"name": "publishDryRun",
|
|
8475
8747
|
"optional": true,
|
|
@@ -8488,7 +8760,7 @@
|
|
|
8488
8760
|
"immutable": true,
|
|
8489
8761
|
"locationInModule": {
|
|
8490
8762
|
"filename": "src/typescript-project-options.ts",
|
|
8491
|
-
"line":
|
|
8763
|
+
"line": 453
|
|
8492
8764
|
},
|
|
8493
8765
|
"name": "publishTasks",
|
|
8494
8766
|
"optional": true,
|
|
@@ -8547,7 +8819,7 @@
|
|
|
8547
8819
|
"immutable": true,
|
|
8548
8820
|
"locationInModule": {
|
|
8549
8821
|
"filename": "src/typescript-project-options.ts",
|
|
8550
|
-
"line":
|
|
8822
|
+
"line": 870
|
|
8551
8823
|
},
|
|
8552
8824
|
"name": "readme",
|
|
8553
8825
|
"optional": true,
|
|
@@ -8565,7 +8837,7 @@
|
|
|
8565
8837
|
"immutable": true,
|
|
8566
8838
|
"locationInModule": {
|
|
8567
8839
|
"filename": "src/typescript-project-options.ts",
|
|
8568
|
-
"line":
|
|
8840
|
+
"line": 1021
|
|
8569
8841
|
},
|
|
8570
8842
|
"name": "releasableCommitTypes",
|
|
8571
8843
|
"optional": true,
|
|
@@ -8607,7 +8879,7 @@
|
|
|
8607
8879
|
"immutable": true,
|
|
8608
8880
|
"locationInModule": {
|
|
8609
8881
|
"filename": "src/typescript-project-options.ts",
|
|
8610
|
-
"line":
|
|
8882
|
+
"line": 445
|
|
8611
8883
|
},
|
|
8612
8884
|
"name": "releaseBranches",
|
|
8613
8885
|
"optional": true,
|
|
@@ -8631,7 +8903,7 @@
|
|
|
8631
8903
|
"immutable": true,
|
|
8632
8904
|
"locationInModule": {
|
|
8633
8905
|
"filename": "src/typescript-project-options.ts",
|
|
8634
|
-
"line":
|
|
8906
|
+
"line": 432
|
|
8635
8907
|
},
|
|
8636
8908
|
"name": "releaseEnvironment",
|
|
8637
8909
|
"optional": true,
|
|
@@ -8649,7 +8921,7 @@
|
|
|
8649
8921
|
"immutable": true,
|
|
8650
8922
|
"locationInModule": {
|
|
8651
8923
|
"filename": "src/typescript-project-options.ts",
|
|
8652
|
-
"line":
|
|
8924
|
+
"line": 421
|
|
8653
8925
|
},
|
|
8654
8926
|
"name": "releaseFailureIssue",
|
|
8655
8927
|
"optional": true,
|
|
@@ -8668,7 +8940,7 @@
|
|
|
8668
8940
|
"immutable": true,
|
|
8669
8941
|
"locationInModule": {
|
|
8670
8942
|
"filename": "src/typescript-project-options.ts",
|
|
8671
|
-
"line":
|
|
8943
|
+
"line": 415
|
|
8672
8944
|
},
|
|
8673
8945
|
"name": "releaseFailureIssueLabel",
|
|
8674
8946
|
"optional": true,
|
|
@@ -8687,7 +8959,7 @@
|
|
|
8687
8959
|
"immutable": true,
|
|
8688
8960
|
"locationInModule": {
|
|
8689
8961
|
"filename": "src/typescript-project-options.ts",
|
|
8690
|
-
"line":
|
|
8962
|
+
"line": 408
|
|
8691
8963
|
},
|
|
8692
8964
|
"name": "releaseTagPrefix",
|
|
8693
8965
|
"optional": true,
|
|
@@ -8723,7 +8995,7 @@
|
|
|
8723
8995
|
"immutable": true,
|
|
8724
8996
|
"locationInModule": {
|
|
8725
8997
|
"filename": "src/typescript-project-options.ts",
|
|
8726
|
-
"line":
|
|
8998
|
+
"line": 398
|
|
8727
8999
|
},
|
|
8728
9000
|
"name": "releaseTrigger",
|
|
8729
9001
|
"optional": true,
|
|
@@ -8741,7 +9013,7 @@
|
|
|
8741
9013
|
"immutable": true,
|
|
8742
9014
|
"locationInModule": {
|
|
8743
9015
|
"filename": "src/typescript-project-options.ts",
|
|
8744
|
-
"line":
|
|
9016
|
+
"line": 392
|
|
8745
9017
|
},
|
|
8746
9018
|
"name": "releaseWorkflowEnv",
|
|
8747
9019
|
"optional": true,
|
|
@@ -8764,7 +9036,7 @@
|
|
|
8764
9036
|
"immutable": true,
|
|
8765
9037
|
"locationInModule": {
|
|
8766
9038
|
"filename": "src/typescript-project-options.ts",
|
|
8767
|
-
"line":
|
|
9039
|
+
"line": 386
|
|
8768
9040
|
},
|
|
8769
9041
|
"name": "releaseWorkflowName",
|
|
8770
9042
|
"optional": true,
|
|
@@ -8781,7 +9053,7 @@
|
|
|
8781
9053
|
"immutable": true,
|
|
8782
9054
|
"locationInModule": {
|
|
8783
9055
|
"filename": "src/typescript-project-options.ts",
|
|
8784
|
-
"line":
|
|
9056
|
+
"line": 380
|
|
8785
9057
|
},
|
|
8786
9058
|
"name": "releaseWorkflowSetupSteps",
|
|
8787
9059
|
"optional": true,
|
|
@@ -8804,7 +9076,7 @@
|
|
|
8804
9076
|
"immutable": true,
|
|
8805
9077
|
"locationInModule": {
|
|
8806
9078
|
"filename": "src/typescript-project-options.ts",
|
|
8807
|
-
"line":
|
|
9079
|
+
"line": 941
|
|
8808
9080
|
},
|
|
8809
9081
|
"name": "renovatebot",
|
|
8810
9082
|
"optional": true,
|
|
@@ -8822,7 +9094,7 @@
|
|
|
8822
9094
|
"immutable": true,
|
|
8823
9095
|
"locationInModule": {
|
|
8824
9096
|
"filename": "src/typescript-project-options.ts",
|
|
8825
|
-
"line":
|
|
9097
|
+
"line": 935
|
|
8826
9098
|
},
|
|
8827
9099
|
"name": "renovatebotOptions",
|
|
8828
9100
|
"optional": true,
|
|
@@ -8840,7 +9112,7 @@
|
|
|
8840
9112
|
"immutable": true,
|
|
8841
9113
|
"locationInModule": {
|
|
8842
9114
|
"filename": "src/typescript-project-options.ts",
|
|
8843
|
-
"line":
|
|
9115
|
+
"line": 562
|
|
8844
9116
|
},
|
|
8845
9117
|
"name": "repository",
|
|
8846
9118
|
"optional": true,
|
|
@@ -8857,7 +9129,7 @@
|
|
|
8857
9129
|
"immutable": true,
|
|
8858
9130
|
"locationInModule": {
|
|
8859
9131
|
"filename": "src/typescript-project-options.ts",
|
|
8860
|
-
"line":
|
|
9132
|
+
"line": 556
|
|
8861
9133
|
},
|
|
8862
9134
|
"name": "repositoryDirectory",
|
|
8863
9135
|
"optional": true,
|
|
@@ -8875,7 +9147,7 @@
|
|
|
8875
9147
|
"immutable": true,
|
|
8876
9148
|
"locationInModule": {
|
|
8877
9149
|
"filename": "src/typescript-project-options.ts",
|
|
8878
|
-
"line":
|
|
9150
|
+
"line": 551
|
|
8879
9151
|
},
|
|
8880
9152
|
"name": "scopedPackagesOptions",
|
|
8881
9153
|
"optional": true,
|
|
@@ -8915,7 +9187,7 @@
|
|
|
8915
9187
|
"immutable": true,
|
|
8916
9188
|
"locationInModule": {
|
|
8917
9189
|
"filename": "src/typescript-project-options.ts",
|
|
8918
|
-
"line":
|
|
9190
|
+
"line": 545
|
|
8919
9191
|
},
|
|
8920
9192
|
"name": "stability",
|
|
8921
9193
|
"optional": true,
|
|
@@ -8934,7 +9206,7 @@
|
|
|
8934
9206
|
"immutable": true,
|
|
8935
9207
|
"locationInModule": {
|
|
8936
9208
|
"filename": "src/typescript-project-options.ts",
|
|
8937
|
-
"line":
|
|
9209
|
+
"line": 864
|
|
8938
9210
|
},
|
|
8939
9211
|
"name": "stale",
|
|
8940
9212
|
"optional": true,
|
|
@@ -8953,7 +9225,7 @@
|
|
|
8953
9225
|
"immutable": true,
|
|
8954
9226
|
"locationInModule": {
|
|
8955
9227
|
"filename": "src/typescript-project-options.ts",
|
|
8956
|
-
"line":
|
|
9228
|
+
"line": 857
|
|
8957
9229
|
},
|
|
8958
9230
|
"name": "staleOptions",
|
|
8959
9231
|
"optional": true,
|
|
@@ -9079,7 +9351,7 @@
|
|
|
9079
9351
|
"immutable": true,
|
|
9080
9352
|
"locationInModule": {
|
|
9081
9353
|
"filename": "src/typescript-project-options.ts",
|
|
9082
|
-
"line":
|
|
9354
|
+
"line": 1051
|
|
9083
9355
|
},
|
|
9084
9356
|
"name": "upgradesSchedule",
|
|
9085
9357
|
"optional": true,
|
|
@@ -9098,7 +9370,7 @@
|
|
|
9098
9370
|
"immutable": true,
|
|
9099
9371
|
"locationInModule": {
|
|
9100
9372
|
"filename": "src/typescript-project-options.ts",
|
|
9101
|
-
"line":
|
|
9373
|
+
"line": 375
|
|
9102
9374
|
},
|
|
9103
9375
|
"name": "versionrcOptions",
|
|
9104
9376
|
"optional": true,
|
|
@@ -9122,7 +9394,7 @@
|
|
|
9122
9394
|
"immutable": true,
|
|
9123
9395
|
"locationInModule": {
|
|
9124
9396
|
"filename": "src/typescript-project-options.ts",
|
|
9125
|
-
"line":
|
|
9397
|
+
"line": 850
|
|
9126
9398
|
},
|
|
9127
9399
|
"name": "vscode",
|
|
9128
9400
|
"optional": true,
|
|
@@ -9141,7 +9413,7 @@
|
|
|
9141
9413
|
"immutable": true,
|
|
9142
9414
|
"locationInModule": {
|
|
9143
9415
|
"filename": "src/typescript-project-options.ts",
|
|
9144
|
-
"line":
|
|
9416
|
+
"line": 1064
|
|
9145
9417
|
},
|
|
9146
9418
|
"name": "wordmarkOptions",
|
|
9147
9419
|
"optional": true,
|
|
@@ -9182,7 +9454,7 @@
|
|
|
9182
9454
|
"immutable": true,
|
|
9183
9455
|
"locationInModule": {
|
|
9184
9456
|
"filename": "src/typescript-project-options.ts",
|
|
9185
|
-
"line":
|
|
9457
|
+
"line": 368
|
|
9186
9458
|
},
|
|
9187
9459
|
"name": "workflowContainerImage",
|
|
9188
9460
|
"optional": true,
|
|
@@ -9259,7 +9531,7 @@
|
|
|
9259
9531
|
"immutable": true,
|
|
9260
9532
|
"locationInModule": {
|
|
9261
9533
|
"filename": "src/typescript-project-options.ts",
|
|
9262
|
-
"line":
|
|
9534
|
+
"line": 362
|
|
9263
9535
|
},
|
|
9264
9536
|
"name": "workflowRunsOn",
|
|
9265
9537
|
"optional": true,
|
|
@@ -9285,7 +9557,7 @@
|
|
|
9285
9557
|
"immutable": true,
|
|
9286
9558
|
"locationInModule": {
|
|
9287
9559
|
"filename": "src/typescript-project-options.ts",
|
|
9288
|
-
"line":
|
|
9560
|
+
"line": 354
|
|
9289
9561
|
},
|
|
9290
9562
|
"name": "workflowRunsOnGroup",
|
|
9291
9563
|
"optional": true,
|
|
@@ -9303,7 +9575,7 @@
|
|
|
9303
9575
|
"immutable": true,
|
|
9304
9576
|
"locationInModule": {
|
|
9305
9577
|
"filename": "src/typescript-project-options.ts",
|
|
9306
|
-
"line":
|
|
9578
|
+
"line": 540
|
|
9307
9579
|
},
|
|
9308
9580
|
"name": "yarnBerryOptions",
|
|
9309
9581
|
"optional": true,
|
|
@@ -9314,6 +9586,169 @@
|
|
|
9314
9586
|
],
|
|
9315
9587
|
"symbolId": "src/typescript-project-options:TypeScriptProjectOptions"
|
|
9316
9588
|
},
|
|
9589
|
+
"mrpj.components.NodeVersion": {
|
|
9590
|
+
"assembly": "mrpj",
|
|
9591
|
+
"base": "projen.Component",
|
|
9592
|
+
"docs": {
|
|
9593
|
+
"stability": "stable",
|
|
9594
|
+
"summary": "A component that manages Node.js version files (.nvmrc, .node-version)."
|
|
9595
|
+
},
|
|
9596
|
+
"fqn": "mrpj.components.NodeVersion",
|
|
9597
|
+
"initializer": {
|
|
9598
|
+
"docs": {
|
|
9599
|
+
"stability": "stable"
|
|
9600
|
+
},
|
|
9601
|
+
"locationInModule": {
|
|
9602
|
+
"filename": "src/components/NodeVersion.ts",
|
|
9603
|
+
"line": 45
|
|
9604
|
+
},
|
|
9605
|
+
"parameters": [
|
|
9606
|
+
{
|
|
9607
|
+
"name": "scope",
|
|
9608
|
+
"type": {
|
|
9609
|
+
"fqn": "constructs.IConstruct"
|
|
9610
|
+
}
|
|
9611
|
+
},
|
|
9612
|
+
{
|
|
9613
|
+
"name": "options",
|
|
9614
|
+
"optional": true,
|
|
9615
|
+
"type": {
|
|
9616
|
+
"fqn": "mrpj.components.NodeVersionOptions"
|
|
9617
|
+
}
|
|
9618
|
+
}
|
|
9619
|
+
]
|
|
9620
|
+
},
|
|
9621
|
+
"kind": "class",
|
|
9622
|
+
"locationInModule": {
|
|
9623
|
+
"filename": "src/components/NodeVersion.ts",
|
|
9624
|
+
"line": 28
|
|
9625
|
+
},
|
|
9626
|
+
"methods": [
|
|
9627
|
+
{
|
|
9628
|
+
"docs": {
|
|
9629
|
+
"remarks": "Supports aliases like `lts/*`, `lts/-1`, `lts/iron`, `current`, `latest`, `node`.",
|
|
9630
|
+
"returns": "The resolved major version number",
|
|
9631
|
+
"stability": "stable",
|
|
9632
|
+
"summary": "Converts a version spec to a concrete version number."
|
|
9633
|
+
},
|
|
9634
|
+
"locationInModule": {
|
|
9635
|
+
"filename": "src/components/NodeVersion.ts",
|
|
9636
|
+
"line": 36
|
|
9637
|
+
},
|
|
9638
|
+
"name": "specToVersion",
|
|
9639
|
+
"parameters": [
|
|
9640
|
+
{
|
|
9641
|
+
"docs": {
|
|
9642
|
+
"summary": "The version spec or alias to convert."
|
|
9643
|
+
},
|
|
9644
|
+
"name": "versionSpec",
|
|
9645
|
+
"type": {
|
|
9646
|
+
"primitive": "string"
|
|
9647
|
+
}
|
|
9648
|
+
}
|
|
9649
|
+
],
|
|
9650
|
+
"returns": {
|
|
9651
|
+
"type": {
|
|
9652
|
+
"primitive": "string"
|
|
9653
|
+
}
|
|
9654
|
+
},
|
|
9655
|
+
"static": true
|
|
9656
|
+
}
|
|
9657
|
+
],
|
|
9658
|
+
"name": "NodeVersion",
|
|
9659
|
+
"namespace": "components",
|
|
9660
|
+
"properties": [
|
|
9661
|
+
{
|
|
9662
|
+
"docs": {
|
|
9663
|
+
"stability": "stable",
|
|
9664
|
+
"summary": "The resolved Node.js major version."
|
|
9665
|
+
},
|
|
9666
|
+
"immutable": true,
|
|
9667
|
+
"locationInModule": {
|
|
9668
|
+
"filename": "src/components/NodeVersion.ts",
|
|
9669
|
+
"line": 43
|
|
9670
|
+
},
|
|
9671
|
+
"name": "version",
|
|
9672
|
+
"type": {
|
|
9673
|
+
"primitive": "string"
|
|
9674
|
+
}
|
|
9675
|
+
}
|
|
9676
|
+
],
|
|
9677
|
+
"symbolId": "src/components/NodeVersion:NodeVersion"
|
|
9678
|
+
},
|
|
9679
|
+
"mrpj.components.NodeVersionOptions": {
|
|
9680
|
+
"assembly": "mrpj",
|
|
9681
|
+
"datatype": true,
|
|
9682
|
+
"docs": {
|
|
9683
|
+
"stability": "stable"
|
|
9684
|
+
},
|
|
9685
|
+
"fqn": "mrpj.components.NodeVersionOptions",
|
|
9686
|
+
"kind": "interface",
|
|
9687
|
+
"locationInModule": {
|
|
9688
|
+
"filename": "src/components/NodeVersion.ts",
|
|
9689
|
+
"line": 6
|
|
9690
|
+
},
|
|
9691
|
+
"name": "NodeVersionOptions",
|
|
9692
|
+
"namespace": "components",
|
|
9693
|
+
"properties": [
|
|
9694
|
+
{
|
|
9695
|
+
"abstract": true,
|
|
9696
|
+
"docs": {
|
|
9697
|
+
"default": "true",
|
|
9698
|
+
"stability": "stable",
|
|
9699
|
+
"summary": "Create a .node-version file."
|
|
9700
|
+
},
|
|
9701
|
+
"immutable": true,
|
|
9702
|
+
"locationInModule": {
|
|
9703
|
+
"filename": "src/components/NodeVersion.ts",
|
|
9704
|
+
"line": 22
|
|
9705
|
+
},
|
|
9706
|
+
"name": "dotNodeVersion",
|
|
9707
|
+
"optional": true,
|
|
9708
|
+
"type": {
|
|
9709
|
+
"primitive": "boolean"
|
|
9710
|
+
}
|
|
9711
|
+
},
|
|
9712
|
+
{
|
|
9713
|
+
"abstract": true,
|
|
9714
|
+
"docs": {
|
|
9715
|
+
"default": "true",
|
|
9716
|
+
"stability": "stable",
|
|
9717
|
+
"summary": "Create a .nvmrc file."
|
|
9718
|
+
},
|
|
9719
|
+
"immutable": true,
|
|
9720
|
+
"locationInModule": {
|
|
9721
|
+
"filename": "src/components/NodeVersion.ts",
|
|
9722
|
+
"line": 17
|
|
9723
|
+
},
|
|
9724
|
+
"name": "dotNvmrc",
|
|
9725
|
+
"optional": true,
|
|
9726
|
+
"type": {
|
|
9727
|
+
"primitive": "boolean"
|
|
9728
|
+
}
|
|
9729
|
+
},
|
|
9730
|
+
{
|
|
9731
|
+
"abstract": true,
|
|
9732
|
+
"docs": {
|
|
9733
|
+
"default": "'lts/*'",
|
|
9734
|
+
"remarks": "Supports aliases like `lts/*`, `lts/-1`, `current`, `latest`.",
|
|
9735
|
+
"stability": "stable",
|
|
9736
|
+
"summary": "The node version to use."
|
|
9737
|
+
},
|
|
9738
|
+
"immutable": true,
|
|
9739
|
+
"locationInModule": {
|
|
9740
|
+
"filename": "src/components/NodeVersion.ts",
|
|
9741
|
+
"line": 12
|
|
9742
|
+
},
|
|
9743
|
+
"name": "versionSpec",
|
|
9744
|
+
"optional": true,
|
|
9745
|
+
"type": {
|
|
9746
|
+
"primitive": "string"
|
|
9747
|
+
}
|
|
9748
|
+
}
|
|
9749
|
+
],
|
|
9750
|
+
"symbolId": "src/components/NodeVersion:NodeVersionOptions"
|
|
9751
|
+
},
|
|
9317
9752
|
"mrpj.components.SelfMutationOnForks": {
|
|
9318
9753
|
"assembly": "mrpj",
|
|
9319
9754
|
"docs": {
|
|
@@ -10648,6 +11083,6 @@
|
|
|
10648
11083
|
"symbolId": "src/logo/Wordmark:WordmarkOptions"
|
|
10649
11084
|
}
|
|
10650
11085
|
},
|
|
10651
|
-
"version": "0.2.
|
|
10652
|
-
"fingerprint": "
|
|
11086
|
+
"version": "0.2.11",
|
|
11087
|
+
"fingerprint": "1p9WjyiYUpgsNIhlV5DD4wCWYV0EwfY5uNEBUpdM1YA="
|
|
10653
11088
|
}
|