@alma-cdk/construct-library 0.0.13 → 0.0.14
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 +3014 -21
- package/.nvmrc +1 -1
- package/API.md +2170 -0
- package/README.md +5 -1
- package/lib/AlmaCdkConstructLibrary.js +6 -3
- package/lib/NodeConfig.d.ts +6 -3
- package/lib/NodeConfig.js +43 -19
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -1
- package/lib/schemas/almaCdkConstructLibraryOptions.d.ts +3 -0
- package/lib/schemas/almaCdkConstructLibraryOptions.js +3 -1
- package/package.json +5 -2
- package/scripts/generate-pnpm-workspace-types.ts +236 -7
package/.jsii
CHANGED
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
},
|
|
100
100
|
"name": "@alma-cdk/construct-library",
|
|
101
101
|
"readme": {
|
|
102
|
-
"markdown": "<div align=\"center\">\n <h1>\n\t<img width=\"512\" src=\"assets/alma-cdk-construct-library.svg\" alt=\"Alma CDK Construct Library\" />\n <br/>\n <br/>\n </h1>\n\n \n \n [](https://github.com/alma-cdk/construct-library/actions/workflows/release.yml)\n [](https://sonarcloud.io/summary/new_code?id=alma-cdk_construct-library)\n [](https://sonarcloud.io/summary/new_code?id=alma-cdk_construct-library)\n <hr/>\n</div>\n\nCustom [Projen Project Type](https://projen.io/docs/concepts/projects/building-your-own/) to manage all the `alma-cdk/*` CDK construts.\n\n## Installation\n\n1. Install with `npm`:\n ```sh\n npm i -D @alma-cdk/construct-library\n ```\n\n2. If existing project, install `projen@0.99.21` or newer\n\n2. Import the custom Projen project type:\n ```diff\n - import { AwsCdkConstructLibrary } from 'projen/lib/awscdk';\n + import { AlmaCdkConstructLibrary } from \"@alma-cdk/construct-library\";\n ```\n\n3. Initialize and define (at least) minimum required configuration:\n ```ts\n const project = new AlmaCdkConstructLibrary({\n name: \"<SCOPE>/<PACKAGE_NAME>\",\n author: \"<AUTHOR_ORGANIZATION_NAME>\",\n authorAddress: \"<AUTHOR_ORGANIZATION_EMAIL>\",\n description: \"<PACKAGE_DESCRIPTION>\",\n repositoryUrl: \"https://<GIT_URL>.git\",\n stability: cdk.Stability.EXPERIMENTAL, // or STABLE or DEPRECATED\n majorVersion: 0, // 1, 2, ...\n releaseEnvironment: \"production\",\n });\n\n project.synth();\n ```\n\n4. Install `pnpm`\n\n5. Run `projen` with `pnpm`:\n ```sh\n pnpm exec projen\n ```\n\n6. Ensure correct Node version: `fnm use`\n\n7. Remove old `node_modules`, `yarn.lock`, and/or `package-lock.json` files\n\n8. Reinstall everything with `pnpm install`\n\n"
|
|
102
|
+
"markdown": "<div align=\"center\">\n <h1>\n\t<img width=\"512\" src=\"assets/alma-cdk-construct-library.svg\" alt=\"Alma CDK Construct Library\" />\n <br/>\n <br/>\n </h1>\n\n \n \n [](https://github.com/alma-cdk/construct-library/actions/workflows/release.yml)\n [](https://sonarcloud.io/summary/new_code?id=alma-cdk_construct-library)\n [](https://sonarcloud.io/summary/new_code?id=alma-cdk_construct-library)\n <hr/>\n</div>\n\nCustom [Projen Project Type](https://projen.io/docs/concepts/projects/building-your-own/) to manage all the `alma-cdk/*` CDK construts.\n\n## Installation\n\n1. Install with `npm`:\n ```sh\n npm i -D @alma-cdk/construct-library\n ```\n\n2. If existing project, install `npm i -D projen@0.99.21` or newer\n\n2. Import the custom Projen project type:\n ```diff\n - import { AwsCdkConstructLibrary } from 'projen/lib/awscdk';\n + import { cdk } from \"projen\";\n + import { AlmaCdkConstructLibrary } from \"@alma-cdk/construct-library\";\n ```\n\n3. Initialize and define (at least) minimum required configuration:\n ```ts\n const project = new AlmaCdkConstructLibrary({\n name: \"<SCOPE>/<PACKAGE_NAME>\",\n author: \"<AUTHOR_ORGANIZATION_NAME>\",\n authorAddress: \"<AUTHOR_ORGANIZATION_EMAIL>\",\n description: \"<PACKAGE_DESCRIPTION>\",\n repositoryUrl: \"https://<GIT_URL>.git\",\n stability: cdk.Stability.EXPERIMENTAL, // or STABLE or DEPRECATED\n majorVersion: 0, // 1, 2, ...\n releaseEnvironment: \"production\",\n });\n\n project.synth();\n ```\n\n\n4. Fnm use 24\n\n4. Install `pnpm`\n\n5. Run `projen` with `pnpm`:\n ```sh\n pnpm exec projen\n ```\n\n6. Ensure correct Node version: `fnm use`\n\n7. Remove old `node_modules`, `yarn.lock`, and/or `package-lock.json` files\n\n8. Reinstall everything with `pnpm install`\n\n"
|
|
103
103
|
},
|
|
104
104
|
"repository": {
|
|
105
105
|
"type": "git",
|
|
@@ -171,7 +171,7 @@
|
|
|
171
171
|
"kind": "interface",
|
|
172
172
|
"locationInModule": {
|
|
173
173
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
174
|
-
"line":
|
|
174
|
+
"line": 62
|
|
175
175
|
},
|
|
176
176
|
"name": "AlmaCdkConstructLibraryOptions",
|
|
177
177
|
"properties": [
|
|
@@ -183,7 +183,7 @@
|
|
|
183
183
|
"immutable": true,
|
|
184
184
|
"locationInModule": {
|
|
185
185
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
186
|
-
"line":
|
|
186
|
+
"line": 65
|
|
187
187
|
},
|
|
188
188
|
"name": "author",
|
|
189
189
|
"type": {
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
"immutable": true,
|
|
199
199
|
"locationInModule": {
|
|
200
200
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
201
|
-
"line":
|
|
201
|
+
"line": 66
|
|
202
202
|
},
|
|
203
203
|
"name": "authorAddress",
|
|
204
204
|
"type": {
|
|
@@ -213,7 +213,7 @@
|
|
|
213
213
|
"immutable": true,
|
|
214
214
|
"locationInModule": {
|
|
215
215
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
216
|
-
"line":
|
|
216
|
+
"line": 68
|
|
217
217
|
},
|
|
218
218
|
"name": "description",
|
|
219
219
|
"type": {
|
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
"immutable": true,
|
|
229
229
|
"locationInModule": {
|
|
230
230
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
231
|
-
"line":
|
|
231
|
+
"line": 64
|
|
232
232
|
},
|
|
233
233
|
"name": "majorVersion",
|
|
234
234
|
"type": {
|
|
@@ -243,7 +243,7 @@
|
|
|
243
243
|
"immutable": true,
|
|
244
244
|
"locationInModule": {
|
|
245
245
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
246
|
-
"line":
|
|
246
|
+
"line": 67
|
|
247
247
|
},
|
|
248
248
|
"name": "name",
|
|
249
249
|
"type": {
|
|
@@ -258,7 +258,7 @@
|
|
|
258
258
|
"immutable": true,
|
|
259
259
|
"locationInModule": {
|
|
260
260
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
261
|
-
"line":
|
|
261
|
+
"line": 70
|
|
262
262
|
},
|
|
263
263
|
"name": "repositoryUrl",
|
|
264
264
|
"type": {
|
|
@@ -273,7 +273,7 @@
|
|
|
273
273
|
"immutable": true,
|
|
274
274
|
"locationInModule": {
|
|
275
275
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
276
|
-
"line":
|
|
276
|
+
"line": 63
|
|
277
277
|
},
|
|
278
278
|
"name": "stability",
|
|
279
279
|
"type": {
|
|
@@ -288,7 +288,7 @@
|
|
|
288
288
|
"immutable": true,
|
|
289
289
|
"locationInModule": {
|
|
290
290
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
291
|
-
"line":
|
|
291
|
+
"line": 75
|
|
292
292
|
},
|
|
293
293
|
"name": "bundledDeps",
|
|
294
294
|
"optional": true,
|
|
@@ -309,7 +309,7 @@
|
|
|
309
309
|
"immutable": true,
|
|
310
310
|
"locationInModule": {
|
|
311
311
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
312
|
-
"line":
|
|
312
|
+
"line": 73
|
|
313
313
|
},
|
|
314
314
|
"name": "deps",
|
|
315
315
|
"optional": true,
|
|
@@ -330,7 +330,7 @@
|
|
|
330
330
|
"immutable": true,
|
|
331
331
|
"locationInModule": {
|
|
332
332
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
333
|
-
"line":
|
|
333
|
+
"line": 74
|
|
334
334
|
},
|
|
335
335
|
"name": "devDeps",
|
|
336
336
|
"optional": true,
|
|
@@ -351,7 +351,7 @@
|
|
|
351
351
|
"immutable": true,
|
|
352
352
|
"locationInModule": {
|
|
353
353
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
354
|
-
"line":
|
|
354
|
+
"line": 69
|
|
355
355
|
},
|
|
356
356
|
"name": "keywords",
|
|
357
357
|
"optional": true,
|
|
@@ -372,7 +372,7 @@
|
|
|
372
372
|
"immutable": true,
|
|
373
373
|
"locationInModule": {
|
|
374
374
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
375
|
-
"line":
|
|
375
|
+
"line": 78
|
|
376
376
|
},
|
|
377
377
|
"name": "maxNodeVersion",
|
|
378
378
|
"optional": true,
|
|
@@ -388,7 +388,7 @@
|
|
|
388
388
|
"immutable": true,
|
|
389
389
|
"locationInModule": {
|
|
390
390
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
391
|
-
"line":
|
|
391
|
+
"line": 76
|
|
392
392
|
},
|
|
393
393
|
"name": "minNodeVersion",
|
|
394
394
|
"optional": true,
|
|
@@ -404,7 +404,23 @@
|
|
|
404
404
|
"immutable": true,
|
|
405
405
|
"locationInModule": {
|
|
406
406
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
407
|
-
"line":
|
|
407
|
+
"line": 79
|
|
408
|
+
},
|
|
409
|
+
"name": "pnpmSettings",
|
|
410
|
+
"optional": true,
|
|
411
|
+
"type": {
|
|
412
|
+
"fqn": "@alma-cdk/construct-library.PnpmWorkspaceSpecification"
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"abstract": true,
|
|
417
|
+
"docs": {
|
|
418
|
+
"stability": "experimental"
|
|
419
|
+
},
|
|
420
|
+
"immutable": true,
|
|
421
|
+
"locationInModule": {
|
|
422
|
+
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
423
|
+
"line": 71
|
|
408
424
|
},
|
|
409
425
|
"name": "releaseBranches",
|
|
410
426
|
"optional": true,
|
|
@@ -425,7 +441,7 @@
|
|
|
425
441
|
"immutable": true,
|
|
426
442
|
"locationInModule": {
|
|
427
443
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
428
|
-
"line":
|
|
444
|
+
"line": 72
|
|
429
445
|
},
|
|
430
446
|
"name": "releaseEnvironment",
|
|
431
447
|
"optional": true,
|
|
@@ -442,7 +458,7 @@
|
|
|
442
458
|
"immutable": true,
|
|
443
459
|
"locationInModule": {
|
|
444
460
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
445
|
-
"line":
|
|
461
|
+
"line": 81
|
|
446
462
|
},
|
|
447
463
|
"name": "sonarProjectPropertiesExtraLines",
|
|
448
464
|
"optional": true,
|
|
@@ -463,7 +479,7 @@
|
|
|
463
479
|
"immutable": true,
|
|
464
480
|
"locationInModule": {
|
|
465
481
|
"filename": "src/schemas/almaCdkConstructLibraryOptions.ts",
|
|
466
|
-
"line":
|
|
482
|
+
"line": 77
|
|
467
483
|
},
|
|
468
484
|
"name": "workflowNodeVersion",
|
|
469
485
|
"optional": true,
|
|
@@ -473,8 +489,2985 @@
|
|
|
473
489
|
}
|
|
474
490
|
],
|
|
475
491
|
"symbolId": "src/schemas/almaCdkConstructLibraryOptions:AlmaCdkConstructLibraryOptions"
|
|
492
|
+
},
|
|
493
|
+
"@alma-cdk/construct-library.AuditConfig": {
|
|
494
|
+
"assembly": "@alma-cdk/construct-library",
|
|
495
|
+
"datatype": true,
|
|
496
|
+
"docs": {
|
|
497
|
+
"stability": "experimental"
|
|
498
|
+
},
|
|
499
|
+
"fqn": "@alma-cdk/construct-library.AuditConfig",
|
|
500
|
+
"kind": "interface",
|
|
501
|
+
"locationInModule": {
|
|
502
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
503
|
+
"line": 600
|
|
504
|
+
},
|
|
505
|
+
"name": "AuditConfig",
|
|
506
|
+
"properties": [
|
|
507
|
+
{
|
|
508
|
+
"abstract": true,
|
|
509
|
+
"docs": {
|
|
510
|
+
"stability": "experimental"
|
|
511
|
+
},
|
|
512
|
+
"immutable": true,
|
|
513
|
+
"locationInModule": {
|
|
514
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
515
|
+
"line": 601
|
|
516
|
+
},
|
|
517
|
+
"name": "ignoreCves",
|
|
518
|
+
"optional": true,
|
|
519
|
+
"type": {
|
|
520
|
+
"collection": {
|
|
521
|
+
"elementtype": {
|
|
522
|
+
"primitive": "string"
|
|
523
|
+
},
|
|
524
|
+
"kind": "array"
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"abstract": true,
|
|
530
|
+
"docs": {
|
|
531
|
+
"stability": "experimental"
|
|
532
|
+
},
|
|
533
|
+
"immutable": true,
|
|
534
|
+
"locationInModule": {
|
|
535
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
536
|
+
"line": 602
|
|
537
|
+
},
|
|
538
|
+
"name": "ignoreGhsas",
|
|
539
|
+
"optional": true,
|
|
540
|
+
"type": {
|
|
541
|
+
"collection": {
|
|
542
|
+
"elementtype": {
|
|
543
|
+
"primitive": "string"
|
|
544
|
+
},
|
|
545
|
+
"kind": "array"
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
}
|
|
549
|
+
],
|
|
550
|
+
"symbolId": "src/pnpm-workspace-schema:AuditConfig"
|
|
551
|
+
},
|
|
552
|
+
"@alma-cdk/construct-library.ExecutionEnv": {
|
|
553
|
+
"assembly": "@alma-cdk/construct-library",
|
|
554
|
+
"datatype": true,
|
|
555
|
+
"docs": {
|
|
556
|
+
"stability": "experimental"
|
|
557
|
+
},
|
|
558
|
+
"fqn": "@alma-cdk/construct-library.ExecutionEnv",
|
|
559
|
+
"kind": "interface",
|
|
560
|
+
"locationInModule": {
|
|
561
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
562
|
+
"line": 609
|
|
563
|
+
},
|
|
564
|
+
"name": "ExecutionEnv",
|
|
565
|
+
"properties": [
|
|
566
|
+
{
|
|
567
|
+
"abstract": true,
|
|
568
|
+
"docs": {
|
|
569
|
+
"stability": "experimental"
|
|
570
|
+
},
|
|
571
|
+
"immutable": true,
|
|
572
|
+
"locationInModule": {
|
|
573
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
574
|
+
"line": 610
|
|
575
|
+
},
|
|
576
|
+
"name": "nodeVersion",
|
|
577
|
+
"optional": true,
|
|
578
|
+
"type": {
|
|
579
|
+
"primitive": "string"
|
|
580
|
+
}
|
|
581
|
+
}
|
|
582
|
+
],
|
|
583
|
+
"symbolId": "src/pnpm-workspace-schema:ExecutionEnv"
|
|
584
|
+
},
|
|
585
|
+
"@alma-cdk/construct-library.PackageExtension": {
|
|
586
|
+
"assembly": "@alma-cdk/construct-library",
|
|
587
|
+
"datatype": true,
|
|
588
|
+
"docs": {
|
|
589
|
+
"stability": "experimental"
|
|
590
|
+
},
|
|
591
|
+
"fqn": "@alma-cdk/construct-library.PackageExtension",
|
|
592
|
+
"kind": "interface",
|
|
593
|
+
"locationInModule": {
|
|
594
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
595
|
+
"line": 586
|
|
596
|
+
},
|
|
597
|
+
"name": "PackageExtension",
|
|
598
|
+
"properties": [
|
|
599
|
+
{
|
|
600
|
+
"abstract": true,
|
|
601
|
+
"docs": {
|
|
602
|
+
"stability": "experimental"
|
|
603
|
+
},
|
|
604
|
+
"immutable": true,
|
|
605
|
+
"locationInModule": {
|
|
606
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
607
|
+
"line": 587
|
|
608
|
+
},
|
|
609
|
+
"name": "dependencies",
|
|
610
|
+
"optional": true,
|
|
611
|
+
"type": {
|
|
612
|
+
"collection": {
|
|
613
|
+
"elementtype": {
|
|
614
|
+
"primitive": "string"
|
|
615
|
+
},
|
|
616
|
+
"kind": "map"
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"abstract": true,
|
|
622
|
+
"docs": {
|
|
623
|
+
"stability": "experimental"
|
|
624
|
+
},
|
|
625
|
+
"immutable": true,
|
|
626
|
+
"locationInModule": {
|
|
627
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
628
|
+
"line": 588
|
|
629
|
+
},
|
|
630
|
+
"name": "optionalDependencies",
|
|
631
|
+
"optional": true,
|
|
632
|
+
"type": {
|
|
633
|
+
"collection": {
|
|
634
|
+
"elementtype": {
|
|
635
|
+
"primitive": "string"
|
|
636
|
+
},
|
|
637
|
+
"kind": "map"
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"abstract": true,
|
|
643
|
+
"docs": {
|
|
644
|
+
"stability": "experimental"
|
|
645
|
+
},
|
|
646
|
+
"immutable": true,
|
|
647
|
+
"locationInModule": {
|
|
648
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
649
|
+
"line": 589
|
|
650
|
+
},
|
|
651
|
+
"name": "peerDependencies",
|
|
652
|
+
"optional": true,
|
|
653
|
+
"type": {
|
|
654
|
+
"collection": {
|
|
655
|
+
"elementtype": {
|
|
656
|
+
"primitive": "string"
|
|
657
|
+
},
|
|
658
|
+
"kind": "map"
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
},
|
|
662
|
+
{
|
|
663
|
+
"abstract": true,
|
|
664
|
+
"docs": {
|
|
665
|
+
"stability": "experimental"
|
|
666
|
+
},
|
|
667
|
+
"immutable": true,
|
|
668
|
+
"locationInModule": {
|
|
669
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
670
|
+
"line": 590
|
|
671
|
+
},
|
|
672
|
+
"name": "peerDependenciesMeta",
|
|
673
|
+
"optional": true,
|
|
674
|
+
"type": {
|
|
675
|
+
"collection": {
|
|
676
|
+
"elementtype": {
|
|
677
|
+
"fqn": "@alma-cdk/construct-library.PeerDependencyMetaValue"
|
|
678
|
+
},
|
|
679
|
+
"kind": "map"
|
|
680
|
+
}
|
|
681
|
+
}
|
|
682
|
+
}
|
|
683
|
+
],
|
|
684
|
+
"symbolId": "src/pnpm-workspace-schema:PackageExtension"
|
|
685
|
+
},
|
|
686
|
+
"@alma-cdk/construct-library.PeerDependencyMetaValue": {
|
|
687
|
+
"assembly": "@alma-cdk/construct-library",
|
|
688
|
+
"datatype": true,
|
|
689
|
+
"docs": {
|
|
690
|
+
"stability": "experimental"
|
|
691
|
+
},
|
|
692
|
+
"fqn": "@alma-cdk/construct-library.PeerDependencyMetaValue",
|
|
693
|
+
"kind": "interface",
|
|
694
|
+
"locationInModule": {
|
|
695
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
696
|
+
"line": 612
|
|
697
|
+
},
|
|
698
|
+
"name": "PeerDependencyMetaValue",
|
|
699
|
+
"properties": [
|
|
700
|
+
{
|
|
701
|
+
"abstract": true,
|
|
702
|
+
"docs": {
|
|
703
|
+
"stability": "experimental"
|
|
704
|
+
},
|
|
705
|
+
"immutable": true,
|
|
706
|
+
"locationInModule": {
|
|
707
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
708
|
+
"line": 613
|
|
709
|
+
},
|
|
710
|
+
"name": "optional",
|
|
711
|
+
"optional": true,
|
|
712
|
+
"type": {
|
|
713
|
+
"primitive": "boolean"
|
|
714
|
+
}
|
|
715
|
+
}
|
|
716
|
+
],
|
|
717
|
+
"symbolId": "src/pnpm-workspace-schema:PeerDependencyMetaValue"
|
|
718
|
+
},
|
|
719
|
+
"@alma-cdk/construct-library.PeerDependencyRules": {
|
|
720
|
+
"assembly": "@alma-cdk/construct-library",
|
|
721
|
+
"datatype": true,
|
|
722
|
+
"docs": {
|
|
723
|
+
"stability": "experimental"
|
|
724
|
+
},
|
|
725
|
+
"fqn": "@alma-cdk/construct-library.PeerDependencyRules",
|
|
726
|
+
"kind": "interface",
|
|
727
|
+
"locationInModule": {
|
|
728
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
729
|
+
"line": 592
|
|
730
|
+
},
|
|
731
|
+
"name": "PeerDependencyRules",
|
|
732
|
+
"properties": [
|
|
733
|
+
{
|
|
734
|
+
"abstract": true,
|
|
735
|
+
"docs": {
|
|
736
|
+
"stability": "experimental"
|
|
737
|
+
},
|
|
738
|
+
"immutable": true,
|
|
739
|
+
"locationInModule": {
|
|
740
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
741
|
+
"line": 595
|
|
742
|
+
},
|
|
743
|
+
"name": "allowAny",
|
|
744
|
+
"optional": true,
|
|
745
|
+
"type": {
|
|
746
|
+
"collection": {
|
|
747
|
+
"elementtype": {
|
|
748
|
+
"primitive": "string"
|
|
749
|
+
},
|
|
750
|
+
"kind": "array"
|
|
751
|
+
}
|
|
752
|
+
}
|
|
753
|
+
},
|
|
754
|
+
{
|
|
755
|
+
"abstract": true,
|
|
756
|
+
"docs": {
|
|
757
|
+
"stability": "experimental"
|
|
758
|
+
},
|
|
759
|
+
"immutable": true,
|
|
760
|
+
"locationInModule": {
|
|
761
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
762
|
+
"line": 594
|
|
763
|
+
},
|
|
764
|
+
"name": "allowedVersions",
|
|
765
|
+
"optional": true,
|
|
766
|
+
"type": {
|
|
767
|
+
"collection": {
|
|
768
|
+
"elementtype": {
|
|
769
|
+
"primitive": "string"
|
|
770
|
+
},
|
|
771
|
+
"kind": "map"
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"abstract": true,
|
|
777
|
+
"docs": {
|
|
778
|
+
"stability": "experimental"
|
|
779
|
+
},
|
|
780
|
+
"immutable": true,
|
|
781
|
+
"locationInModule": {
|
|
782
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
783
|
+
"line": 593
|
|
784
|
+
},
|
|
785
|
+
"name": "ignoreMissing",
|
|
786
|
+
"optional": true,
|
|
787
|
+
"type": {
|
|
788
|
+
"collection": {
|
|
789
|
+
"elementtype": {
|
|
790
|
+
"primitive": "string"
|
|
791
|
+
},
|
|
792
|
+
"kind": "array"
|
|
793
|
+
}
|
|
794
|
+
}
|
|
795
|
+
}
|
|
796
|
+
],
|
|
797
|
+
"symbolId": "src/pnpm-workspace-schema:PeerDependencyRules"
|
|
798
|
+
},
|
|
799
|
+
"@alma-cdk/construct-library.PnpmWorkspaceSpecification": {
|
|
800
|
+
"assembly": "@alma-cdk/construct-library",
|
|
801
|
+
"datatype": true,
|
|
802
|
+
"docs": {
|
|
803
|
+
"stability": "experimental",
|
|
804
|
+
"summary": "JSON schema for pnpm-workspace.yaml files."
|
|
805
|
+
},
|
|
806
|
+
"fqn": "@alma-cdk/construct-library.PnpmWorkspaceSpecification",
|
|
807
|
+
"kind": "interface",
|
|
808
|
+
"locationInModule": {
|
|
809
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
810
|
+
"line": 17
|
|
811
|
+
},
|
|
812
|
+
"name": "PnpmWorkspaceSpecification",
|
|
813
|
+
"properties": [
|
|
814
|
+
{
|
|
815
|
+
"abstract": true,
|
|
816
|
+
"docs": {
|
|
817
|
+
"remarks": "This field replaces `onlyBuiltDependencies` and `ignoredBuiltDependencies` (which are also deprecated by this new setting), providing a single source of truth.",
|
|
818
|
+
"stability": "experimental",
|
|
819
|
+
"summary": "A map of package matchers to explicitly allow (`true`) or disallow (`false`) script execution."
|
|
820
|
+
},
|
|
821
|
+
"immutable": true,
|
|
822
|
+
"locationInModule": {
|
|
823
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
824
|
+
"line": 550
|
|
825
|
+
},
|
|
826
|
+
"name": "allowBuilds",
|
|
827
|
+
"optional": true,
|
|
828
|
+
"type": {
|
|
829
|
+
"collection": {
|
|
830
|
+
"elementtype": {
|
|
831
|
+
"primitive": "boolean"
|
|
832
|
+
},
|
|
833
|
+
"kind": "map"
|
|
834
|
+
}
|
|
835
|
+
}
|
|
836
|
+
},
|
|
837
|
+
{
|
|
838
|
+
"abstract": true,
|
|
839
|
+
"docs": {
|
|
840
|
+
"stability": "experimental",
|
|
841
|
+
"summary": "A list of deprecated versions that the warnings are suppressed."
|
|
842
|
+
},
|
|
843
|
+
"immutable": true,
|
|
844
|
+
"locationInModule": {
|
|
845
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
846
|
+
"line": 67
|
|
847
|
+
},
|
|
848
|
+
"name": "allowedDeprecatedVersions",
|
|
849
|
+
"optional": true,
|
|
850
|
+
"type": {
|
|
851
|
+
"collection": {
|
|
852
|
+
"elementtype": {
|
|
853
|
+
"primitive": "string"
|
|
854
|
+
},
|
|
855
|
+
"kind": "map"
|
|
856
|
+
}
|
|
857
|
+
}
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"abstract": true,
|
|
861
|
+
"docs": {
|
|
862
|
+
"stability": "experimental",
|
|
863
|
+
"summary": "When true, installation won't fail if some of the patches from the \"patchedDependencies\" field were not applied."
|
|
864
|
+
},
|
|
865
|
+
"immutable": true,
|
|
866
|
+
"locationInModule": {
|
|
867
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
868
|
+
"line": 79
|
|
869
|
+
},
|
|
870
|
+
"name": "allowNonAppliedPatches",
|
|
871
|
+
"optional": true,
|
|
872
|
+
"type": {
|
|
873
|
+
"primitive": "boolean"
|
|
874
|
+
}
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
"abstract": true,
|
|
878
|
+
"docs": {
|
|
879
|
+
"remarks": "(Previously named \"allowNonAppliedPatches\")",
|
|
880
|
+
"stability": "experimental",
|
|
881
|
+
"summary": "When true, installation won't fail if some of the patches from the \"patchedDependencies\" field were not applied."
|
|
882
|
+
},
|
|
883
|
+
"immutable": true,
|
|
884
|
+
"locationInModule": {
|
|
885
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
886
|
+
"line": 75
|
|
887
|
+
},
|
|
888
|
+
"name": "allowUnusedPatches",
|
|
889
|
+
"optional": true,
|
|
890
|
+
"type": {
|
|
891
|
+
"primitive": "boolean"
|
|
892
|
+
}
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
"abstract": true,
|
|
896
|
+
"docs": {
|
|
897
|
+
"stability": "experimental"
|
|
898
|
+
},
|
|
899
|
+
"immutable": true,
|
|
900
|
+
"locationInModule": {
|
|
901
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
902
|
+
"line": 89
|
|
903
|
+
},
|
|
904
|
+
"name": "auditConfig",
|
|
905
|
+
"optional": true,
|
|
906
|
+
"type": {
|
|
907
|
+
"fqn": "@alma-cdk/construct-library.AuditConfig"
|
|
908
|
+
}
|
|
909
|
+
},
|
|
910
|
+
{
|
|
911
|
+
"abstract": true,
|
|
912
|
+
"docs": {
|
|
913
|
+
"remarks": "When set to 'low', all vulnerabilities are reported. When set to 'moderate', 'high', or 'critical', only vulnerabilities with that severity or higher are reported.",
|
|
914
|
+
"stability": "experimental",
|
|
915
|
+
"summary": "Controls the level of issues reported by `pnpm audit`."
|
|
916
|
+
},
|
|
917
|
+
"immutable": true,
|
|
918
|
+
"locationInModule": {
|
|
919
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
920
|
+
"line": 562
|
|
921
|
+
},
|
|
922
|
+
"name": "auditLevel",
|
|
923
|
+
"optional": true,
|
|
924
|
+
"type": {
|
|
925
|
+
"primitive": "string"
|
|
926
|
+
}
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
"abstract": true,
|
|
930
|
+
"docs": {
|
|
931
|
+
"stability": "experimental",
|
|
932
|
+
"summary": "When true, any missing non-optional peer dependencies are automatically installed."
|
|
933
|
+
},
|
|
934
|
+
"immutable": true,
|
|
935
|
+
"locationInModule": {
|
|
936
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
937
|
+
"line": 274
|
|
938
|
+
},
|
|
939
|
+
"name": "autoInstallPeers",
|
|
940
|
+
"optional": true,
|
|
941
|
+
"type": {
|
|
942
|
+
"primitive": "boolean"
|
|
943
|
+
}
|
|
944
|
+
},
|
|
945
|
+
{
|
|
946
|
+
"abstract": true,
|
|
947
|
+
"docs": {
|
|
948
|
+
"remarks": "Only direct dependencies are allowed to use exotic sources.",
|
|
949
|
+
"stability": "experimental",
|
|
950
|
+
"summary": "When set to true, it prevents the resolution of exotic protocols (like git+ssh: or direct https: tarballs) in transitive dependencies."
|
|
951
|
+
},
|
|
952
|
+
"immutable": true,
|
|
953
|
+
"locationInModule": {
|
|
954
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
955
|
+
"line": 554
|
|
956
|
+
},
|
|
957
|
+
"name": "blockExoticSubdeps",
|
|
958
|
+
"optional": true,
|
|
959
|
+
"type": {
|
|
960
|
+
"primitive": "boolean"
|
|
961
|
+
}
|
|
962
|
+
},
|
|
963
|
+
{
|
|
964
|
+
"abstract": true,
|
|
965
|
+
"docs": {
|
|
966
|
+
"stability": "experimental",
|
|
967
|
+
"summary": "The Certificate Authority signing certificate that is trusted for SSL connections to the registry."
|
|
968
|
+
},
|
|
969
|
+
"immutable": true,
|
|
970
|
+
"locationInModule": {
|
|
971
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
972
|
+
"line": 206
|
|
973
|
+
},
|
|
974
|
+
"name": "ca",
|
|
975
|
+
"optional": true,
|
|
976
|
+
"type": {
|
|
977
|
+
"primitive": "string"
|
|
978
|
+
}
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"abstract": true,
|
|
982
|
+
"docs": {
|
|
983
|
+
"stability": "experimental",
|
|
984
|
+
"summary": "The location of the cache (package metadata and dlx)."
|
|
985
|
+
},
|
|
986
|
+
"immutable": true,
|
|
987
|
+
"locationInModule": {
|
|
988
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
989
|
+
"line": 442
|
|
990
|
+
},
|
|
991
|
+
"name": "cacheDir",
|
|
992
|
+
"optional": true,
|
|
993
|
+
"type": {
|
|
994
|
+
"primitive": "string"
|
|
995
|
+
}
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
"abstract": true,
|
|
999
|
+
"docs": {
|
|
1000
|
+
"stability": "experimental",
|
|
1001
|
+
"summary": "A path to a file containing one or multiple Certificate Authority signing certificates."
|
|
1002
|
+
},
|
|
1003
|
+
"immutable": true,
|
|
1004
|
+
"locationInModule": {
|
|
1005
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1006
|
+
"line": 210
|
|
1007
|
+
},
|
|
1008
|
+
"name": "cafile",
|
|
1009
|
+
"optional": true,
|
|
1010
|
+
"type": {
|
|
1011
|
+
"primitive": "string"
|
|
1012
|
+
}
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
"abstract": true,
|
|
1016
|
+
"docs": {
|
|
1017
|
+
"stability": "experimental"
|
|
1018
|
+
},
|
|
1019
|
+
"immutable": true,
|
|
1020
|
+
"locationInModule": {
|
|
1021
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1022
|
+
"line": 22
|
|
1023
|
+
},
|
|
1024
|
+
"name": "catalog",
|
|
1025
|
+
"optional": true,
|
|
1026
|
+
"type": {
|
|
1027
|
+
"collection": {
|
|
1028
|
+
"elementtype": {
|
|
1029
|
+
"primitive": "string"
|
|
1030
|
+
},
|
|
1031
|
+
"kind": "map"
|
|
1032
|
+
}
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"abstract": true,
|
|
1037
|
+
"docs": {
|
|
1038
|
+
"stability": "experimental",
|
|
1039
|
+
"summary": "Controlling if and how dependencies are added to the default catalog."
|
|
1040
|
+
},
|
|
1041
|
+
"immutable": true,
|
|
1042
|
+
"locationInModule": {
|
|
1043
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1044
|
+
"line": 30
|
|
1045
|
+
},
|
|
1046
|
+
"name": "catalogMode",
|
|
1047
|
+
"optional": true,
|
|
1048
|
+
"type": {
|
|
1049
|
+
"primitive": "string"
|
|
1050
|
+
}
|
|
1051
|
+
},
|
|
1052
|
+
{
|
|
1053
|
+
"abstract": true,
|
|
1054
|
+
"docs": {
|
|
1055
|
+
"stability": "experimental",
|
|
1056
|
+
"summary": "Define arbitrarily named catalogs."
|
|
1057
|
+
},
|
|
1058
|
+
"immutable": true,
|
|
1059
|
+
"locationInModule": {
|
|
1060
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1061
|
+
"line": 26
|
|
1062
|
+
},
|
|
1063
|
+
"name": "catalogs",
|
|
1064
|
+
"optional": true,
|
|
1065
|
+
"type": {
|
|
1066
|
+
"collection": {
|
|
1067
|
+
"elementtype": {
|
|
1068
|
+
"collection": {
|
|
1069
|
+
"elementtype": {
|
|
1070
|
+
"primitive": "string"
|
|
1071
|
+
},
|
|
1072
|
+
"kind": "map"
|
|
1073
|
+
}
|
|
1074
|
+
},
|
|
1075
|
+
"kind": "map"
|
|
1076
|
+
}
|
|
1077
|
+
}
|
|
1078
|
+
},
|
|
1079
|
+
{
|
|
1080
|
+
"abstract": true,
|
|
1081
|
+
"docs": {
|
|
1082
|
+
"stability": "experimental",
|
|
1083
|
+
"summary": "A client certificate to pass when accessing the registry."
|
|
1084
|
+
},
|
|
1085
|
+
"immutable": true,
|
|
1086
|
+
"locationInModule": {
|
|
1087
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1088
|
+
"line": 214
|
|
1089
|
+
},
|
|
1090
|
+
"name": "cert",
|
|
1091
|
+
"optional": true,
|
|
1092
|
+
"type": {
|
|
1093
|
+
"primitive": "string"
|
|
1094
|
+
}
|
|
1095
|
+
},
|
|
1096
|
+
{
|
|
1097
|
+
"abstract": true,
|
|
1098
|
+
"docs": {
|
|
1099
|
+
"stability": "experimental",
|
|
1100
|
+
"summary": "The maximum number of child processes to allocate simultaneously to build node_modules."
|
|
1101
|
+
},
|
|
1102
|
+
"immutable": true,
|
|
1103
|
+
"locationInModule": {
|
|
1104
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1105
|
+
"line": 334
|
|
1106
|
+
},
|
|
1107
|
+
"name": "childConcurrency",
|
|
1108
|
+
"optional": true,
|
|
1109
|
+
"type": {
|
|
1110
|
+
"primitive": "number"
|
|
1111
|
+
}
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
"abstract": true,
|
|
1115
|
+
"docs": {
|
|
1116
|
+
"stability": "experimental",
|
|
1117
|
+
"summary": "When set to `true`, pnpm will remove unused catalog entries during installation."
|
|
1118
|
+
},
|
|
1119
|
+
"immutable": true,
|
|
1120
|
+
"locationInModule": {
|
|
1121
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1122
|
+
"line": 34
|
|
1123
|
+
},
|
|
1124
|
+
"name": "cleanupUnusedCatalogs",
|
|
1125
|
+
"optional": true,
|
|
1126
|
+
"type": {
|
|
1127
|
+
"primitive": "boolean"
|
|
1128
|
+
}
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
"abstract": true,
|
|
1132
|
+
"docs": {
|
|
1133
|
+
"stability": "experimental",
|
|
1134
|
+
"summary": "Controls colors in the output."
|
|
1135
|
+
},
|
|
1136
|
+
"immutable": true,
|
|
1137
|
+
"locationInModule": {
|
|
1138
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1139
|
+
"line": 290
|
|
1140
|
+
},
|
|
1141
|
+
"name": "color",
|
|
1142
|
+
"optional": true,
|
|
1143
|
+
"type": {
|
|
1144
|
+
"primitive": "string"
|
|
1145
|
+
}
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
"abstract": true,
|
|
1149
|
+
"docs": {
|
|
1150
|
+
"remarks": "They are installed before all regular dependencies ('dependencies', 'devDependencies', 'optionalDependencies'), making them ideal for setting up custom hooks, patches, and catalog entries.",
|
|
1151
|
+
"stability": "experimental",
|
|
1152
|
+
"summary": "Config dependencies allow you to share and centralize configuration files, settings, and hooks across multiple projects."
|
|
1153
|
+
},
|
|
1154
|
+
"immutable": true,
|
|
1155
|
+
"locationInModule": {
|
|
1156
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1157
|
+
"line": 88
|
|
1158
|
+
},
|
|
1159
|
+
"name": "configDependencies",
|
|
1160
|
+
"optional": true,
|
|
1161
|
+
"type": {
|
|
1162
|
+
"collection": {
|
|
1163
|
+
"elementtype": {
|
|
1164
|
+
"primitive": "string"
|
|
1165
|
+
},
|
|
1166
|
+
"kind": "map"
|
|
1167
|
+
}
|
|
1168
|
+
}
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
"abstract": true,
|
|
1172
|
+
"docs": {
|
|
1173
|
+
"stability": "experimental",
|
|
1174
|
+
"summary": "If set to true, all build scripts (e.g. preinstall, install, postinstall) from dependencies will run automatically, without requiring approval."
|
|
1175
|
+
},
|
|
1176
|
+
"immutable": true,
|
|
1177
|
+
"locationInModule": {
|
|
1178
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1179
|
+
"line": 55
|
|
1180
|
+
},
|
|
1181
|
+
"name": "dangerouslyAllowAllBuilds",
|
|
1182
|
+
"optional": true,
|
|
1183
|
+
"type": {
|
|
1184
|
+
"primitive": "boolean"
|
|
1185
|
+
}
|
|
1186
|
+
},
|
|
1187
|
+
{
|
|
1188
|
+
"abstract": true,
|
|
1189
|
+
"docs": {
|
|
1190
|
+
"stability": "experimental",
|
|
1191
|
+
"summary": "When set to true, dependencies that are already symlinked to the root node_modules directory of the workspace will not be symlinked to subproject node_modules directories."
|
|
1192
|
+
},
|
|
1193
|
+
"immutable": true,
|
|
1194
|
+
"locationInModule": {
|
|
1195
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1196
|
+
"line": 478
|
|
1197
|
+
},
|
|
1198
|
+
"name": "dedupeDirectDeps",
|
|
1199
|
+
"optional": true,
|
|
1200
|
+
"type": {
|
|
1201
|
+
"primitive": "boolean"
|
|
1202
|
+
}
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
"abstract": true,
|
|
1206
|
+
"docs": {
|
|
1207
|
+
"stability": "experimental",
|
|
1208
|
+
"summary": "When this setting is enabled, dependencies that are injected will be symlinked from the workspace whenever possible."
|
|
1209
|
+
},
|
|
1210
|
+
"immutable": true,
|
|
1211
|
+
"locationInModule": {
|
|
1212
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1213
|
+
"line": 482
|
|
1214
|
+
},
|
|
1215
|
+
"name": "dedupeInjectedDeps",
|
|
1216
|
+
"optional": true,
|
|
1217
|
+
"type": {
|
|
1218
|
+
"primitive": "boolean"
|
|
1219
|
+
}
|
|
1220
|
+
},
|
|
1221
|
+
{
|
|
1222
|
+
"abstract": true,
|
|
1223
|
+
"docs": {
|
|
1224
|
+
"stability": "experimental",
|
|
1225
|
+
"summary": "When this setting is set to true, packages with peer dependencies will be deduplicated after peers resolution."
|
|
1226
|
+
},
|
|
1227
|
+
"immutable": true,
|
|
1228
|
+
"locationInModule": {
|
|
1229
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1230
|
+
"line": 278
|
|
1231
|
+
},
|
|
1232
|
+
"name": "dedupePeerDependents",
|
|
1233
|
+
"optional": true,
|
|
1234
|
+
"type": {
|
|
1235
|
+
"primitive": "boolean"
|
|
1236
|
+
}
|
|
1237
|
+
},
|
|
1238
|
+
{
|
|
1239
|
+
"abstract": true,
|
|
1240
|
+
"docs": {
|
|
1241
|
+
"stability": "experimental",
|
|
1242
|
+
"summary": "When deploying a package or installing a local package, all files of the package are copied."
|
|
1243
|
+
},
|
|
1244
|
+
"immutable": true,
|
|
1245
|
+
"locationInModule": {
|
|
1246
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1247
|
+
"line": 474
|
|
1248
|
+
},
|
|
1249
|
+
"name": "deployAllFiles",
|
|
1250
|
+
"optional": true,
|
|
1251
|
+
"type": {
|
|
1252
|
+
"primitive": "boolean"
|
|
1253
|
+
}
|
|
1254
|
+
},
|
|
1255
|
+
{
|
|
1256
|
+
"abstract": true,
|
|
1257
|
+
"docs": {
|
|
1258
|
+
"stability": "experimental",
|
|
1259
|
+
"summary": "When set to true, installation will fail if the workspace has cycles."
|
|
1260
|
+
},
|
|
1261
|
+
"immutable": true,
|
|
1262
|
+
"locationInModule": {
|
|
1263
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1264
|
+
"line": 406
|
|
1265
|
+
},
|
|
1266
|
+
"name": "disallowWorkspaceCycles",
|
|
1267
|
+
"optional": true,
|
|
1268
|
+
"type": {
|
|
1269
|
+
"primitive": "boolean"
|
|
1270
|
+
}
|
|
1271
|
+
},
|
|
1272
|
+
{
|
|
1273
|
+
"abstract": true,
|
|
1274
|
+
"docs": {
|
|
1275
|
+
"stability": "experimental",
|
|
1276
|
+
"summary": "The time in minutes after which dlx cache expires."
|
|
1277
|
+
},
|
|
1278
|
+
"immutable": true,
|
|
1279
|
+
"locationInModule": {
|
|
1280
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1281
|
+
"line": 158
|
|
1282
|
+
},
|
|
1283
|
+
"name": "dlxCacheMaxAge",
|
|
1284
|
+
"optional": true,
|
|
1285
|
+
"type": {
|
|
1286
|
+
"primitive": "number"
|
|
1287
|
+
}
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
"abstract": true,
|
|
1291
|
+
"docs": {
|
|
1292
|
+
"stability": "experimental",
|
|
1293
|
+
"summary": "When enabled, node_modules contains only symlinks to a central virtual store, rather than to node_modules/.pnpm."
|
|
1294
|
+
},
|
|
1295
|
+
"immutable": true,
|
|
1296
|
+
"locationInModule": {
|
|
1297
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1298
|
+
"line": 174
|
|
1299
|
+
},
|
|
1300
|
+
"name": "enableGlobalVirtualStore",
|
|
1301
|
+
"optional": true,
|
|
1302
|
+
"type": {
|
|
1303
|
+
"primitive": "boolean"
|
|
1304
|
+
}
|
|
1305
|
+
},
|
|
1306
|
+
{
|
|
1307
|
+
"abstract": true,
|
|
1308
|
+
"docs": {
|
|
1309
|
+
"stability": "experimental",
|
|
1310
|
+
"summary": "When false, pnpm will not write any files to the modules directory (node_modules)."
|
|
1311
|
+
},
|
|
1312
|
+
"immutable": true,
|
|
1313
|
+
"locationInModule": {
|
|
1314
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1315
|
+
"line": 138
|
|
1316
|
+
},
|
|
1317
|
+
"name": "enableModulesDir",
|
|
1318
|
+
"optional": true,
|
|
1319
|
+
"type": {
|
|
1320
|
+
"primitive": "boolean"
|
|
1321
|
+
}
|
|
1322
|
+
},
|
|
1323
|
+
{
|
|
1324
|
+
"abstract": true,
|
|
1325
|
+
"docs": {
|
|
1326
|
+
"stability": "experimental",
|
|
1327
|
+
"summary": "When true, pnpm will run any pre/post scripts automatically."
|
|
1328
|
+
},
|
|
1329
|
+
"immutable": true,
|
|
1330
|
+
"locationInModule": {
|
|
1331
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1332
|
+
"line": 514
|
|
1333
|
+
},
|
|
1334
|
+
"name": "enablePrePostScripts",
|
|
1335
|
+
"optional": true,
|
|
1336
|
+
"type": {
|
|
1337
|
+
"primitive": "boolean"
|
|
1338
|
+
}
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
"abstract": true,
|
|
1342
|
+
"docs": {
|
|
1343
|
+
"stability": "experimental",
|
|
1344
|
+
"summary": "If this is enabled, pnpm will not install any package that claims to not be compatible with the current Node version."
|
|
1345
|
+
},
|
|
1346
|
+
"immutable": true,
|
|
1347
|
+
"locationInModule": {
|
|
1348
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1349
|
+
"line": 306
|
|
1350
|
+
},
|
|
1351
|
+
"name": "engineStrict",
|
|
1352
|
+
"optional": true,
|
|
1353
|
+
"type": {
|
|
1354
|
+
"primitive": "boolean"
|
|
1355
|
+
}
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
"abstract": true,
|
|
1359
|
+
"docs": {
|
|
1360
|
+
"stability": "experimental"
|
|
1361
|
+
},
|
|
1362
|
+
"immutable": true,
|
|
1363
|
+
"locationInModule": {
|
|
1364
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1365
|
+
"line": 102
|
|
1366
|
+
},
|
|
1367
|
+
"name": "executionEnv",
|
|
1368
|
+
"optional": true,
|
|
1369
|
+
"type": {
|
|
1370
|
+
"fqn": "@alma-cdk/construct-library.ExecutionEnv"
|
|
1371
|
+
}
|
|
1372
|
+
},
|
|
1373
|
+
{
|
|
1374
|
+
"abstract": true,
|
|
1375
|
+
"docs": {
|
|
1376
|
+
"stability": "experimental",
|
|
1377
|
+
"summary": "When false, the NODE_PATH environment variable is not set in the command shims."
|
|
1378
|
+
},
|
|
1379
|
+
"immutable": true,
|
|
1380
|
+
"locationInModule": {
|
|
1381
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1382
|
+
"line": 470
|
|
1383
|
+
},
|
|
1384
|
+
"name": "extendNodePath",
|
|
1385
|
+
"optional": true,
|
|
1386
|
+
"type": {
|
|
1387
|
+
"primitive": "boolean"
|
|
1388
|
+
}
|
|
1389
|
+
},
|
|
1390
|
+
{
|
|
1391
|
+
"abstract": true,
|
|
1392
|
+
"docs": {
|
|
1393
|
+
"stability": "experimental",
|
|
1394
|
+
"summary": "If true, pnpm will fail if no packages match the filter."
|
|
1395
|
+
},
|
|
1396
|
+
"immutable": true,
|
|
1397
|
+
"locationInModule": {
|
|
1398
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1399
|
+
"line": 414
|
|
1400
|
+
},
|
|
1401
|
+
"name": "failIfNoMatch",
|
|
1402
|
+
"optional": true,
|
|
1403
|
+
"type": {
|
|
1404
|
+
"primitive": "boolean"
|
|
1405
|
+
}
|
|
1406
|
+
},
|
|
1407
|
+
{
|
|
1408
|
+
"abstract": true,
|
|
1409
|
+
"docs": {
|
|
1410
|
+
"stability": "experimental",
|
|
1411
|
+
"summary": "How many times to retry if pnpm fails to fetch from the registry."
|
|
1412
|
+
},
|
|
1413
|
+
"immutable": true,
|
|
1414
|
+
"locationInModule": {
|
|
1415
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1416
|
+
"line": 254
|
|
1417
|
+
},
|
|
1418
|
+
"name": "fetchRetries",
|
|
1419
|
+
"optional": true,
|
|
1420
|
+
"type": {
|
|
1421
|
+
"primitive": "number"
|
|
1422
|
+
}
|
|
1423
|
+
},
|
|
1424
|
+
{
|
|
1425
|
+
"abstract": true,
|
|
1426
|
+
"docs": {
|
|
1427
|
+
"stability": "experimental",
|
|
1428
|
+
"summary": "The exponential factor for retry backoff."
|
|
1429
|
+
},
|
|
1430
|
+
"immutable": true,
|
|
1431
|
+
"locationInModule": {
|
|
1432
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1433
|
+
"line": 258
|
|
1434
|
+
},
|
|
1435
|
+
"name": "fetchRetryFactor",
|
|
1436
|
+
"optional": true,
|
|
1437
|
+
"type": {
|
|
1438
|
+
"primitive": "number"
|
|
1439
|
+
}
|
|
1440
|
+
},
|
|
1441
|
+
{
|
|
1442
|
+
"abstract": true,
|
|
1443
|
+
"docs": {
|
|
1444
|
+
"stability": "experimental",
|
|
1445
|
+
"summary": "The maximum fallback timeout to ensure the retry factor does not make requests too long."
|
|
1446
|
+
},
|
|
1447
|
+
"immutable": true,
|
|
1448
|
+
"locationInModule": {
|
|
1449
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1450
|
+
"line": 266
|
|
1451
|
+
},
|
|
1452
|
+
"name": "fetchRetryMaxtimeout",
|
|
1453
|
+
"optional": true,
|
|
1454
|
+
"type": {
|
|
1455
|
+
"primitive": "number"
|
|
1456
|
+
}
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
"abstract": true,
|
|
1460
|
+
"docs": {
|
|
1461
|
+
"stability": "experimental",
|
|
1462
|
+
"summary": "The minimum (base) timeout for retrying requests."
|
|
1463
|
+
},
|
|
1464
|
+
"immutable": true,
|
|
1465
|
+
"locationInModule": {
|
|
1466
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1467
|
+
"line": 262
|
|
1468
|
+
},
|
|
1469
|
+
"name": "fetchRetryMintimeout",
|
|
1470
|
+
"optional": true,
|
|
1471
|
+
"type": {
|
|
1472
|
+
"primitive": "number"
|
|
1473
|
+
}
|
|
1474
|
+
},
|
|
1475
|
+
{
|
|
1476
|
+
"abstract": true,
|
|
1477
|
+
"docs": {
|
|
1478
|
+
"stability": "experimental",
|
|
1479
|
+
"summary": "The maximum amount of time to wait for HTTP requests to complete."
|
|
1480
|
+
},
|
|
1481
|
+
"immutable": true,
|
|
1482
|
+
"locationInModule": {
|
|
1483
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1484
|
+
"line": 270
|
|
1485
|
+
},
|
|
1486
|
+
"name": "fetchTimeout",
|
|
1487
|
+
"optional": true,
|
|
1488
|
+
"type": {
|
|
1489
|
+
"primitive": "number"
|
|
1490
|
+
}
|
|
1491
|
+
},
|
|
1492
|
+
{
|
|
1493
|
+
"abstract": true,
|
|
1494
|
+
"docs": {
|
|
1495
|
+
"remarks": "If this setting is set to true, the legacy deploy behavior will be used.",
|
|
1496
|
+
"stability": "experimental",
|
|
1497
|
+
"summary": "By default, pnpm deploy will try creating a dedicated lockfile from a shared lockfile for deployment."
|
|
1498
|
+
},
|
|
1499
|
+
"immutable": true,
|
|
1500
|
+
"locationInModule": {
|
|
1501
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1502
|
+
"line": 418
|
|
1503
|
+
},
|
|
1504
|
+
"name": "forceLegacyDeploy",
|
|
1505
|
+
"optional": true,
|
|
1506
|
+
"type": {
|
|
1507
|
+
"primitive": "boolean"
|
|
1508
|
+
}
|
|
1509
|
+
},
|
|
1510
|
+
{
|
|
1511
|
+
"abstract": true,
|
|
1512
|
+
"docs": {
|
|
1513
|
+
"stability": "experimental",
|
|
1514
|
+
"summary": "When set to true, the generated lockfile name after installation will be named based on the current branch name to completely avoid merge conflicts."
|
|
1515
|
+
},
|
|
1516
|
+
"immutable": true,
|
|
1517
|
+
"locationInModule": {
|
|
1518
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1519
|
+
"line": 190
|
|
1520
|
+
},
|
|
1521
|
+
"name": "gitBranchLockfile",
|
|
1522
|
+
"optional": true,
|
|
1523
|
+
"type": {
|
|
1524
|
+
"primitive": "boolean"
|
|
1525
|
+
}
|
|
1526
|
+
},
|
|
1527
|
+
{
|
|
1528
|
+
"abstract": true,
|
|
1529
|
+
"docs": {
|
|
1530
|
+
"stability": "experimental",
|
|
1531
|
+
"summary": "Check if current branch is your publish branch, clean, and up-to-date with remote."
|
|
1532
|
+
},
|
|
1533
|
+
"immutable": true,
|
|
1534
|
+
"locationInModule": {
|
|
1535
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1536
|
+
"line": 490
|
|
1537
|
+
},
|
|
1538
|
+
"name": "gitChecks",
|
|
1539
|
+
"optional": true,
|
|
1540
|
+
"type": {
|
|
1541
|
+
"primitive": "boolean"
|
|
1542
|
+
}
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
"abstract": true,
|
|
1546
|
+
"docs": {
|
|
1547
|
+
"stability": "experimental",
|
|
1548
|
+
"summary": "When fetching dependencies that are Git repositories, if the host is listed in this setting, pnpm will use shallow cloning to fetch only the needed commit, not all the history."
|
|
1549
|
+
},
|
|
1550
|
+
"immutable": true,
|
|
1551
|
+
"locationInModule": {
|
|
1552
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1553
|
+
"line": 222
|
|
1554
|
+
},
|
|
1555
|
+
"name": "gitShallowHosts",
|
|
1556
|
+
"optional": true,
|
|
1557
|
+
"type": {
|
|
1558
|
+
"collection": {
|
|
1559
|
+
"elementtype": {
|
|
1560
|
+
"primitive": "string"
|
|
1561
|
+
},
|
|
1562
|
+
"kind": "array"
|
|
1563
|
+
}
|
|
1564
|
+
}
|
|
1565
|
+
},
|
|
1566
|
+
{
|
|
1567
|
+
"abstract": true,
|
|
1568
|
+
"docs": {
|
|
1569
|
+
"stability": "experimental",
|
|
1570
|
+
"summary": "Allows to set the target directory for the bin files of globally installed packages."
|
|
1571
|
+
},
|
|
1572
|
+
"immutable": true,
|
|
1573
|
+
"locationInModule": {
|
|
1574
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1575
|
+
"line": 434
|
|
1576
|
+
},
|
|
1577
|
+
"name": "globalBinDir",
|
|
1578
|
+
"optional": true,
|
|
1579
|
+
"type": {
|
|
1580
|
+
"primitive": "string"
|
|
1581
|
+
}
|
|
1582
|
+
},
|
|
1583
|
+
{
|
|
1584
|
+
"abstract": true,
|
|
1585
|
+
"docs": {
|
|
1586
|
+
"stability": "experimental",
|
|
1587
|
+
"summary": "Specify a custom directory to store global packages."
|
|
1588
|
+
},
|
|
1589
|
+
"immutable": true,
|
|
1590
|
+
"locationInModule": {
|
|
1591
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1592
|
+
"line": 430
|
|
1593
|
+
},
|
|
1594
|
+
"name": "globalDir",
|
|
1595
|
+
"optional": true,
|
|
1596
|
+
"type": {
|
|
1597
|
+
"primitive": "string"
|
|
1598
|
+
}
|
|
1599
|
+
},
|
|
1600
|
+
{
|
|
1601
|
+
"abstract": true,
|
|
1602
|
+
"docs": {
|
|
1603
|
+
"remarks": "A global pnpmfile is used by all projects during installation.",
|
|
1604
|
+
"stability": "experimental",
|
|
1605
|
+
"summary": "The location of a global pnpmfile."
|
|
1606
|
+
},
|
|
1607
|
+
"immutable": true,
|
|
1608
|
+
"locationInModule": {
|
|
1609
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1610
|
+
"line": 502
|
|
1611
|
+
},
|
|
1612
|
+
"name": "globalPnpmfile",
|
|
1613
|
+
"optional": true,
|
|
1614
|
+
"type": {
|
|
1615
|
+
"primitive": "string"
|
|
1616
|
+
}
|
|
1617
|
+
},
|
|
1618
|
+
{
|
|
1619
|
+
"abstract": true,
|
|
1620
|
+
"docs": {
|
|
1621
|
+
"stability": "experimental",
|
|
1622
|
+
"summary": "When true, all dependencies are hoisted to node_modules/.pnpm/node_modules."
|
|
1623
|
+
},
|
|
1624
|
+
"immutable": true,
|
|
1625
|
+
"locationInModule": {
|
|
1626
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1627
|
+
"line": 106
|
|
1628
|
+
},
|
|
1629
|
+
"name": "hoist",
|
|
1630
|
+
"optional": true,
|
|
1631
|
+
"type": {
|
|
1632
|
+
"primitive": "boolean"
|
|
1633
|
+
}
|
|
1634
|
+
},
|
|
1635
|
+
{
|
|
1636
|
+
"abstract": true,
|
|
1637
|
+
"docs": {
|
|
1638
|
+
"stability": "experimental",
|
|
1639
|
+
"summary": "Tells pnpm which packages should be hoisted to node_modules/.pnpm/node_modules."
|
|
1640
|
+
},
|
|
1641
|
+
"immutable": true,
|
|
1642
|
+
"locationInModule": {
|
|
1643
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1644
|
+
"line": 114
|
|
1645
|
+
},
|
|
1646
|
+
"name": "hoistPattern",
|
|
1647
|
+
"optional": true,
|
|
1648
|
+
"type": {
|
|
1649
|
+
"collection": {
|
|
1650
|
+
"elementtype": {
|
|
1651
|
+
"primitive": "string"
|
|
1652
|
+
},
|
|
1653
|
+
"kind": "array"
|
|
1654
|
+
}
|
|
1655
|
+
}
|
|
1656
|
+
},
|
|
1657
|
+
{
|
|
1658
|
+
"abstract": true,
|
|
1659
|
+
"docs": {
|
|
1660
|
+
"stability": "experimental",
|
|
1661
|
+
"summary": "When true, packages from the workspaces are symlinked to either <workspace_root>/node_modules/.pnpm/node_modules or to <workspace_root>/node_modules depending on other hoisting settings (hoistPattern and publicHoistPattern)."
|
|
1662
|
+
},
|
|
1663
|
+
"immutable": true,
|
|
1664
|
+
"locationInModule": {
|
|
1665
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1666
|
+
"line": 110
|
|
1667
|
+
},
|
|
1668
|
+
"name": "hoistWorkspacePackages",
|
|
1669
|
+
"optional": true,
|
|
1670
|
+
"type": {
|
|
1671
|
+
"primitive": "boolean"
|
|
1672
|
+
}
|
|
1673
|
+
},
|
|
1674
|
+
{
|
|
1675
|
+
"abstract": true,
|
|
1676
|
+
"docs": {
|
|
1677
|
+
"remarks": "If the HTTPS_PROXY, https_proxy, HTTP_PROXY or http_proxy environment variables are set, their values will be used instead.",
|
|
1678
|
+
"stability": "experimental",
|
|
1679
|
+
"summary": "A proxy to use for outgoing HTTPS requests."
|
|
1680
|
+
},
|
|
1681
|
+
"immutable": true,
|
|
1682
|
+
"locationInModule": {
|
|
1683
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1684
|
+
"line": 226
|
|
1685
|
+
},
|
|
1686
|
+
"name": "httpsProxy",
|
|
1687
|
+
"optional": true,
|
|
1688
|
+
"type": {
|
|
1689
|
+
"primitive": "string"
|
|
1690
|
+
}
|
|
1691
|
+
},
|
|
1692
|
+
{
|
|
1693
|
+
"abstract": true,
|
|
1694
|
+
"docs": {
|
|
1695
|
+
"remarks": "If you want to disable this, set this config to false.",
|
|
1696
|
+
"stability": "experimental",
|
|
1697
|
+
"summary": "During installation the dependencies of some packages are automatically patched."
|
|
1698
|
+
},
|
|
1699
|
+
"immutable": true,
|
|
1700
|
+
"locationInModule": {
|
|
1701
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1702
|
+
"line": 458
|
|
1703
|
+
},
|
|
1704
|
+
"name": "ignoreCompatibilityDb",
|
|
1705
|
+
"optional": true,
|
|
1706
|
+
"type": {
|
|
1707
|
+
"primitive": "boolean"
|
|
1708
|
+
}
|
|
1709
|
+
},
|
|
1710
|
+
{
|
|
1711
|
+
"abstract": true,
|
|
1712
|
+
"docs": {
|
|
1713
|
+
"stability": "experimental",
|
|
1714
|
+
"summary": "A list of package names that should not be built during installation."
|
|
1715
|
+
},
|
|
1716
|
+
"immutable": true,
|
|
1717
|
+
"locationInModule": {
|
|
1718
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1719
|
+
"line": 63
|
|
1720
|
+
},
|
|
1721
|
+
"name": "ignoredBuiltDependencies",
|
|
1722
|
+
"optional": true,
|
|
1723
|
+
"type": {
|
|
1724
|
+
"collection": {
|
|
1725
|
+
"elementtype": {
|
|
1726
|
+
"primitive": "string"
|
|
1727
|
+
},
|
|
1728
|
+
"kind": "array"
|
|
1729
|
+
}
|
|
1730
|
+
}
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
"abstract": true,
|
|
1734
|
+
"docs": {
|
|
1735
|
+
"remarks": "Scripts of the projects are executed.",
|
|
1736
|
+
"stability": "experimental",
|
|
1737
|
+
"summary": "Do not execute any scripts of the installed packages."
|
|
1738
|
+
},
|
|
1739
|
+
"immutable": true,
|
|
1740
|
+
"locationInModule": {
|
|
1741
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1742
|
+
"line": 330
|
|
1743
|
+
},
|
|
1744
|
+
"name": "ignoreDepScripts",
|
|
1745
|
+
"optional": true,
|
|
1746
|
+
"type": {
|
|
1747
|
+
"primitive": "boolean"
|
|
1748
|
+
}
|
|
1749
|
+
},
|
|
1750
|
+
{
|
|
1751
|
+
"abstract": true,
|
|
1752
|
+
"docs": {
|
|
1753
|
+
"stability": "experimental",
|
|
1754
|
+
"summary": "A list of optional dependencies that the install should be skipped."
|
|
1755
|
+
},
|
|
1756
|
+
"immutable": true,
|
|
1757
|
+
"locationInModule": {
|
|
1758
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1759
|
+
"line": 101
|
|
1760
|
+
},
|
|
1761
|
+
"name": "ignoredOptionalDependencies",
|
|
1762
|
+
"optional": true,
|
|
1763
|
+
"type": {
|
|
1764
|
+
"collection": {
|
|
1765
|
+
"elementtype": {
|
|
1766
|
+
"primitive": "string"
|
|
1767
|
+
},
|
|
1768
|
+
"kind": "array"
|
|
1769
|
+
}
|
|
1770
|
+
}
|
|
1771
|
+
},
|
|
1772
|
+
{
|
|
1773
|
+
"abstract": true,
|
|
1774
|
+
"docs": {
|
|
1775
|
+
"remarks": "Errors out when a patch with an exact version or version range fails. Ignores failures from name-only patches. When true, prints a warning instead of failing when any patch cannot be applied. When false, errors out for any patch failure.",
|
|
1776
|
+
"stability": "experimental",
|
|
1777
|
+
"summary": "Default is undefined."
|
|
1778
|
+
},
|
|
1779
|
+
"immutable": true,
|
|
1780
|
+
"locationInModule": {
|
|
1781
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1782
|
+
"line": 83
|
|
1783
|
+
},
|
|
1784
|
+
"name": "ignorePatchFailures",
|
|
1785
|
+
"optional": true,
|
|
1786
|
+
"type": {
|
|
1787
|
+
"primitive": "boolean"
|
|
1788
|
+
}
|
|
1789
|
+
},
|
|
1790
|
+
{
|
|
1791
|
+
"abstract": true,
|
|
1792
|
+
"docs": {
|
|
1793
|
+
"stability": "experimental",
|
|
1794
|
+
"summary": ".pnpmfile.cjs will be ignored. Useful together with --ignore-scripts when you want to make sure that no script gets executed during install."
|
|
1795
|
+
},
|
|
1796
|
+
"immutable": true,
|
|
1797
|
+
"locationInModule": {
|
|
1798
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1799
|
+
"line": 506
|
|
1800
|
+
},
|
|
1801
|
+
"name": "ignorePnpmfile",
|
|
1802
|
+
"optional": true,
|
|
1803
|
+
"type": {
|
|
1804
|
+
"primitive": "boolean"
|
|
1805
|
+
}
|
|
1806
|
+
},
|
|
1807
|
+
{
|
|
1808
|
+
"abstract": true,
|
|
1809
|
+
"docs": {
|
|
1810
|
+
"stability": "experimental",
|
|
1811
|
+
"summary": "Do not execute any scripts defined in the project package.json and its dependencies."
|
|
1812
|
+
},
|
|
1813
|
+
"immutable": true,
|
|
1814
|
+
"locationInModule": {
|
|
1815
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1816
|
+
"line": 326
|
|
1817
|
+
},
|
|
1818
|
+
"name": "ignoreScripts",
|
|
1819
|
+
"optional": true,
|
|
1820
|
+
"type": {
|
|
1821
|
+
"primitive": "boolean"
|
|
1822
|
+
}
|
|
1823
|
+
},
|
|
1824
|
+
{
|
|
1825
|
+
"abstract": true,
|
|
1826
|
+
"docs": {
|
|
1827
|
+
"stability": "experimental",
|
|
1828
|
+
"summary": "When set to true, no workspace cycle warnings will be printed."
|
|
1829
|
+
},
|
|
1830
|
+
"immutable": true,
|
|
1831
|
+
"locationInModule": {
|
|
1832
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1833
|
+
"line": 398
|
|
1834
|
+
},
|
|
1835
|
+
"name": "ignoreWorkspaceCycles",
|
|
1836
|
+
"optional": true,
|
|
1837
|
+
"type": {
|
|
1838
|
+
"primitive": "boolean"
|
|
1839
|
+
}
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
"abstract": true,
|
|
1843
|
+
"docs": {
|
|
1844
|
+
"stability": "experimental",
|
|
1845
|
+
"summary": "Adding a new dependency to the root workspace package fails, unless the --ignore-workspace-root-check or -w flag is used."
|
|
1846
|
+
},
|
|
1847
|
+
"immutable": true,
|
|
1848
|
+
"locationInModule": {
|
|
1849
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1850
|
+
"line": 402
|
|
1851
|
+
},
|
|
1852
|
+
"name": "ignoreWorkspaceRootCheck",
|
|
1853
|
+
"optional": true,
|
|
1854
|
+
"type": {
|
|
1855
|
+
"primitive": "boolean"
|
|
1856
|
+
}
|
|
1857
|
+
},
|
|
1858
|
+
{
|
|
1859
|
+
"abstract": true,
|
|
1860
|
+
"docs": {
|
|
1861
|
+
"stability": "experimental",
|
|
1862
|
+
"summary": "When executing commands recursively in a workspace, execute them on the root workspace project as well."
|
|
1863
|
+
},
|
|
1864
|
+
"immutable": true,
|
|
1865
|
+
"locationInModule": {
|
|
1866
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1867
|
+
"line": 394
|
|
1868
|
+
},
|
|
1869
|
+
"name": "includeWorkspaceRoot",
|
|
1870
|
+
"optional": true,
|
|
1871
|
+
"type": {
|
|
1872
|
+
"primitive": "boolean"
|
|
1873
|
+
}
|
|
1874
|
+
},
|
|
1875
|
+
{
|
|
1876
|
+
"abstract": true,
|
|
1877
|
+
"docs": {
|
|
1878
|
+
"stability": "experimental",
|
|
1879
|
+
"summary": "Enables hard-linking of all local workspace dependencies instead of symlinking them."
|
|
1880
|
+
},
|
|
1881
|
+
"immutable": true,
|
|
1882
|
+
"locationInModule": {
|
|
1883
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1884
|
+
"line": 374
|
|
1885
|
+
},
|
|
1886
|
+
"name": "injectWorkspacePackages",
|
|
1887
|
+
"optional": true,
|
|
1888
|
+
"type": {
|
|
1889
|
+
"primitive": "boolean"
|
|
1890
|
+
}
|
|
1891
|
+
},
|
|
1892
|
+
{
|
|
1893
|
+
"abstract": true,
|
|
1894
|
+
"docs": {
|
|
1895
|
+
"stability": "experimental",
|
|
1896
|
+
"summary": "A client key to pass when accessing the registry."
|
|
1897
|
+
},
|
|
1898
|
+
"immutable": true,
|
|
1899
|
+
"locationInModule": {
|
|
1900
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1901
|
+
"line": 218
|
|
1902
|
+
},
|
|
1903
|
+
"name": "key",
|
|
1904
|
+
"optional": true,
|
|
1905
|
+
"type": {
|
|
1906
|
+
"primitive": "string"
|
|
1907
|
+
}
|
|
1908
|
+
},
|
|
1909
|
+
{
|
|
1910
|
+
"abstract": true,
|
|
1911
|
+
"docs": {
|
|
1912
|
+
"stability": "experimental",
|
|
1913
|
+
"summary": "If this is enabled, locally available packages are linked to node_modules instead of being downloaded from the registry."
|
|
1914
|
+
},
|
|
1915
|
+
"immutable": true,
|
|
1916
|
+
"locationInModule": {
|
|
1917
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1918
|
+
"line": 370
|
|
1919
|
+
},
|
|
1920
|
+
"name": "linkWorkspacePackages",
|
|
1921
|
+
"optional": true,
|
|
1922
|
+
"type": {
|
|
1923
|
+
"union": {
|
|
1924
|
+
"types": [
|
|
1925
|
+
{
|
|
1926
|
+
"primitive": "boolean"
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
"primitive": "string"
|
|
1930
|
+
}
|
|
1931
|
+
]
|
|
1932
|
+
}
|
|
1933
|
+
}
|
|
1934
|
+
},
|
|
1935
|
+
{
|
|
1936
|
+
"abstract": true,
|
|
1937
|
+
"docs": {
|
|
1938
|
+
"stability": "experimental",
|
|
1939
|
+
"summary": "The IP address of the local interface to use when making connections to the npm registry."
|
|
1940
|
+
},
|
|
1941
|
+
"immutable": true,
|
|
1942
|
+
"locationInModule": {
|
|
1943
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1944
|
+
"line": 234
|
|
1945
|
+
},
|
|
1946
|
+
"name": "localAddress",
|
|
1947
|
+
"optional": true,
|
|
1948
|
+
"type": {
|
|
1949
|
+
"primitive": "string"
|
|
1950
|
+
}
|
|
1951
|
+
},
|
|
1952
|
+
{
|
|
1953
|
+
"abstract": true,
|
|
1954
|
+
"docs": {
|
|
1955
|
+
"stability": "experimental",
|
|
1956
|
+
"summary": "When set to false, pnpm won't read or generate a pnpm-lock.yaml file."
|
|
1957
|
+
},
|
|
1958
|
+
"immutable": true,
|
|
1959
|
+
"locationInModule": {
|
|
1960
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1961
|
+
"line": 178
|
|
1962
|
+
},
|
|
1963
|
+
"name": "lockfile",
|
|
1964
|
+
"optional": true,
|
|
1965
|
+
"type": {
|
|
1966
|
+
"primitive": "boolean"
|
|
1967
|
+
}
|
|
1968
|
+
},
|
|
1969
|
+
{
|
|
1970
|
+
"abstract": true,
|
|
1971
|
+
"docs": {
|
|
1972
|
+
"stability": "experimental",
|
|
1973
|
+
"summary": "Add the full URL to the package's tarball to every entry in pnpm-lock.yaml."
|
|
1974
|
+
},
|
|
1975
|
+
"immutable": true,
|
|
1976
|
+
"locationInModule": {
|
|
1977
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1978
|
+
"line": 186
|
|
1979
|
+
},
|
|
1980
|
+
"name": "lockfileIncludeTarballUrl",
|
|
1981
|
+
"optional": true,
|
|
1982
|
+
"type": {
|
|
1983
|
+
"primitive": "boolean"
|
|
1984
|
+
}
|
|
1985
|
+
},
|
|
1986
|
+
{
|
|
1987
|
+
"abstract": true,
|
|
1988
|
+
"docs": {
|
|
1989
|
+
"stability": "experimental",
|
|
1990
|
+
"summary": "Any logs at or higher than the given level will be shown."
|
|
1991
|
+
},
|
|
1992
|
+
"immutable": true,
|
|
1993
|
+
"locationInModule": {
|
|
1994
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
1995
|
+
"line": 294
|
|
1996
|
+
},
|
|
1997
|
+
"name": "loglevel",
|
|
1998
|
+
"optional": true,
|
|
1999
|
+
"type": {
|
|
2000
|
+
"primitive": "string"
|
|
2001
|
+
}
|
|
2002
|
+
},
|
|
2003
|
+
{
|
|
2004
|
+
"abstract": true,
|
|
2005
|
+
"docs": {
|
|
2006
|
+
"stability": "experimental",
|
|
2007
|
+
"summary": "When enabled, pnpm will automatically download and run the version of pnpm specified in the packageManager field of package.json."
|
|
2008
|
+
},
|
|
2009
|
+
"immutable": true,
|
|
2010
|
+
"locationInModule": {
|
|
2011
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2012
|
+
"line": 322
|
|
2013
|
+
},
|
|
2014
|
+
"name": "managePackageManagerVersions",
|
|
2015
|
+
"optional": true,
|
|
2016
|
+
"type": {
|
|
2017
|
+
"primitive": "boolean"
|
|
2018
|
+
}
|
|
2019
|
+
},
|
|
2020
|
+
{
|
|
2021
|
+
"abstract": true,
|
|
2022
|
+
"docs": {
|
|
2023
|
+
"stability": "experimental",
|
|
2024
|
+
"summary": "The maximum number of connections to use per origin (protocol/host/port combination)."
|
|
2025
|
+
},
|
|
2026
|
+
"immutable": true,
|
|
2027
|
+
"locationInModule": {
|
|
2028
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2029
|
+
"line": 238
|
|
2030
|
+
},
|
|
2031
|
+
"name": "maxsockets",
|
|
2032
|
+
"optional": true,
|
|
2033
|
+
"type": {
|
|
2034
|
+
"primitive": "number"
|
|
2035
|
+
}
|
|
2036
|
+
},
|
|
2037
|
+
{
|
|
2038
|
+
"abstract": true,
|
|
2039
|
+
"docs": {
|
|
2040
|
+
"stability": "experimental",
|
|
2041
|
+
"summary": "This configuration matches the current branch name to determine whether to merge all git branch lockfile files."
|
|
2042
|
+
},
|
|
2043
|
+
"immutable": true,
|
|
2044
|
+
"locationInModule": {
|
|
2045
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2046
|
+
"line": 194
|
|
2047
|
+
},
|
|
2048
|
+
"name": "mergeGitBranchLockfilesBranchPattern",
|
|
2049
|
+
"optional": true,
|
|
2050
|
+
"type": {
|
|
2051
|
+
"collection": {
|
|
2052
|
+
"elementtype": {
|
|
2053
|
+
"primitive": "string"
|
|
2054
|
+
},
|
|
2055
|
+
"kind": "array"
|
|
2056
|
+
}
|
|
2057
|
+
}
|
|
2058
|
+
},
|
|
2059
|
+
{
|
|
2060
|
+
"abstract": true,
|
|
2061
|
+
"docs": {
|
|
2062
|
+
"remarks": "This applies to all dependencies, including transitive ones.",
|
|
2063
|
+
"stability": "experimental",
|
|
2064
|
+
"summary": "minimumReleaseAge defines the minimum number of minutes that must pass after a version is published before pnpm will install it."
|
|
2065
|
+
},
|
|
2066
|
+
"immutable": true,
|
|
2067
|
+
"locationInModule": {
|
|
2068
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2069
|
+
"line": 530
|
|
2070
|
+
},
|
|
2071
|
+
"name": "minimumReleaseAge",
|
|
2072
|
+
"optional": true,
|
|
2073
|
+
"type": {
|
|
2074
|
+
"primitive": "number"
|
|
2075
|
+
}
|
|
2076
|
+
},
|
|
2077
|
+
{
|
|
2078
|
+
"abstract": true,
|
|
2079
|
+
"docs": {
|
|
2080
|
+
"remarks": "The exclusion works by `package name` and applies to all versions of that package.",
|
|
2081
|
+
"stability": "experimental",
|
|
2082
|
+
"summary": "If you set `minimumReleaseAge` but need certain dependencies to always install the newest version immediately, you can list them under `minimumReleaseAgeExclude`."
|
|
2083
|
+
},
|
|
2084
|
+
"immutable": true,
|
|
2085
|
+
"locationInModule": {
|
|
2086
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2087
|
+
"line": 534
|
|
2088
|
+
},
|
|
2089
|
+
"name": "minimumReleaseAgeExclude",
|
|
2090
|
+
"optional": true,
|
|
2091
|
+
"type": {
|
|
2092
|
+
"collection": {
|
|
2093
|
+
"elementtype": {
|
|
2094
|
+
"primitive": "string"
|
|
2095
|
+
},
|
|
2096
|
+
"kind": "array"
|
|
2097
|
+
}
|
|
2098
|
+
}
|
|
2099
|
+
},
|
|
2100
|
+
{
|
|
2101
|
+
"abstract": true,
|
|
2102
|
+
"docs": {
|
|
2103
|
+
"stability": "experimental",
|
|
2104
|
+
"summary": "The time in minutes after which orphan packages from the modules directory should be removed."
|
|
2105
|
+
},
|
|
2106
|
+
"immutable": true,
|
|
2107
|
+
"locationInModule": {
|
|
2108
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2109
|
+
"line": 154
|
|
2110
|
+
},
|
|
2111
|
+
"name": "modulesCacheMaxAge",
|
|
2112
|
+
"optional": true,
|
|
2113
|
+
"type": {
|
|
2114
|
+
"primitive": "number"
|
|
2115
|
+
}
|
|
2116
|
+
},
|
|
2117
|
+
{
|
|
2118
|
+
"abstract": true,
|
|
2119
|
+
"docs": {
|
|
2120
|
+
"stability": "experimental",
|
|
2121
|
+
"summary": "The directory in which dependencies will be installed (instead of node_modules)."
|
|
2122
|
+
},
|
|
2123
|
+
"immutable": true,
|
|
2124
|
+
"locationInModule": {
|
|
2125
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2126
|
+
"line": 126
|
|
2127
|
+
},
|
|
2128
|
+
"name": "modulesDir",
|
|
2129
|
+
"optional": true,
|
|
2130
|
+
"type": {
|
|
2131
|
+
"primitive": "string"
|
|
2132
|
+
}
|
|
2133
|
+
},
|
|
2134
|
+
{
|
|
2135
|
+
"abstract": true,
|
|
2136
|
+
"docs": {
|
|
2137
|
+
"stability": "experimental",
|
|
2138
|
+
"summary": "Controls the maximum number of HTTP(S) requests to process simultaneously."
|
|
2139
|
+
},
|
|
2140
|
+
"immutable": true,
|
|
2141
|
+
"locationInModule": {
|
|
2142
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2143
|
+
"line": 250
|
|
2144
|
+
},
|
|
2145
|
+
"name": "networkConcurrency",
|
|
2146
|
+
"optional": true,
|
|
2147
|
+
"type": {
|
|
2148
|
+
"primitive": "number"
|
|
2149
|
+
}
|
|
2150
|
+
},
|
|
2151
|
+
{
|
|
2152
|
+
"abstract": true,
|
|
2153
|
+
"docs": {
|
|
2154
|
+
"stability": "experimental",
|
|
2155
|
+
"summary": "A list of dependencies to run builds for."
|
|
2156
|
+
},
|
|
2157
|
+
"immutable": true,
|
|
2158
|
+
"locationInModule": {
|
|
2159
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2160
|
+
"line": 51
|
|
2161
|
+
},
|
|
2162
|
+
"name": "neverBuiltDependencies",
|
|
2163
|
+
"optional": true,
|
|
2164
|
+
"type": {
|
|
2165
|
+
"collection": {
|
|
2166
|
+
"elementtype": {
|
|
2167
|
+
"primitive": "string"
|
|
2168
|
+
},
|
|
2169
|
+
"kind": "array"
|
|
2170
|
+
}
|
|
2171
|
+
}
|
|
2172
|
+
},
|
|
2173
|
+
{
|
|
2174
|
+
"abstract": true,
|
|
2175
|
+
"docs": {
|
|
2176
|
+
"stability": "experimental",
|
|
2177
|
+
"summary": "Defines what linker should be used for installing Node packages."
|
|
2178
|
+
},
|
|
2179
|
+
"immutable": true,
|
|
2180
|
+
"locationInModule": {
|
|
2181
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2182
|
+
"line": 130
|
|
2183
|
+
},
|
|
2184
|
+
"name": "nodeLinker",
|
|
2185
|
+
"optional": true,
|
|
2186
|
+
"type": {
|
|
2187
|
+
"primitive": "string"
|
|
2188
|
+
}
|
|
2189
|
+
},
|
|
2190
|
+
{
|
|
2191
|
+
"abstract": true,
|
|
2192
|
+
"docs": {
|
|
2193
|
+
"stability": "experimental",
|
|
2194
|
+
"summary": "Options to pass through to Node.js via the NODE_OPTIONS environment variable."
|
|
2195
|
+
},
|
|
2196
|
+
"immutable": true,
|
|
2197
|
+
"locationInModule": {
|
|
2198
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2199
|
+
"line": 350
|
|
2200
|
+
},
|
|
2201
|
+
"name": "nodeOptions",
|
|
2202
|
+
"optional": true,
|
|
2203
|
+
"type": {
|
|
2204
|
+
"primitive": "string"
|
|
2205
|
+
}
|
|
2206
|
+
},
|
|
2207
|
+
{
|
|
2208
|
+
"abstract": true,
|
|
2209
|
+
"docs": {
|
|
2210
|
+
"stability": "experimental",
|
|
2211
|
+
"summary": "The Node.js version to use when checking a package's engines setting."
|
|
2212
|
+
},
|
|
2213
|
+
"immutable": true,
|
|
2214
|
+
"locationInModule": {
|
|
2215
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2216
|
+
"line": 366
|
|
2217
|
+
},
|
|
2218
|
+
"name": "nodeVersion",
|
|
2219
|
+
"optional": true,
|
|
2220
|
+
"type": {
|
|
2221
|
+
"primitive": "string"
|
|
2222
|
+
}
|
|
2223
|
+
},
|
|
2224
|
+
{
|
|
2225
|
+
"abstract": true,
|
|
2226
|
+
"docs": {
|
|
2227
|
+
"stability": "experimental",
|
|
2228
|
+
"summary": "A comma-separated string of domain extensions that a proxy should not be used for."
|
|
2229
|
+
},
|
|
2230
|
+
"immutable": true,
|
|
2231
|
+
"locationInModule": {
|
|
2232
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2233
|
+
"line": 242
|
|
2234
|
+
},
|
|
2235
|
+
"name": "noproxy",
|
|
2236
|
+
"optional": true,
|
|
2237
|
+
"type": {
|
|
2238
|
+
"primitive": "string"
|
|
2239
|
+
}
|
|
2240
|
+
},
|
|
2241
|
+
{
|
|
2242
|
+
"abstract": true,
|
|
2243
|
+
"docs": {
|
|
2244
|
+
"stability": "experimental",
|
|
2245
|
+
"summary": "The location of the npm binary that pnpm uses for some actions, like publishing."
|
|
2246
|
+
},
|
|
2247
|
+
"immutable": true,
|
|
2248
|
+
"locationInModule": {
|
|
2249
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2250
|
+
"line": 310
|
|
2251
|
+
},
|
|
2252
|
+
"name": "npmPath",
|
|
2253
|
+
"optional": true,
|
|
2254
|
+
"type": {
|
|
2255
|
+
"primitive": "string"
|
|
2256
|
+
}
|
|
2257
|
+
},
|
|
2258
|
+
{
|
|
2259
|
+
"abstract": true,
|
|
2260
|
+
"docs": {
|
|
2261
|
+
"stability": "experimental",
|
|
2262
|
+
"summary": "A list of package names that are allowed to be executed during installation."
|
|
2263
|
+
},
|
|
2264
|
+
"immutable": true,
|
|
2265
|
+
"locationInModule": {
|
|
2266
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2267
|
+
"line": 38
|
|
2268
|
+
},
|
|
2269
|
+
"name": "onlyBuiltDependencies",
|
|
2270
|
+
"optional": true,
|
|
2271
|
+
"type": {
|
|
2272
|
+
"collection": {
|
|
2273
|
+
"elementtype": {
|
|
2274
|
+
"primitive": "string"
|
|
2275
|
+
},
|
|
2276
|
+
"kind": "array"
|
|
2277
|
+
}
|
|
2278
|
+
}
|
|
2279
|
+
},
|
|
2280
|
+
{
|
|
2281
|
+
"abstract": true,
|
|
2282
|
+
"docs": {
|
|
2283
|
+
"stability": "experimental",
|
|
2284
|
+
"summary": "Specifies a JSON file that lists the only packages permitted to run installation scripts during the pnpm install process."
|
|
2285
|
+
},
|
|
2286
|
+
"immutable": true,
|
|
2287
|
+
"locationInModule": {
|
|
2288
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2289
|
+
"line": 59
|
|
2290
|
+
},
|
|
2291
|
+
"name": "onlyBuiltDependenciesFile",
|
|
2292
|
+
"optional": true,
|
|
2293
|
+
"type": {
|
|
2294
|
+
"primitive": "string"
|
|
2295
|
+
}
|
|
2296
|
+
},
|
|
2297
|
+
{
|
|
2298
|
+
"abstract": true,
|
|
2299
|
+
"docs": {
|
|
2300
|
+
"remarks": "This way a repeat install or an install on a project with everything up-to-date becomes a lot faster.",
|
|
2301
|
+
"stability": "experimental",
|
|
2302
|
+
"summary": "When enabled, a fast check will be performed before proceeding to installation."
|
|
2303
|
+
},
|
|
2304
|
+
"immutable": true,
|
|
2305
|
+
"locationInModule": {
|
|
2306
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2307
|
+
"line": 486
|
|
2308
|
+
},
|
|
2309
|
+
"name": "optimisticRepeatInstall",
|
|
2310
|
+
"optional": true,
|
|
2311
|
+
"type": {
|
|
2312
|
+
"primitive": "boolean"
|
|
2313
|
+
}
|
|
2314
|
+
},
|
|
2315
|
+
{
|
|
2316
|
+
"abstract": true,
|
|
2317
|
+
"docs": {
|
|
2318
|
+
"stability": "experimental",
|
|
2319
|
+
"summary": "Used to override any dependency in the dependency graph."
|
|
2320
|
+
},
|
|
2321
|
+
"immutable": true,
|
|
2322
|
+
"locationInModule": {
|
|
2323
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2324
|
+
"line": 42
|
|
2325
|
+
},
|
|
2326
|
+
"name": "overrides",
|
|
2327
|
+
"optional": true,
|
|
2328
|
+
"type": {
|
|
2329
|
+
"collection": {
|
|
2330
|
+
"elementtype": {
|
|
2331
|
+
"primitive": "string"
|
|
2332
|
+
},
|
|
2333
|
+
"kind": "map"
|
|
2334
|
+
}
|
|
2335
|
+
}
|
|
2336
|
+
},
|
|
2337
|
+
{
|
|
2338
|
+
"abstract": true,
|
|
2339
|
+
"docs": {
|
|
2340
|
+
"stability": "experimental",
|
|
2341
|
+
"summary": "Used to extend the existing package definitions with additional information."
|
|
2342
|
+
},
|
|
2343
|
+
"immutable": true,
|
|
2344
|
+
"locationInModule": {
|
|
2345
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2346
|
+
"line": 46
|
|
2347
|
+
},
|
|
2348
|
+
"name": "packageExtensions",
|
|
2349
|
+
"optional": true,
|
|
2350
|
+
"type": {
|
|
2351
|
+
"collection": {
|
|
2352
|
+
"elementtype": {
|
|
2353
|
+
"fqn": "@alma-cdk/construct-library.PackageExtension"
|
|
2354
|
+
},
|
|
2355
|
+
"kind": "map"
|
|
2356
|
+
}
|
|
2357
|
+
}
|
|
2358
|
+
},
|
|
2359
|
+
{
|
|
2360
|
+
"abstract": true,
|
|
2361
|
+
"docs": {
|
|
2362
|
+
"stability": "experimental",
|
|
2363
|
+
"summary": "Controls the way packages are imported from the store (if you want to disable symlinks inside node_modules, then you need to change the nodeLinker setting, not this one)."
|
|
2364
|
+
},
|
|
2365
|
+
"immutable": true,
|
|
2366
|
+
"locationInModule": {
|
|
2367
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2368
|
+
"line": 150
|
|
2369
|
+
},
|
|
2370
|
+
"name": "packageImportMethod",
|
|
2371
|
+
"optional": true,
|
|
2372
|
+
"type": {
|
|
2373
|
+
"primitive": "string"
|
|
2374
|
+
}
|
|
2375
|
+
},
|
|
2376
|
+
{
|
|
2377
|
+
"abstract": true,
|
|
2378
|
+
"docs": {
|
|
2379
|
+
"stability": "experimental",
|
|
2380
|
+
"summary": "If this setting is disabled, pnpm will not fail if a different package manager is specified in the packageManager field of package.json. When enabled, only the package name is checked (since pnpm v9.2.0), so you can still run any version of pnpm regardless of the version specified in the packageManager field."
|
|
2381
|
+
},
|
|
2382
|
+
"immutable": true,
|
|
2383
|
+
"locationInModule": {
|
|
2384
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2385
|
+
"line": 314
|
|
2386
|
+
},
|
|
2387
|
+
"name": "packageManagerStrict",
|
|
2388
|
+
"optional": true,
|
|
2389
|
+
"type": {
|
|
2390
|
+
"primitive": "boolean"
|
|
2391
|
+
}
|
|
2392
|
+
},
|
|
2393
|
+
{
|
|
2394
|
+
"abstract": true,
|
|
2395
|
+
"docs": {
|
|
2396
|
+
"stability": "experimental",
|
|
2397
|
+
"summary": "When enabled, pnpm will fail if its version doesn't exactly match the version specified in the packageManager field of package.json."
|
|
2398
|
+
},
|
|
2399
|
+
"immutable": true,
|
|
2400
|
+
"locationInModule": {
|
|
2401
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2402
|
+
"line": 318
|
|
2403
|
+
},
|
|
2404
|
+
"name": "packageManagerStrictVersion",
|
|
2405
|
+
"optional": true,
|
|
2406
|
+
"type": {
|
|
2407
|
+
"primitive": "boolean"
|
|
2408
|
+
}
|
|
2409
|
+
},
|
|
2410
|
+
{
|
|
2411
|
+
"abstract": true,
|
|
2412
|
+
"docs": {
|
|
2413
|
+
"remarks": "Glob patterns are supported",
|
|
2414
|
+
"stability": "experimental",
|
|
2415
|
+
"summary": "Workspace package paths."
|
|
2416
|
+
},
|
|
2417
|
+
"immutable": true,
|
|
2418
|
+
"locationInModule": {
|
|
2419
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2420
|
+
"line": 21
|
|
2421
|
+
},
|
|
2422
|
+
"name": "packages",
|
|
2423
|
+
"optional": true,
|
|
2424
|
+
"type": {
|
|
2425
|
+
"collection": {
|
|
2426
|
+
"elementtype": {
|
|
2427
|
+
"primitive": "string"
|
|
2428
|
+
},
|
|
2429
|
+
"kind": "array"
|
|
2430
|
+
}
|
|
2431
|
+
}
|
|
2432
|
+
},
|
|
2433
|
+
{
|
|
2434
|
+
"abstract": true,
|
|
2435
|
+
"docs": {
|
|
2436
|
+
"stability": "experimental",
|
|
2437
|
+
"summary": "A list of dependencies that are patched."
|
|
2438
|
+
},
|
|
2439
|
+
"immutable": true,
|
|
2440
|
+
"locationInModule": {
|
|
2441
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2442
|
+
"line": 71
|
|
2443
|
+
},
|
|
2444
|
+
"name": "patchedDependencies",
|
|
2445
|
+
"optional": true,
|
|
2446
|
+
"type": {
|
|
2447
|
+
"collection": {
|
|
2448
|
+
"elementtype": {
|
|
2449
|
+
"primitive": "string"
|
|
2450
|
+
},
|
|
2451
|
+
"kind": "map"
|
|
2452
|
+
}
|
|
2453
|
+
}
|
|
2454
|
+
},
|
|
2455
|
+
{
|
|
2456
|
+
"abstract": true,
|
|
2457
|
+
"docs": {
|
|
2458
|
+
"stability": "experimental",
|
|
2459
|
+
"summary": "The generated patch file will be saved to this directory."
|
|
2460
|
+
},
|
|
2461
|
+
"immutable": true,
|
|
2462
|
+
"locationInModule": {
|
|
2463
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2464
|
+
"line": 510
|
|
2465
|
+
},
|
|
2466
|
+
"name": "patchesDir",
|
|
2467
|
+
"optional": true,
|
|
2468
|
+
"type": {
|
|
2469
|
+
"primitive": "string"
|
|
2470
|
+
}
|
|
2471
|
+
},
|
|
2472
|
+
{
|
|
2473
|
+
"abstract": true,
|
|
2474
|
+
"docs": {
|
|
2475
|
+
"stability": "experimental"
|
|
2476
|
+
},
|
|
2477
|
+
"immutable": true,
|
|
2478
|
+
"locationInModule": {
|
|
2479
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2480
|
+
"line": 47
|
|
2481
|
+
},
|
|
2482
|
+
"name": "peerDependencyRules",
|
|
2483
|
+
"optional": true,
|
|
2484
|
+
"type": {
|
|
2485
|
+
"fqn": "@alma-cdk/construct-library.PeerDependencyRules"
|
|
2486
|
+
}
|
|
2487
|
+
},
|
|
2488
|
+
{
|
|
2489
|
+
"abstract": true,
|
|
2490
|
+
"docs": {
|
|
2491
|
+
"remarks": "If the suffix is longer, it is replaced with a hash.",
|
|
2492
|
+
"stability": "experimental",
|
|
2493
|
+
"summary": "Max length of the peer IDs suffix added to dependency keys in the lockfile."
|
|
2494
|
+
},
|
|
2495
|
+
"immutable": true,
|
|
2496
|
+
"locationInModule": {
|
|
2497
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2498
|
+
"line": 198
|
|
2499
|
+
},
|
|
2500
|
+
"name": "peersSuffixMaxLength",
|
|
2501
|
+
"optional": true,
|
|
2502
|
+
"type": {
|
|
2503
|
+
"primitive": "number"
|
|
2504
|
+
}
|
|
2505
|
+
},
|
|
2506
|
+
{
|
|
2507
|
+
"abstract": true,
|
|
2508
|
+
"docs": {
|
|
2509
|
+
"stability": "experimental",
|
|
2510
|
+
"summary": "The location of the local pnpmfile."
|
|
2511
|
+
},
|
|
2512
|
+
"immutable": true,
|
|
2513
|
+
"locationInModule": {
|
|
2514
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2515
|
+
"line": 498
|
|
2516
|
+
},
|
|
2517
|
+
"name": "pnpmfile",
|
|
2518
|
+
"optional": true,
|
|
2519
|
+
"type": {
|
|
2520
|
+
"primitive": "string"
|
|
2521
|
+
}
|
|
2522
|
+
},
|
|
2523
|
+
{
|
|
2524
|
+
"abstract": true,
|
|
2525
|
+
"docs": {
|
|
2526
|
+
"stability": "experimental",
|
|
2527
|
+
"summary": "When set to true and the available pnpm-lock.yaml satisfies the package.json dependencies directive, a headless installation is performed."
|
|
2528
|
+
},
|
|
2529
|
+
"immutable": true,
|
|
2530
|
+
"locationInModule": {
|
|
2531
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2532
|
+
"line": 182
|
|
2533
|
+
},
|
|
2534
|
+
"name": "preferFrozenLockfile",
|
|
2535
|
+
"optional": true,
|
|
2536
|
+
"type": {
|
|
2537
|
+
"primitive": "boolean"
|
|
2538
|
+
}
|
|
2539
|
+
},
|
|
2540
|
+
{
|
|
2541
|
+
"abstract": true,
|
|
2542
|
+
"docs": {
|
|
2543
|
+
"remarks": "Missing data will still be requested from the server.",
|
|
2544
|
+
"stability": "experimental",
|
|
2545
|
+
"summary": "Bypass staleness checks for cached data."
|
|
2546
|
+
},
|
|
2547
|
+
"immutable": true,
|
|
2548
|
+
"locationInModule": {
|
|
2549
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2550
|
+
"line": 538
|
|
2551
|
+
},
|
|
2552
|
+
"name": "preferOffline",
|
|
2553
|
+
"optional": true,
|
|
2554
|
+
"type": {
|
|
2555
|
+
"primitive": "boolean"
|
|
2556
|
+
}
|
|
2557
|
+
},
|
|
2558
|
+
{
|
|
2559
|
+
"abstract": true,
|
|
2560
|
+
"docs": {
|
|
2561
|
+
"stability": "experimental",
|
|
2562
|
+
"summary": "Create symlinks to executables in node_modules/.bin instead of command shims. This setting is ignored on Windows, where only command shims work."
|
|
2563
|
+
},
|
|
2564
|
+
"immutable": true,
|
|
2565
|
+
"locationInModule": {
|
|
2566
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2567
|
+
"line": 454
|
|
2568
|
+
},
|
|
2569
|
+
"name": "preferSymlinkedExecutables",
|
|
2570
|
+
"optional": true,
|
|
2571
|
+
"type": {
|
|
2572
|
+
"primitive": "boolean"
|
|
2573
|
+
}
|
|
2574
|
+
},
|
|
2575
|
+
{
|
|
2576
|
+
"abstract": true,
|
|
2577
|
+
"docs": {
|
|
2578
|
+
"stability": "experimental",
|
|
2579
|
+
"summary": "If this is enabled, local packages from the workspace are preferred over packages from the registry, even if there is a newer version of the package in the registry."
|
|
2580
|
+
},
|
|
2581
|
+
"immutable": true,
|
|
2582
|
+
"locationInModule": {
|
|
2583
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2584
|
+
"line": 382
|
|
2585
|
+
},
|
|
2586
|
+
"name": "preferWorkspacePackages",
|
|
2587
|
+
"optional": true,
|
|
2588
|
+
"type": {
|
|
2589
|
+
"primitive": "boolean"
|
|
2590
|
+
}
|
|
2591
|
+
},
|
|
2592
|
+
{
|
|
2593
|
+
"abstract": true,
|
|
2594
|
+
"docs": {
|
|
2595
|
+
"remarks": "If the HTTP_PROXY or http_proxy environment variables are set, proxy settings will be honored by the underlying request library.",
|
|
2596
|
+
"stability": "experimental",
|
|
2597
|
+
"summary": "A proxy to use for outgoing http requests."
|
|
2598
|
+
},
|
|
2599
|
+
"immutable": true,
|
|
2600
|
+
"locationInModule": {
|
|
2601
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2602
|
+
"line": 230
|
|
2603
|
+
},
|
|
2604
|
+
"name": "proxy",
|
|
2605
|
+
"optional": true,
|
|
2606
|
+
"type": {
|
|
2607
|
+
"primitive": "string"
|
|
2608
|
+
}
|
|
2609
|
+
},
|
|
2610
|
+
{
|
|
2611
|
+
"abstract": true,
|
|
2612
|
+
"docs": {
|
|
2613
|
+
"stability": "experimental",
|
|
2614
|
+
"summary": "Unlike hoistPattern, which hoists dependencies to a hidden modules directory inside the virtual store, publicHoistPattern hoists dependencies matching the pattern to the root modules directory."
|
|
2615
|
+
},
|
|
2616
|
+
"immutable": true,
|
|
2617
|
+
"locationInModule": {
|
|
2618
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2619
|
+
"line": 118
|
|
2620
|
+
},
|
|
2621
|
+
"name": "publicHoistPattern",
|
|
2622
|
+
"optional": true,
|
|
2623
|
+
"type": {
|
|
2624
|
+
"collection": {
|
|
2625
|
+
"elementtype": {
|
|
2626
|
+
"primitive": "string"
|
|
2627
|
+
},
|
|
2628
|
+
"kind": "array"
|
|
2629
|
+
}
|
|
2630
|
+
}
|
|
2631
|
+
},
|
|
2632
|
+
{
|
|
2633
|
+
"abstract": true,
|
|
2634
|
+
"docs": {
|
|
2635
|
+
"stability": "experimental",
|
|
2636
|
+
"summary": "The primary branch of the repository which is used for publishing the latest changes."
|
|
2637
|
+
},
|
|
2638
|
+
"immutable": true,
|
|
2639
|
+
"locationInModule": {
|
|
2640
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2641
|
+
"line": 494
|
|
2642
|
+
},
|
|
2643
|
+
"name": "publishBranch",
|
|
2644
|
+
"optional": true,
|
|
2645
|
+
"type": {
|
|
2646
|
+
"primitive": "string"
|
|
2647
|
+
}
|
|
2648
|
+
},
|
|
2649
|
+
{
|
|
2650
|
+
"abstract": true,
|
|
2651
|
+
"docs": {
|
|
2652
|
+
"stability": "experimental",
|
|
2653
|
+
"summary": "If this is enabled, the primary behaviour of pnpm install becomes that of pnpm install -r, meaning the install is performed on all workspace or subdirectory packages."
|
|
2654
|
+
},
|
|
2655
|
+
"immutable": true,
|
|
2656
|
+
"locationInModule": {
|
|
2657
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2658
|
+
"line": 302
|
|
2659
|
+
},
|
|
2660
|
+
"name": "recursiveInstall",
|
|
2661
|
+
"optional": true,
|
|
2662
|
+
"type": {
|
|
2663
|
+
"primitive": "boolean"
|
|
2664
|
+
}
|
|
2665
|
+
},
|
|
2666
|
+
{
|
|
2667
|
+
"abstract": true,
|
|
2668
|
+
"docs": {
|
|
2669
|
+
"stability": "experimental",
|
|
2670
|
+
"summary": "The base URL of the npm package registry (trailing slash included)."
|
|
2671
|
+
},
|
|
2672
|
+
"immutable": true,
|
|
2673
|
+
"locationInModule": {
|
|
2674
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2675
|
+
"line": 202
|
|
2676
|
+
},
|
|
2677
|
+
"name": "registry",
|
|
2678
|
+
"optional": true,
|
|
2679
|
+
"type": {
|
|
2680
|
+
"primitive": "string"
|
|
2681
|
+
}
|
|
2682
|
+
},
|
|
2683
|
+
{
|
|
2684
|
+
"abstract": true,
|
|
2685
|
+
"docs": {
|
|
2686
|
+
"stability": "experimental",
|
|
2687
|
+
"summary": "Set this to true if the registry that you are using returns the \"time\" field in the abbreviated metadata."
|
|
2688
|
+
},
|
|
2689
|
+
"immutable": true,
|
|
2690
|
+
"locationInModule": {
|
|
2691
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2692
|
+
"line": 466
|
|
2693
|
+
},
|
|
2694
|
+
"name": "registrySupportsTimeField",
|
|
2695
|
+
"optional": true,
|
|
2696
|
+
"type": {
|
|
2697
|
+
"primitive": "boolean"
|
|
2698
|
+
}
|
|
2699
|
+
},
|
|
2700
|
+
{
|
|
2701
|
+
"abstract": true,
|
|
2702
|
+
"docs": {
|
|
2703
|
+
"stability": "experimental",
|
|
2704
|
+
"summary": "A list of scripts that must exist in each project."
|
|
2705
|
+
},
|
|
2706
|
+
"immutable": true,
|
|
2707
|
+
"locationInModule": {
|
|
2708
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2709
|
+
"line": 93
|
|
2710
|
+
},
|
|
2711
|
+
"name": "requiredScripts",
|
|
2712
|
+
"optional": true,
|
|
2713
|
+
"type": {
|
|
2714
|
+
"collection": {
|
|
2715
|
+
"elementtype": {
|
|
2716
|
+
"primitive": "string"
|
|
2717
|
+
},
|
|
2718
|
+
"kind": "array"
|
|
2719
|
+
}
|
|
2720
|
+
}
|
|
2721
|
+
},
|
|
2722
|
+
{
|
|
2723
|
+
"abstract": true,
|
|
2724
|
+
"docs": {
|
|
2725
|
+
"stability": "experimental",
|
|
2726
|
+
"summary": "Determines how pnpm resolves dependencies, See https://pnpm.io/settings#resolutionmode."
|
|
2727
|
+
},
|
|
2728
|
+
"immutable": true,
|
|
2729
|
+
"locationInModule": {
|
|
2730
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2731
|
+
"line": 462
|
|
2732
|
+
},
|
|
2733
|
+
"name": "resolutionMode",
|
|
2734
|
+
"optional": true,
|
|
2735
|
+
"type": {
|
|
2736
|
+
"primitive": "string"
|
|
2737
|
+
}
|
|
2738
|
+
},
|
|
2739
|
+
{
|
|
2740
|
+
"abstract": true,
|
|
2741
|
+
"docs": {
|
|
2742
|
+
"stability": "experimental",
|
|
2743
|
+
"summary": "When enabled, dependencies of the root workspace project are used to resolve peer dependencies of any projects in the workspace."
|
|
2744
|
+
},
|
|
2745
|
+
"immutable": true,
|
|
2746
|
+
"locationInModule": {
|
|
2747
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2748
|
+
"line": 286
|
|
2749
|
+
},
|
|
2750
|
+
"name": "resolvePeersFromWorkspaceRoot",
|
|
2751
|
+
"optional": true,
|
|
2752
|
+
"type": {
|
|
2753
|
+
"primitive": "boolean"
|
|
2754
|
+
}
|
|
2755
|
+
},
|
|
2756
|
+
{
|
|
2757
|
+
"abstract": true,
|
|
2758
|
+
"docs": {
|
|
2759
|
+
"stability": "experimental",
|
|
2760
|
+
"summary": "Saved dependencies will be configured with an exact version rather than using pnpm's default semver range operator."
|
|
2761
|
+
},
|
|
2762
|
+
"immutable": true,
|
|
2763
|
+
"locationInModule": {
|
|
2764
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2765
|
+
"line": 526
|
|
2766
|
+
},
|
|
2767
|
+
"name": "saveExact",
|
|
2768
|
+
"optional": true,
|
|
2769
|
+
"type": {
|
|
2770
|
+
"primitive": "boolean"
|
|
2771
|
+
}
|
|
2772
|
+
},
|
|
2773
|
+
{
|
|
2774
|
+
"abstract": true,
|
|
2775
|
+
"docs": {
|
|
2776
|
+
"stability": "experimental",
|
|
2777
|
+
"summary": "Configure how versions of packages installed to a package.json file get prefixed."
|
|
2778
|
+
},
|
|
2779
|
+
"immutable": true,
|
|
2780
|
+
"locationInModule": {
|
|
2781
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2782
|
+
"line": 422
|
|
2783
|
+
},
|
|
2784
|
+
"name": "savePrefix",
|
|
2785
|
+
"optional": true,
|
|
2786
|
+
"type": {
|
|
2787
|
+
"primitive": "string"
|
|
2788
|
+
}
|
|
2789
|
+
},
|
|
2790
|
+
{
|
|
2791
|
+
"abstract": true,
|
|
2792
|
+
"docs": {
|
|
2793
|
+
"stability": "experimental",
|
|
2794
|
+
"summary": "This setting controls how dependencies that are linked from the workspace are added to package.json."
|
|
2795
|
+
},
|
|
2796
|
+
"immutable": true,
|
|
2797
|
+
"locationInModule": {
|
|
2798
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2799
|
+
"line": 390
|
|
2800
|
+
},
|
|
2801
|
+
"name": "saveWorkspaceProtocol",
|
|
2802
|
+
"optional": true,
|
|
2803
|
+
"type": {
|
|
2804
|
+
"union": {
|
|
2805
|
+
"types": [
|
|
2806
|
+
{
|
|
2807
|
+
"primitive": "boolean"
|
|
2808
|
+
},
|
|
2809
|
+
{
|
|
2810
|
+
"primitive": "string"
|
|
2811
|
+
}
|
|
2812
|
+
]
|
|
2813
|
+
}
|
|
2814
|
+
}
|
|
2815
|
+
},
|
|
2816
|
+
{
|
|
2817
|
+
"abstract": true,
|
|
2818
|
+
"docs": {
|
|
2819
|
+
"stability": "experimental",
|
|
2820
|
+
"summary": "The shell to use for scripts run with the pnpm run command."
|
|
2821
|
+
},
|
|
2822
|
+
"immutable": true,
|
|
2823
|
+
"locationInModule": {
|
|
2824
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2825
|
+
"line": 518
|
|
2826
|
+
},
|
|
2827
|
+
"name": "scriptShell",
|
|
2828
|
+
"optional": true,
|
|
2829
|
+
"type": {
|
|
2830
|
+
"primitive": "string"
|
|
2831
|
+
}
|
|
2832
|
+
},
|
|
2833
|
+
{
|
|
2834
|
+
"abstract": true,
|
|
2835
|
+
"docs": {
|
|
2836
|
+
"stability": "experimental",
|
|
2837
|
+
"summary": "By default, pnpm creates a semistrict node_modules, meaning dependencies have access to undeclared dependencies but modules outside of node_modules do not."
|
|
2838
|
+
},
|
|
2839
|
+
"immutable": true,
|
|
2840
|
+
"locationInModule": {
|
|
2841
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2842
|
+
"line": 122
|
|
2843
|
+
},
|
|
2844
|
+
"name": "shamefullyHoist",
|
|
2845
|
+
"optional": true,
|
|
2846
|
+
"type": {
|
|
2847
|
+
"primitive": "boolean"
|
|
2848
|
+
}
|
|
2849
|
+
},
|
|
2850
|
+
{
|
|
2851
|
+
"abstract": true,
|
|
2852
|
+
"docs": {
|
|
2853
|
+
"stability": "experimental",
|
|
2854
|
+
"summary": "If this is enabled, pnpm creates a single pnpm-lock.yaml file in the root of the workspace."
|
|
2855
|
+
},
|
|
2856
|
+
"immutable": true,
|
|
2857
|
+
"locationInModule": {
|
|
2858
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2859
|
+
"line": 386
|
|
2860
|
+
},
|
|
2861
|
+
"name": "sharedWorkspaceLockfile",
|
|
2862
|
+
"optional": true,
|
|
2863
|
+
"type": {
|
|
2864
|
+
"primitive": "boolean"
|
|
2865
|
+
}
|
|
2866
|
+
},
|
|
2867
|
+
{
|
|
2868
|
+
"abstract": true,
|
|
2869
|
+
"docs": {
|
|
2870
|
+
"stability": "experimental",
|
|
2871
|
+
"summary": "When true, pnpm will use a JavaScript implementation of a bash-like shell to execute scripts."
|
|
2872
|
+
},
|
|
2873
|
+
"immutable": true,
|
|
2874
|
+
"locationInModule": {
|
|
2875
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2876
|
+
"line": 522
|
|
2877
|
+
},
|
|
2878
|
+
"name": "shellEmulator",
|
|
2879
|
+
"optional": true,
|
|
2880
|
+
"type": {
|
|
2881
|
+
"primitive": "boolean"
|
|
2882
|
+
}
|
|
2883
|
+
},
|
|
2884
|
+
{
|
|
2885
|
+
"abstract": true,
|
|
2886
|
+
"docs": {
|
|
2887
|
+
"stability": "experimental",
|
|
2888
|
+
"summary": "Use and cache the results of (pre/post)install hooks."
|
|
2889
|
+
},
|
|
2890
|
+
"immutable": true,
|
|
2891
|
+
"locationInModule": {
|
|
2892
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2893
|
+
"line": 338
|
|
2894
|
+
},
|
|
2895
|
+
"name": "sideEffectsCache",
|
|
2896
|
+
"optional": true,
|
|
2897
|
+
"type": {
|
|
2898
|
+
"primitive": "boolean"
|
|
2899
|
+
}
|
|
2900
|
+
},
|
|
2901
|
+
{
|
|
2902
|
+
"abstract": true,
|
|
2903
|
+
"docs": {
|
|
2904
|
+
"stability": "experimental",
|
|
2905
|
+
"summary": "Only use the side effects cache if present, do not create it for new packages."
|
|
2906
|
+
},
|
|
2907
|
+
"immutable": true,
|
|
2908
|
+
"locationInModule": {
|
|
2909
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2910
|
+
"line": 342
|
|
2911
|
+
},
|
|
2912
|
+
"name": "sideEffectsCacheReadonly",
|
|
2913
|
+
"optional": true,
|
|
2914
|
+
"type": {
|
|
2915
|
+
"primitive": "boolean"
|
|
2916
|
+
}
|
|
2917
|
+
},
|
|
2918
|
+
{
|
|
2919
|
+
"abstract": true,
|
|
2920
|
+
"docs": {
|
|
2921
|
+
"stability": "experimental",
|
|
2922
|
+
"summary": "The location where all the packages are saved on the disk."
|
|
2923
|
+
},
|
|
2924
|
+
"immutable": true,
|
|
2925
|
+
"locationInModule": {
|
|
2926
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2927
|
+
"line": 438
|
|
2928
|
+
},
|
|
2929
|
+
"name": "stateDir",
|
|
2930
|
+
"optional": true,
|
|
2931
|
+
"type": {
|
|
2932
|
+
"primitive": "string"
|
|
2933
|
+
}
|
|
2934
|
+
},
|
|
2935
|
+
{
|
|
2936
|
+
"abstract": true,
|
|
2937
|
+
"docs": {
|
|
2938
|
+
"stability": "experimental",
|
|
2939
|
+
"summary": "The location where all the packages are saved on the disk."
|
|
2940
|
+
},
|
|
2941
|
+
"immutable": true,
|
|
2942
|
+
"locationInModule": {
|
|
2943
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2944
|
+
"line": 162
|
|
2945
|
+
},
|
|
2946
|
+
"name": "storeDir",
|
|
2947
|
+
"optional": true,
|
|
2948
|
+
"type": {
|
|
2949
|
+
"primitive": "string"
|
|
2950
|
+
}
|
|
2951
|
+
},
|
|
2952
|
+
{
|
|
2953
|
+
"abstract": true,
|
|
2954
|
+
"docs": {
|
|
2955
|
+
"stability": "experimental",
|
|
2956
|
+
"summary": "When strictDepBuilds is enabled, the installation will exit with a non-zero exit code if any dependencies have unreviewed build scripts (aka postinstall scripts)."
|
|
2957
|
+
},
|
|
2958
|
+
"immutable": true,
|
|
2959
|
+
"locationInModule": {
|
|
2960
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2961
|
+
"line": 358
|
|
2962
|
+
},
|
|
2963
|
+
"name": "strictDepBuilds",
|
|
2964
|
+
"optional": true,
|
|
2965
|
+
"type": {
|
|
2966
|
+
"primitive": "boolean"
|
|
2967
|
+
}
|
|
2968
|
+
},
|
|
2969
|
+
{
|
|
2970
|
+
"abstract": true,
|
|
2971
|
+
"docs": {
|
|
2972
|
+
"stability": "experimental",
|
|
2973
|
+
"summary": "If this is enabled, commands will fail if there is a missing or invalid peer dependency in the tree."
|
|
2974
|
+
},
|
|
2975
|
+
"immutable": true,
|
|
2976
|
+
"locationInModule": {
|
|
2977
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2978
|
+
"line": 282
|
|
2979
|
+
},
|
|
2980
|
+
"name": "strictPeerDependencies",
|
|
2981
|
+
"optional": true,
|
|
2982
|
+
"type": {
|
|
2983
|
+
"primitive": "boolean"
|
|
2984
|
+
}
|
|
2985
|
+
},
|
|
2986
|
+
{
|
|
2987
|
+
"abstract": true,
|
|
2988
|
+
"docs": {
|
|
2989
|
+
"stability": "experimental",
|
|
2990
|
+
"summary": "Whether or not to do SSL key validation when making requests to the registry via HTTPS."
|
|
2991
|
+
},
|
|
2992
|
+
"immutable": true,
|
|
2993
|
+
"locationInModule": {
|
|
2994
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
2995
|
+
"line": 246
|
|
2996
|
+
},
|
|
2997
|
+
"name": "strictSsl",
|
|
2998
|
+
"optional": true,
|
|
2999
|
+
"type": {
|
|
3000
|
+
"primitive": "boolean"
|
|
3001
|
+
}
|
|
3002
|
+
},
|
|
3003
|
+
{
|
|
3004
|
+
"abstract": true,
|
|
3005
|
+
"docs": {
|
|
3006
|
+
"stability": "experimental",
|
|
3007
|
+
"summary": "Some registries allow the exact same content to be published under different package names and/or versions."
|
|
3008
|
+
},
|
|
3009
|
+
"immutable": true,
|
|
3010
|
+
"locationInModule": {
|
|
3011
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3012
|
+
"line": 170
|
|
3013
|
+
},
|
|
3014
|
+
"name": "strictStorePkgContentCheck",
|
|
3015
|
+
"optional": true,
|
|
3016
|
+
"type": {
|
|
3017
|
+
"primitive": "boolean"
|
|
3018
|
+
}
|
|
3019
|
+
},
|
|
3020
|
+
{
|
|
3021
|
+
"abstract": true,
|
|
3022
|
+
"docs": {
|
|
3023
|
+
"stability": "experimental",
|
|
3024
|
+
"summary": "Specifies architectures for which you'd like to install optional dependencies, even if they don't match the architecture of the system running the install."
|
|
3025
|
+
},
|
|
3026
|
+
"immutable": true,
|
|
3027
|
+
"locationInModule": {
|
|
3028
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3029
|
+
"line": 97
|
|
3030
|
+
},
|
|
3031
|
+
"name": "supportedArchitectures",
|
|
3032
|
+
"optional": true,
|
|
3033
|
+
"type": {
|
|
3034
|
+
"fqn": "@alma-cdk/construct-library.SupportedArchitectures"
|
|
3035
|
+
}
|
|
3036
|
+
},
|
|
3037
|
+
{
|
|
3038
|
+
"abstract": true,
|
|
3039
|
+
"docs": {
|
|
3040
|
+
"remarks": "It is a useful setting together with nodeLinker=pnp.",
|
|
3041
|
+
"stability": "experimental",
|
|
3042
|
+
"summary": "When symlink is set to false, pnpm creates a virtual store directory without any symlinks."
|
|
3043
|
+
},
|
|
3044
|
+
"immutable": true,
|
|
3045
|
+
"locationInModule": {
|
|
3046
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3047
|
+
"line": 134
|
|
3048
|
+
},
|
|
3049
|
+
"name": "symlink",
|
|
3050
|
+
"optional": true,
|
|
3051
|
+
"type": {
|
|
3052
|
+
"primitive": "boolean"
|
|
3053
|
+
}
|
|
3054
|
+
},
|
|
3055
|
+
{
|
|
3056
|
+
"abstract": true,
|
|
3057
|
+
"docs": {
|
|
3058
|
+
"stability": "experimental",
|
|
3059
|
+
"summary": "Injected workspace dependencies are collections of hardlinks, which don't add or remove the files when their sources change."
|
|
3060
|
+
},
|
|
3061
|
+
"immutable": true,
|
|
3062
|
+
"locationInModule": {
|
|
3063
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3064
|
+
"line": 378
|
|
3065
|
+
},
|
|
3066
|
+
"name": "syncInjectedDepsAfterScripts",
|
|
3067
|
+
"optional": true,
|
|
3068
|
+
"type": {
|
|
3069
|
+
"collection": {
|
|
3070
|
+
"elementtype": {
|
|
3071
|
+
"primitive": "string"
|
|
3072
|
+
},
|
|
3073
|
+
"kind": "array"
|
|
3074
|
+
}
|
|
3075
|
+
}
|
|
3076
|
+
},
|
|
3077
|
+
{
|
|
3078
|
+
"abstract": true,
|
|
3079
|
+
"docs": {
|
|
3080
|
+
"stability": "experimental",
|
|
3081
|
+
"summary": "If you pnpm add a package and you don't provide a specific version, then it will install the package at the version registered under the tag from this setting."
|
|
3082
|
+
},
|
|
3083
|
+
"immutable": true,
|
|
3084
|
+
"locationInModule": {
|
|
3085
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3086
|
+
"line": 426
|
|
3087
|
+
},
|
|
3088
|
+
"name": "tag",
|
|
3089
|
+
"optional": true,
|
|
3090
|
+
"type": {
|
|
3091
|
+
"primitive": "string"
|
|
3092
|
+
}
|
|
3093
|
+
},
|
|
3094
|
+
{
|
|
3095
|
+
"abstract": true,
|
|
3096
|
+
"docs": {
|
|
3097
|
+
"remarks": "For example, if a package was previously published by a trusted publisher but now only has provenance or no trust evidence, installation will fail. This helps prevent installing potentially compromised versions.",
|
|
3098
|
+
"stability": "experimental",
|
|
3099
|
+
"summary": "When set to no-downgrade, pnpm will fail if a package's trust level has decreased compared to previous releases."
|
|
3100
|
+
},
|
|
3101
|
+
"immutable": true,
|
|
3102
|
+
"locationInModule": {
|
|
3103
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3104
|
+
"line": 542
|
|
3105
|
+
},
|
|
3106
|
+
"name": "trustPolicy",
|
|
3107
|
+
"optional": true,
|
|
3108
|
+
"type": {
|
|
3109
|
+
"primitive": "string"
|
|
3110
|
+
}
|
|
3111
|
+
},
|
|
3112
|
+
{
|
|
3113
|
+
"abstract": true,
|
|
3114
|
+
"docs": {
|
|
3115
|
+
"stability": "experimental",
|
|
3116
|
+
"summary": "You can now list one or more specific packages or versions that pnpm should allow to install, even if those packages don't satisfy the trust policy requirement."
|
|
3117
|
+
},
|
|
3118
|
+
"immutable": true,
|
|
3119
|
+
"locationInModule": {
|
|
3120
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3121
|
+
"line": 546
|
|
3122
|
+
},
|
|
3123
|
+
"name": "trustPolicyExclude",
|
|
3124
|
+
"optional": true,
|
|
3125
|
+
"type": {
|
|
3126
|
+
"collection": {
|
|
3127
|
+
"elementtype": {
|
|
3128
|
+
"primitive": "string"
|
|
3129
|
+
},
|
|
3130
|
+
"kind": "array"
|
|
3131
|
+
}
|
|
3132
|
+
}
|
|
3133
|
+
},
|
|
3134
|
+
{
|
|
3135
|
+
"abstract": true,
|
|
3136
|
+
"docs": {
|
|
3137
|
+
"remarks": "This is useful when enabling strict trust policies, as it allows older versions of packages (which may lack a process for publishing with signatures or provenance) to be installed without manual exclusion, assuming they are safe due to their age.",
|
|
3138
|
+
"stability": "experimental",
|
|
3139
|
+
"summary": "Allows ignoring the trust policy check for packages published more than the specified number of minutes ago."
|
|
3140
|
+
},
|
|
3141
|
+
"immutable": true,
|
|
3142
|
+
"locationInModule": {
|
|
3143
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3144
|
+
"line": 558
|
|
3145
|
+
},
|
|
3146
|
+
"name": "trustPolicyIgnoreAfter",
|
|
3147
|
+
"optional": true,
|
|
3148
|
+
"type": {
|
|
3149
|
+
"primitive": "number"
|
|
3150
|
+
}
|
|
3151
|
+
},
|
|
3152
|
+
{
|
|
3153
|
+
"abstract": true,
|
|
3154
|
+
"docs": {
|
|
3155
|
+
"remarks": "If set explicitly to false, then installing as a non-root user will fail.",
|
|
3156
|
+
"stability": "experimental",
|
|
3157
|
+
"summary": "Set to true to enable UID/GID switching when running package scripts."
|
|
3158
|
+
},
|
|
3159
|
+
"immutable": true,
|
|
3160
|
+
"locationInModule": {
|
|
3161
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3162
|
+
"line": 346
|
|
3163
|
+
},
|
|
3164
|
+
"name": "unsafePerm",
|
|
3165
|
+
"optional": true,
|
|
3166
|
+
"type": {
|
|
3167
|
+
"primitive": "boolean"
|
|
3168
|
+
}
|
|
3169
|
+
},
|
|
3170
|
+
{
|
|
3171
|
+
"abstract": true,
|
|
3172
|
+
"docs": {
|
|
3173
|
+
"stability": "experimental"
|
|
3174
|
+
},
|
|
3175
|
+
"immutable": true,
|
|
3176
|
+
"locationInModule": {
|
|
3177
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3178
|
+
"line": 84
|
|
3179
|
+
},
|
|
3180
|
+
"name": "updateConfig",
|
|
3181
|
+
"optional": true,
|
|
3182
|
+
"type": {
|
|
3183
|
+
"fqn": "@alma-cdk/construct-library.UpdateConfig"
|
|
3184
|
+
}
|
|
3185
|
+
},
|
|
3186
|
+
{
|
|
3187
|
+
"abstract": true,
|
|
3188
|
+
"docs": {
|
|
3189
|
+
"stability": "experimental",
|
|
3190
|
+
"summary": "When true, pnpm will check for updates to the installed packages and notify the user."
|
|
3191
|
+
},
|
|
3192
|
+
"immutable": true,
|
|
3193
|
+
"locationInModule": {
|
|
3194
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3195
|
+
"line": 450
|
|
3196
|
+
},
|
|
3197
|
+
"name": "updateNotifier",
|
|
3198
|
+
"optional": true,
|
|
3199
|
+
"type": {
|
|
3200
|
+
"primitive": "boolean"
|
|
3201
|
+
}
|
|
3202
|
+
},
|
|
3203
|
+
{
|
|
3204
|
+
"abstract": true,
|
|
3205
|
+
"docs": {
|
|
3206
|
+
"stability": "experimental",
|
|
3207
|
+
"summary": "Experimental option that enables beta features of the CLI."
|
|
3208
|
+
},
|
|
3209
|
+
"immutable": true,
|
|
3210
|
+
"locationInModule": {
|
|
3211
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3212
|
+
"line": 298
|
|
3213
|
+
},
|
|
3214
|
+
"name": "useBetaCli",
|
|
3215
|
+
"optional": true,
|
|
3216
|
+
"type": {
|
|
3217
|
+
"primitive": "boolean"
|
|
3218
|
+
}
|
|
3219
|
+
},
|
|
3220
|
+
{
|
|
3221
|
+
"abstract": true,
|
|
3222
|
+
"docs": {
|
|
3223
|
+
"stability": "experimental",
|
|
3224
|
+
"summary": "Specifies which exact Node.js version should be used for the project's runtime."
|
|
3225
|
+
},
|
|
3226
|
+
"immutable": true,
|
|
3227
|
+
"locationInModule": {
|
|
3228
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3229
|
+
"line": 362
|
|
3230
|
+
},
|
|
3231
|
+
"name": "useNodeVersion",
|
|
3232
|
+
"optional": true,
|
|
3233
|
+
"type": {
|
|
3234
|
+
"primitive": "string"
|
|
3235
|
+
}
|
|
3236
|
+
},
|
|
3237
|
+
{
|
|
3238
|
+
"abstract": true,
|
|
3239
|
+
"docs": {
|
|
3240
|
+
"stability": "experimental",
|
|
3241
|
+
"summary": "When true, all the output is written to stderr."
|
|
3242
|
+
},
|
|
3243
|
+
"immutable": true,
|
|
3244
|
+
"locationInModule": {
|
|
3245
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3246
|
+
"line": 446
|
|
3247
|
+
},
|
|
3248
|
+
"name": "useStderr",
|
|
3249
|
+
"optional": true,
|
|
3250
|
+
"type": {
|
|
3251
|
+
"primitive": "boolean"
|
|
3252
|
+
}
|
|
3253
|
+
},
|
|
3254
|
+
{
|
|
3255
|
+
"abstract": true,
|
|
3256
|
+
"docs": {
|
|
3257
|
+
"stability": "experimental",
|
|
3258
|
+
"summary": "This setting allows the checking of the state of dependencies before running scripts."
|
|
3259
|
+
},
|
|
3260
|
+
"immutable": true,
|
|
3261
|
+
"locationInModule": {
|
|
3262
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3263
|
+
"line": 354
|
|
3264
|
+
},
|
|
3265
|
+
"name": "verifyDepsBeforeRun",
|
|
3266
|
+
"optional": true,
|
|
3267
|
+
"type": {
|
|
3268
|
+
"union": {
|
|
3269
|
+
"types": [
|
|
3270
|
+
{
|
|
3271
|
+
"primitive": "boolean"
|
|
3272
|
+
},
|
|
3273
|
+
{
|
|
3274
|
+
"primitive": "string"
|
|
3275
|
+
}
|
|
3276
|
+
]
|
|
3277
|
+
}
|
|
3278
|
+
}
|
|
3279
|
+
},
|
|
3280
|
+
{
|
|
3281
|
+
"abstract": true,
|
|
3282
|
+
"docs": {
|
|
3283
|
+
"stability": "experimental",
|
|
3284
|
+
"summary": "By default, if a file in the store has been modified, the content of this file is checked before linking it to a project's node_modules."
|
|
3285
|
+
},
|
|
3286
|
+
"immutable": true,
|
|
3287
|
+
"locationInModule": {
|
|
3288
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3289
|
+
"line": 166
|
|
3290
|
+
},
|
|
3291
|
+
"name": "verifyStoreIntegrity",
|
|
3292
|
+
"optional": true,
|
|
3293
|
+
"type": {
|
|
3294
|
+
"primitive": "boolean"
|
|
3295
|
+
}
|
|
3296
|
+
},
|
|
3297
|
+
{
|
|
3298
|
+
"abstract": true,
|
|
3299
|
+
"docs": {
|
|
3300
|
+
"stability": "experimental",
|
|
3301
|
+
"summary": "The directory with links to the store."
|
|
3302
|
+
},
|
|
3303
|
+
"immutable": true,
|
|
3304
|
+
"locationInModule": {
|
|
3305
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3306
|
+
"line": 142
|
|
3307
|
+
},
|
|
3308
|
+
"name": "virtualStoreDir",
|
|
3309
|
+
"optional": true,
|
|
3310
|
+
"type": {
|
|
3311
|
+
"primitive": "string"
|
|
3312
|
+
}
|
|
3313
|
+
},
|
|
3314
|
+
{
|
|
3315
|
+
"abstract": true,
|
|
3316
|
+
"docs": {
|
|
3317
|
+
"stability": "experimental",
|
|
3318
|
+
"summary": "Sets the maximum allowed length of directory names inside the virtual store directory (node_modules/.pnpm)."
|
|
3319
|
+
},
|
|
3320
|
+
"immutable": true,
|
|
3321
|
+
"locationInModule": {
|
|
3322
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3323
|
+
"line": 146
|
|
3324
|
+
},
|
|
3325
|
+
"name": "virtualStoreDirMaxLength",
|
|
3326
|
+
"optional": true,
|
|
3327
|
+
"type": {
|
|
3328
|
+
"primitive": "number"
|
|
3329
|
+
}
|
|
3330
|
+
},
|
|
3331
|
+
{
|
|
3332
|
+
"abstract": true,
|
|
3333
|
+
"docs": {
|
|
3334
|
+
"remarks": "For unlimited concurrency use Infinity. You can set the value to <= 0 and it will use amount of CPU cores of the host minus the absolute value of the provided number as: max(1, (number of cores) - abs(workspaceConcurrency)).",
|
|
3335
|
+
"stability": "experimental",
|
|
3336
|
+
"summary": "Set the maximum number of tasks to run simultaneously."
|
|
3337
|
+
},
|
|
3338
|
+
"immutable": true,
|
|
3339
|
+
"locationInModule": {
|
|
3340
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3341
|
+
"line": 410
|
|
3342
|
+
},
|
|
3343
|
+
"name": "workspaceConcurrency",
|
|
3344
|
+
"optional": true,
|
|
3345
|
+
"type": {
|
|
3346
|
+
"primitive": "number"
|
|
3347
|
+
}
|
|
3348
|
+
}
|
|
3349
|
+
],
|
|
3350
|
+
"symbolId": "src/pnpm-workspace-schema:PnpmWorkspaceSpecification"
|
|
3351
|
+
},
|
|
3352
|
+
"@alma-cdk/construct-library.SupportedArchitectures": {
|
|
3353
|
+
"assembly": "@alma-cdk/construct-library",
|
|
3354
|
+
"datatype": true,
|
|
3355
|
+
"docs": {
|
|
3356
|
+
"stability": "experimental"
|
|
3357
|
+
},
|
|
3358
|
+
"fqn": "@alma-cdk/construct-library.SupportedArchitectures",
|
|
3359
|
+
"kind": "interface",
|
|
3360
|
+
"locationInModule": {
|
|
3361
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3362
|
+
"line": 604
|
|
3363
|
+
},
|
|
3364
|
+
"name": "SupportedArchitectures",
|
|
3365
|
+
"properties": [
|
|
3366
|
+
{
|
|
3367
|
+
"abstract": true,
|
|
3368
|
+
"docs": {
|
|
3369
|
+
"stability": "experimental"
|
|
3370
|
+
},
|
|
3371
|
+
"immutable": true,
|
|
3372
|
+
"locationInModule": {
|
|
3373
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3374
|
+
"line": 606
|
|
3375
|
+
},
|
|
3376
|
+
"name": "cpu",
|
|
3377
|
+
"optional": true,
|
|
3378
|
+
"type": {
|
|
3379
|
+
"collection": {
|
|
3380
|
+
"elementtype": {
|
|
3381
|
+
"primitive": "string"
|
|
3382
|
+
},
|
|
3383
|
+
"kind": "array"
|
|
3384
|
+
}
|
|
3385
|
+
}
|
|
3386
|
+
},
|
|
3387
|
+
{
|
|
3388
|
+
"abstract": true,
|
|
3389
|
+
"docs": {
|
|
3390
|
+
"stability": "experimental"
|
|
3391
|
+
},
|
|
3392
|
+
"immutable": true,
|
|
3393
|
+
"locationInModule": {
|
|
3394
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3395
|
+
"line": 607
|
|
3396
|
+
},
|
|
3397
|
+
"name": "libc",
|
|
3398
|
+
"optional": true,
|
|
3399
|
+
"type": {
|
|
3400
|
+
"collection": {
|
|
3401
|
+
"elementtype": {
|
|
3402
|
+
"primitive": "string"
|
|
3403
|
+
},
|
|
3404
|
+
"kind": "array"
|
|
3405
|
+
}
|
|
3406
|
+
}
|
|
3407
|
+
},
|
|
3408
|
+
{
|
|
3409
|
+
"abstract": true,
|
|
3410
|
+
"docs": {
|
|
3411
|
+
"stability": "experimental"
|
|
3412
|
+
},
|
|
3413
|
+
"immutable": true,
|
|
3414
|
+
"locationInModule": {
|
|
3415
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3416
|
+
"line": 605
|
|
3417
|
+
},
|
|
3418
|
+
"name": "os",
|
|
3419
|
+
"optional": true,
|
|
3420
|
+
"type": {
|
|
3421
|
+
"collection": {
|
|
3422
|
+
"elementtype": {
|
|
3423
|
+
"primitive": "string"
|
|
3424
|
+
},
|
|
3425
|
+
"kind": "array"
|
|
3426
|
+
}
|
|
3427
|
+
}
|
|
3428
|
+
}
|
|
3429
|
+
],
|
|
3430
|
+
"symbolId": "src/pnpm-workspace-schema:SupportedArchitectures"
|
|
3431
|
+
},
|
|
3432
|
+
"@alma-cdk/construct-library.UpdateConfig": {
|
|
3433
|
+
"assembly": "@alma-cdk/construct-library",
|
|
3434
|
+
"datatype": true,
|
|
3435
|
+
"docs": {
|
|
3436
|
+
"stability": "experimental"
|
|
3437
|
+
},
|
|
3438
|
+
"fqn": "@alma-cdk/construct-library.UpdateConfig",
|
|
3439
|
+
"kind": "interface",
|
|
3440
|
+
"locationInModule": {
|
|
3441
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3442
|
+
"line": 597
|
|
3443
|
+
},
|
|
3444
|
+
"name": "UpdateConfig",
|
|
3445
|
+
"properties": [
|
|
3446
|
+
{
|
|
3447
|
+
"abstract": true,
|
|
3448
|
+
"docs": {
|
|
3449
|
+
"stability": "experimental"
|
|
3450
|
+
},
|
|
3451
|
+
"immutable": true,
|
|
3452
|
+
"locationInModule": {
|
|
3453
|
+
"filename": "src/pnpm-workspace-schema.d.ts",
|
|
3454
|
+
"line": 598
|
|
3455
|
+
},
|
|
3456
|
+
"name": "ignoreDependencies",
|
|
3457
|
+
"optional": true,
|
|
3458
|
+
"type": {
|
|
3459
|
+
"collection": {
|
|
3460
|
+
"elementtype": {
|
|
3461
|
+
"primitive": "string"
|
|
3462
|
+
},
|
|
3463
|
+
"kind": "array"
|
|
3464
|
+
}
|
|
3465
|
+
}
|
|
3466
|
+
}
|
|
3467
|
+
],
|
|
3468
|
+
"symbolId": "src/pnpm-workspace-schema:UpdateConfig"
|
|
476
3469
|
}
|
|
477
3470
|
},
|
|
478
|
-
"version": "0.0.
|
|
479
|
-
"fingerprint": "
|
|
3471
|
+
"version": "0.0.14",
|
|
3472
|
+
"fingerprint": "jcB1XrO5KMMRTaLRW7WpUXjSsSHSv+FIea/cW0WobtY="
|
|
480
3473
|
}
|