projen 0.34.1 → 0.34.5

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.
Files changed (95) hide show
  1. package/.jsii +160 -124
  2. package/API.md +2 -0
  3. package/lib/awscdk/auto-discover.js +1 -1
  4. package/lib/awscdk/cdk-config.js +1 -1
  5. package/lib/awscdk/cdk-tasks.js +1 -1
  6. package/lib/awscdk/java-app.js +1 -1
  7. package/lib/awscdk/lambda-function.js +11 -10
  8. package/lib/awscdk-app-ts.js +1 -1
  9. package/lib/awscdk-construct.js +2 -2
  10. package/lib/cdk8s-app-ts.js +1 -1
  11. package/lib/cdk8s-construct.js +1 -1
  12. package/lib/cdktf-construct.js +1 -1
  13. package/lib/component.js +1 -1
  14. package/lib/construct-lib.js +1 -1
  15. package/lib/deps/dependencies.js +1 -1
  16. package/lib/dev-env.js +1 -1
  17. package/lib/docker-compose.js +2 -2
  18. package/lib/eslint.js +1 -1
  19. package/lib/file.js +1 -1
  20. package/lib/git/gitattributes.js +1 -1
  21. package/lib/github/auto-approve.js +1 -1
  22. package/lib/github/auto-merge.js +1 -1
  23. package/lib/github/dependabot.js +1 -1
  24. package/lib/github/github.js +1 -1
  25. package/lib/github/mergify.js +1 -1
  26. package/lib/github/pr-template.js +1 -1
  27. package/lib/github/pull-request-lint.js +1 -1
  28. package/lib/github/stale.js +1 -1
  29. package/lib/github/task-workflow.js +1 -1
  30. package/lib/github/workflows.js +1 -1
  31. package/lib/gitpod.js +1 -1
  32. package/lib/ignore-file.js +1 -1
  33. package/lib/ini.js +1 -1
  34. package/lib/java/java-project.js +1 -1
  35. package/lib/java/junit.js +1 -1
  36. package/lib/java/maven-compile.js +1 -1
  37. package/lib/java/maven-packaging.js +1 -1
  38. package/lib/java/maven-sample.js +1 -1
  39. package/lib/java/pom.js +1 -1
  40. package/lib/java/projenrc.js +1 -1
  41. package/lib/javascript/bundler.js +1 -1
  42. package/lib/javascript/npm-config.js +1 -1
  43. package/lib/javascript/projenrc.js +1 -1
  44. package/lib/jest.js +1 -1
  45. package/lib/jsii-project.js +1 -1
  46. package/lib/json/projenrc.js +1 -1
  47. package/lib/json.js +1 -1
  48. package/lib/license.js +1 -1
  49. package/lib/logger.js +1 -1
  50. package/lib/makefile.js +1 -1
  51. package/lib/node-package.d.ts +7 -0
  52. package/lib/node-package.js +9 -8
  53. package/lib/node-project.js +15 -14
  54. package/lib/object-file.js +1 -1
  55. package/lib/project-build.js +1 -1
  56. package/lib/project.js +2 -2
  57. package/lib/projects.js +1 -1
  58. package/lib/python/pip.js +1 -1
  59. package/lib/python/poetry.js +2 -2
  60. package/lib/python/projenrc.js +1 -1
  61. package/lib/python/pytest.js +1 -1
  62. package/lib/python/python-project.js +1 -1
  63. package/lib/python/python-sample.js +1 -1
  64. package/lib/python/requirements-file.js +1 -1
  65. package/lib/python/setuppy.js +1 -1
  66. package/lib/python/setuptools.js +1 -1
  67. package/lib/python/venv.js +1 -1
  68. package/lib/readme.js +1 -1
  69. package/lib/release/publisher.d.ts +7 -0
  70. package/lib/release/publisher.js +4 -3
  71. package/lib/release/release-trigger.js +1 -1
  72. package/lib/release/release.js +1 -1
  73. package/lib/sample-file.js +2 -2
  74. package/lib/semver.js +1 -1
  75. package/lib/source-code.js +1 -1
  76. package/lib/tasks/runtime.js +1 -1
  77. package/lib/tasks/task.js +1 -1
  78. package/lib/tasks/tasks.js +1 -1
  79. package/lib/textfile.js +1 -1
  80. package/lib/toml.js +1 -1
  81. package/lib/typescript/projenrc.js +1 -1
  82. package/lib/typescript-config.js +1 -1
  83. package/lib/typescript.js +3 -3
  84. package/lib/upgrade-dependencies.js +2 -2
  85. package/lib/version.js +1 -1
  86. package/lib/vscode/devcontainer.js +1 -1
  87. package/lib/vscode/launch-config.js +1 -1
  88. package/lib/vscode/vscode.js +1 -1
  89. package/lib/web/next.js +3 -3
  90. package/lib/web/postcss.js +1 -1
  91. package/lib/web/react.js +4 -4
  92. package/lib/web/tailwind.js +1 -1
  93. package/lib/xmlfile.js +1 -1
  94. package/lib/yaml.js +1 -1
  95. package/package.json +5 -5
package/.jsii CHANGED
@@ -28,7 +28,7 @@
28
28
  "stability": "experimental"
29
29
  },
30
30
  "homepage": "https://github.com/projen/projen.git",
31
- "jsiiVersion": "1.44.0 (build 5cf3021)",
31
+ "jsiiVersion": "1.44.1 (build 8a27521)",
32
32
  "license": "Apache-2.0",
33
33
  "metadata": {
34
34
  "jsii": {
@@ -1166,6 +1166,24 @@
1166
1166
  "primitive": "string"
1167
1167
  }
1168
1168
  },
1169
+ {
1170
+ "abstract": true,
1171
+ "docs": {
1172
+ "default": "undefined",
1173
+ "stability": "experimental",
1174
+ "summary": "ARN of AWS role to be assumed prior to get authorization token from AWS CodeArtifact This property must be specified only when publishing to AWS CodeArtifact (`registry` contains AWS CodeArtifact URL)."
1175
+ },
1176
+ "immutable": true,
1177
+ "locationInModule": {
1178
+ "filename": "src/node-package.ts",
1179
+ "line": 317
1180
+ },
1181
+ "name": "roleToAssume",
1182
+ "optional": true,
1183
+ "type": {
1184
+ "primitive": "string"
1185
+ }
1186
+ },
1169
1187
  {
1170
1188
  "abstract": true,
1171
1189
  "docs": {
@@ -9204,7 +9222,7 @@
9204
9222
  },
9205
9223
  "locationInModule": {
9206
9224
  "filename": "src/node-package.ts",
9207
- "line": 403
9225
+ "line": 411
9208
9226
  },
9209
9227
  "parameters": [
9210
9228
  {
@@ -9225,7 +9243,7 @@
9225
9243
  "kind": "class",
9226
9244
  "locationInModule": {
9227
9245
  "filename": "src/node-package.ts",
9228
- "line": 315
9246
+ "line": 323
9229
9247
  },
9230
9248
  "methods": [
9231
9249
  {
@@ -9234,7 +9252,7 @@
9234
9252
  },
9235
9253
  "locationInModule": {
9236
9254
  "filename": "src/node-package.ts",
9237
- "line": 581
9255
+ "line": 589
9238
9256
  },
9239
9257
  "name": "addBin",
9240
9258
  "parameters": [
@@ -9259,7 +9277,7 @@
9259
9277
  },
9260
9278
  "locationInModule": {
9261
9279
  "filename": "src/node-package.ts",
9262
- "line": 552
9280
+ "line": 560
9263
9281
  },
9264
9282
  "name": "addBundledDeps",
9265
9283
  "parameters": [
@@ -9284,7 +9302,7 @@
9284
9302
  },
9285
9303
  "locationInModule": {
9286
9304
  "filename": "src/node-package.ts",
9287
- "line": 495
9305
+ "line": 503
9288
9306
  },
9289
9307
  "name": "addDeps",
9290
9308
  "parameters": [
@@ -9309,7 +9327,7 @@
9309
9327
  },
9310
9328
  "locationInModule": {
9311
9329
  "filename": "src/node-package.ts",
9312
- "line": 510
9330
+ "line": 518
9313
9331
  },
9314
9332
  "name": "addDevDeps",
9315
9333
  "parameters": [
@@ -9334,7 +9352,7 @@
9334
9352
  },
9335
9353
  "locationInModule": {
9336
9354
  "filename": "src/node-package.ts",
9337
- "line": 567
9355
+ "line": 575
9338
9356
  },
9339
9357
  "name": "addEngine",
9340
9358
  "parameters": [
@@ -9368,7 +9386,7 @@
9368
9386
  },
9369
9387
  "locationInModule": {
9370
9388
  "filename": "src/node-package.ts",
9371
- "line": 621
9389
+ "line": 629
9372
9390
  },
9373
9391
  "name": "addField",
9374
9392
  "parameters": [
@@ -9399,7 +9417,7 @@
9399
9417
  },
9400
9418
  "locationInModule": {
9401
9419
  "filename": "src/node-package.ts",
9402
- "line": 575
9420
+ "line": 583
9403
9421
  },
9404
9422
  "name": "addKeywords",
9405
9423
  "parameters": [
@@ -9424,7 +9442,7 @@
9424
9442
  },
9425
9443
  "locationInModule": {
9426
9444
  "filename": "src/node-package.ts",
9427
- "line": 530
9445
+ "line": 538
9428
9446
  },
9429
9447
  "name": "addPeerDeps",
9430
9448
  "parameters": [
@@ -9449,7 +9467,7 @@
9449
9467
  },
9450
9468
  "locationInModule": {
9451
9469
  "filename": "src/node-package.ts",
9452
- "line": 629
9470
+ "line": 637
9453
9471
  },
9454
9472
  "name": "addVersion",
9455
9473
  "parameters": [
@@ -9472,7 +9490,7 @@
9472
9490
  },
9473
9491
  "locationInModule": {
9474
9492
  "filename": "src/node-package.ts",
9475
- "line": 611
9493
+ "line": 619
9476
9494
  },
9477
9495
  "name": "hasScript",
9478
9496
  "parameters": [
@@ -9500,7 +9518,7 @@
9500
9518
  },
9501
9519
  "locationInModule": {
9502
9520
  "filename": "src/node-package.ts",
9503
- "line": 698
9521
+ "line": 706
9504
9522
  },
9505
9523
  "name": "postSynthesize",
9506
9524
  "overrides": "projen.Component"
@@ -9512,7 +9530,7 @@
9512
9530
  },
9513
9531
  "locationInModule": {
9514
9532
  "filename": "src/node-package.ts",
9515
- "line": 693
9533
+ "line": 701
9516
9534
  },
9517
9535
  "name": "preSynthesize",
9518
9536
  "overrides": "projen.Component"
@@ -9524,7 +9542,7 @@
9524
9542
  },
9525
9543
  "locationInModule": {
9526
9544
  "filename": "src/node-package.ts",
9527
- "line": 601
9545
+ "line": 609
9528
9546
  },
9529
9547
  "name": "removeScript",
9530
9548
  "parameters": [
@@ -9546,7 +9564,7 @@
9546
9564
  },
9547
9565
  "locationInModule": {
9548
9566
  "filename": "src/node-package.ts",
9549
- "line": 650
9567
+ "line": 658
9550
9568
  },
9551
9569
  "name": "renderUpgradePackagesCommand",
9552
9570
  "parameters": [
@@ -9587,7 +9605,7 @@
9587
9605
  },
9588
9606
  "locationInModule": {
9589
9607
  "filename": "src/node-package.ts",
9590
- "line": 593
9608
+ "line": 601
9591
9609
  },
9592
9610
  "name": "setScript",
9593
9611
  "parameters": [
@@ -9622,7 +9640,7 @@
9622
9640
  "immutable": true,
9623
9641
  "locationInModule": {
9624
9642
  "filename": "src/node-package.ts",
9625
- "line": 330
9643
+ "line": 338
9626
9644
  },
9627
9645
  "name": "allowLibraryDependencies",
9628
9646
  "type": {
@@ -9637,7 +9655,7 @@
9637
9655
  "immutable": true,
9638
9656
  "locationInModule": {
9639
9657
  "filename": "src/node-package.ts",
9640
- "line": 325
9658
+ "line": 333
9641
9659
  },
9642
9660
  "name": "entrypoint",
9643
9661
  "type": {
@@ -9652,7 +9670,7 @@
9652
9670
  "immutable": true,
9653
9671
  "locationInModule": {
9654
9672
  "filename": "src/node-package.ts",
9655
- "line": 643
9673
+ "line": 651
9656
9674
  },
9657
9675
  "name": "installAndUpdateLockfileCommand",
9658
9676
  "type": {
@@ -9667,7 +9685,7 @@
9667
9685
  "immutable": true,
9668
9686
  "locationInModule": {
9669
9687
  "filename": "src/node-package.ts",
9670
- "line": 636
9688
+ "line": 644
9671
9689
  },
9672
9690
  "name": "installCommand",
9673
9691
  "type": {
@@ -9682,7 +9700,7 @@
9682
9700
  "immutable": true,
9683
9701
  "locationInModule": {
9684
9702
  "filename": "src/node-package.ts",
9685
- "line": 394
9703
+ "line": 402
9686
9704
  },
9687
9705
  "name": "lockFile",
9688
9706
  "type": {
@@ -9697,7 +9715,7 @@
9697
9715
  "immutable": true,
9698
9716
  "locationInModule": {
9699
9717
  "filename": "src/node-package.ts",
9700
- "line": 340
9718
+ "line": 348
9701
9719
  },
9702
9720
  "name": "manifest",
9703
9721
  "type": {
@@ -9712,7 +9730,7 @@
9712
9730
  "immutable": true,
9713
9731
  "locationInModule": {
9714
9732
  "filename": "src/node-package.ts",
9715
- "line": 389
9733
+ "line": 397
9716
9734
  },
9717
9735
  "name": "npmAccess",
9718
9736
  "type": {
@@ -9727,7 +9745,7 @@
9727
9745
  "immutable": true,
9728
9746
  "locationInModule": {
9729
9747
  "filename": "src/node-package.ts",
9730
- "line": 362
9748
+ "line": 370
9731
9749
  },
9732
9750
  "name": "npmDistTag",
9733
9751
  "type": {
@@ -9742,7 +9760,7 @@
9742
9760
  "immutable": true,
9743
9761
  "locationInModule": {
9744
9762
  "filename": "src/node-package.ts",
9745
- "line": 372
9763
+ "line": 380
9746
9764
  },
9747
9765
  "name": "npmRegistry",
9748
9766
  "type": {
@@ -9757,7 +9775,7 @@
9757
9775
  "immutable": true,
9758
9776
  "locationInModule": {
9759
9777
  "filename": "src/node-package.ts",
9760
- "line": 367
9778
+ "line": 375
9761
9779
  },
9762
9780
  "name": "npmRegistryUrl",
9763
9781
  "type": {
@@ -9772,7 +9790,7 @@
9772
9790
  "immutable": true,
9773
9791
  "locationInModule": {
9774
9792
  "filename": "src/node-package.ts",
9775
- "line": 335
9793
+ "line": 343
9776
9794
  },
9777
9795
  "name": "packageManager",
9778
9796
  "type": {
@@ -9787,7 +9805,7 @@
9787
9805
  "immutable": true,
9788
9806
  "locationInModule": {
9789
9807
  "filename": "src/node-package.ts",
9790
- "line": 320
9808
+ "line": 328
9791
9809
  },
9792
9810
  "name": "packageName",
9793
9811
  "type": {
@@ -9802,7 +9820,7 @@
9802
9820
  "immutable": true,
9803
9821
  "locationInModule": {
9804
9822
  "filename": "src/node-package.ts",
9805
- "line": 711
9823
+ "line": 719
9806
9824
  },
9807
9825
  "name": "projenCommand",
9808
9826
  "type": {
@@ -9818,7 +9836,7 @@
9818
9836
  "immutable": true,
9819
9837
  "locationInModule": {
9820
9838
  "filename": "src/node-package.ts",
9821
- "line": 384
9839
+ "line": 392
9822
9840
  },
9823
9841
  "name": "codeArtifactOptions",
9824
9842
  "optional": true,
@@ -9835,7 +9853,7 @@
9835
9853
  "immutable": true,
9836
9854
  "locationInModule": {
9837
9855
  "filename": "src/node-package.ts",
9838
- "line": 357
9856
+ "line": 365
9839
9857
  },
9840
9858
  "name": "license",
9841
9859
  "optional": true,
@@ -9852,7 +9870,7 @@
9852
9870
  "immutable": true,
9853
9871
  "locationInModule": {
9854
9872
  "filename": "src/node-package.ts",
9855
- "line": 352
9873
+ "line": 360
9856
9874
  },
9857
9875
  "name": "maxNodeVersion",
9858
9876
  "optional": true,
@@ -9869,7 +9887,7 @@
9869
9887
  "immutable": true,
9870
9888
  "locationInModule": {
9871
9889
  "filename": "src/node-package.ts",
9872
- "line": 346
9890
+ "line": 354
9873
9891
  },
9874
9892
  "name": "minNodeVersion",
9875
9893
  "optional": true,
@@ -9885,7 +9903,7 @@
9885
9903
  "immutable": true,
9886
9904
  "locationInModule": {
9887
9905
  "filename": "src/node-package.ts",
9888
- "line": 377
9906
+ "line": 385
9889
9907
  },
9890
9908
  "name": "npmTokenSecret",
9891
9909
  "optional": true,
@@ -9906,7 +9924,7 @@
9906
9924
  "kind": "enum",
9907
9925
  "locationInModule": {
9908
9926
  "filename": "src/node-package.ts",
9909
- "line": 1082
9927
+ "line": 1093
9910
9928
  },
9911
9929
  "members": [
9912
9930
  {
@@ -10614,7 +10632,7 @@
10614
10632
  },
10615
10633
  "locationInModule": {
10616
10634
  "filename": "src/node-project.ts",
10617
- "line": 739
10635
+ "line": 740
10618
10636
  },
10619
10637
  "name": "addBins",
10620
10638
  "parameters": [
@@ -10639,7 +10657,7 @@
10639
10657
  },
10640
10658
  "locationInModule": {
10641
10659
  "filename": "src/node-project.ts",
10642
- "line": 892
10660
+ "line": 893
10643
10661
  },
10644
10662
  "name": "addBundledDeps",
10645
10663
  "parameters": [
@@ -10665,7 +10683,7 @@
10665
10683
  },
10666
10684
  "locationInModule": {
10667
10685
  "filename": "src/node-project.ts",
10668
- "line": 773
10686
+ "line": 774
10669
10687
  },
10670
10688
  "name": "addCompileCommand",
10671
10689
  "parameters": [
@@ -10686,7 +10704,7 @@
10686
10704
  },
10687
10705
  "locationInModule": {
10688
10706
  "filename": "src/node-project.ts",
10689
- "line": 846
10707
+ "line": 847
10690
10708
  },
10691
10709
  "name": "addDeps",
10692
10710
  "parameters": [
@@ -10711,7 +10729,7 @@
10711
10729
  },
10712
10730
  "locationInModule": {
10713
10731
  "filename": "src/node-project.ts",
10714
- "line": 859
10732
+ "line": 860
10715
10733
  },
10716
10734
  "name": "addDevDeps",
10717
10735
  "parameters": [
@@ -10736,7 +10754,7 @@
10736
10754
  },
10737
10755
  "locationInModule": {
10738
10756
  "filename": "src/node-project.ts",
10739
- "line": 793
10757
+ "line": 794
10740
10758
  },
10741
10759
  "name": "addFields",
10742
10760
  "parameters": [
@@ -10763,7 +10781,7 @@
10763
10781
  },
10764
10782
  "locationInModule": {
10765
10783
  "filename": "src/node-project.ts",
10766
- "line": 803
10784
+ "line": 804
10767
10785
  },
10768
10786
  "name": "addKeywords",
10769
10787
  "parameters": [
@@ -10788,7 +10806,7 @@
10788
10806
  },
10789
10807
  "locationInModule": {
10790
10808
  "filename": "src/node-project.ts",
10791
- "line": 896
10809
+ "line": 897
10792
10810
  },
10793
10811
  "name": "addPackageIgnore",
10794
10812
  "overrides": "projen.Project",
@@ -10809,7 +10827,7 @@
10809
10827
  },
10810
10828
  "locationInModule": {
10811
10829
  "filename": "src/node-project.ts",
10812
- "line": 876
10830
+ "line": 877
10813
10831
  },
10814
10832
  "name": "addPeerDeps",
10815
10833
  "parameters": [
@@ -10835,7 +10853,7 @@
10835
10853
  },
10836
10854
  "locationInModule": {
10837
10855
  "filename": "src/node-project.ts",
10838
- "line": 783
10856
+ "line": 784
10839
10857
  },
10840
10858
  "name": "addTestCommand",
10841
10859
  "parameters": [
@@ -10856,7 +10874,7 @@
10856
10874
  },
10857
10875
  "locationInModule": {
10858
10876
  "filename": "src/node-project.ts",
10859
- "line": 765
10877
+ "line": 766
10860
10878
  },
10861
10879
  "name": "hasScript",
10862
10880
  "parameters": [
@@ -10883,7 +10901,7 @@
10883
10901
  },
10884
10902
  "locationInModule": {
10885
10903
  "filename": "src/node-project.ts",
10886
- "line": 757
10904
+ "line": 758
10887
10905
  },
10888
10906
  "name": "removeScript",
10889
10907
  "parameters": [
@@ -10906,7 +10924,7 @@
10906
10924
  },
10907
10925
  "locationInModule": {
10908
10926
  "filename": "src/node-project.ts",
10909
- "line": 970
10927
+ "line": 971
10910
10928
  },
10911
10929
  "name": "runTaskCommand",
10912
10930
  "overrides": "projen.Project",
@@ -10934,7 +10952,7 @@
10934
10952
  },
10935
10953
  "locationInModule": {
10936
10954
  "filename": "src/node-project.ts",
10937
- "line": 749
10955
+ "line": 750
10938
10956
  },
10939
10957
  "name": "setScript",
10940
10958
  "parameters": [
@@ -11027,7 +11045,7 @@
11027
11045
  "immutable": true,
11028
11046
  "locationInModule": {
11029
11047
  "filename": "src/node-project.ts",
11030
- "line": 807
11048
+ "line": 808
11031
11049
  },
11032
11050
  "name": "installWorkflowSteps",
11033
11051
  "type": {
@@ -11959,7 +11977,7 @@
11959
11977
  "kind": "interface",
11960
11978
  "locationInModule": {
11961
11979
  "filename": "src/node-project.ts",
11962
- "line": 975
11980
+ "line": 976
11963
11981
  },
11964
11982
  "name": "NodeWorkflowSteps",
11965
11983
  "properties": [
@@ -11971,7 +11989,7 @@
11971
11989
  "immutable": true,
11972
11990
  "locationInModule": {
11973
11991
  "filename": "src/node-project.ts",
11974
- "line": 976
11992
+ "line": 977
11975
11993
  },
11976
11994
  "name": "antitamper",
11977
11995
  "type": {
@@ -11991,7 +12009,7 @@
11991
12009
  "immutable": true,
11992
12010
  "locationInModule": {
11993
12011
  "filename": "src/node-project.ts",
11994
- "line": 977
12012
+ "line": 978
11995
12013
  },
11996
12014
  "name": "install",
11997
12015
  "type": {
@@ -12016,7 +12034,7 @@
12016
12034
  "kind": "enum",
12017
12035
  "locationInModule": {
12018
12036
  "filename": "src/node-package.ts",
12019
- "line": 1102
12037
+ "line": 1113
12020
12038
  },
12021
12039
  "members": [
12022
12040
  {
@@ -12285,7 +12303,7 @@
12285
12303
  "kind": "interface",
12286
12304
  "locationInModule": {
12287
12305
  "filename": "src/node-package.ts",
12288
- "line": 1071
12306
+ "line": 1082
12289
12307
  },
12290
12308
  "name": "PeerDependencyOptions",
12291
12309
  "properties": [
@@ -12299,7 +12317,7 @@
12299
12317
  "immutable": true,
12300
12318
  "locationInModule": {
12301
12319
  "filename": "src/node-package.ts",
12302
- "line": 1076
12320
+ "line": 1087
12303
12321
  },
12304
12322
  "name": "pinnedDevDependency",
12305
12323
  "optional": true,
@@ -17804,7 +17822,7 @@
17804
17822
  },
17805
17823
  "locationInModule": {
17806
17824
  "filename": "src/awscdk/lambda-function.ts",
17807
- "line": 92
17825
+ "line": 94
17808
17826
  },
17809
17827
  "parameters": [
17810
17828
  {
@@ -17830,7 +17848,7 @@
17830
17848
  "kind": "class",
17831
17849
  "locationInModule": {
17832
17850
  "filename": "src/awscdk/lambda-function.ts",
17833
- "line": 85
17851
+ "line": 87
17834
17852
  },
17835
17853
  "name": "LambdaFunction",
17836
17854
  "namespace": "awscdk",
@@ -17848,7 +17866,7 @@
17848
17866
  "kind": "interface",
17849
17867
  "locationInModule": {
17850
17868
  "filename": "src/awscdk/lambda-function.ts",
17851
- "line": 14
17869
+ "line": 16
17852
17870
  },
17853
17871
  "name": "LambdaFunctionCommonOptions",
17854
17872
  "namespace": "awscdk",
@@ -17864,7 +17882,7 @@
17864
17882
  "immutable": true,
17865
17883
  "locationInModule": {
17866
17884
  "filename": "src/awscdk/lambda-function.ts",
17867
- "line": 30
17885
+ "line": 32
17868
17886
  },
17869
17887
  "name": "bundlingOptions",
17870
17888
  "optional": true,
@@ -17882,7 +17900,7 @@
17882
17900
  "immutable": true,
17883
17901
  "locationInModule": {
17884
17902
  "filename": "src/awscdk/lambda-function.ts",
17885
- "line": 20
17903
+ "line": 22
17886
17904
  },
17887
17905
  "name": "runtime",
17888
17906
  "optional": true,
@@ -17907,7 +17925,7 @@
17907
17925
  "kind": "interface",
17908
17926
  "locationInModule": {
17909
17927
  "filename": "src/awscdk/lambda-function.ts",
17910
- "line": 36
17928
+ "line": 38
17911
17929
  },
17912
17930
  "name": "LambdaFunctionOptions",
17913
17931
  "namespace": "awscdk",
@@ -17923,7 +17941,7 @@
17923
17941
  "immutable": true,
17924
17942
  "locationInModule": {
17925
17943
  "filename": "src/awscdk/lambda-function.ts",
17926
- "line": 45
17944
+ "line": 47
17927
17945
  },
17928
17946
  "name": "entrypoint",
17929
17947
  "type": {
@@ -17941,7 +17959,7 @@
17941
17959
  "immutable": true,
17942
17960
  "locationInModule": {
17943
17961
  "filename": "src/awscdk/lambda-function.ts",
17944
- "line": 54
17962
+ "line": 56
17945
17963
  },
17946
17964
  "name": "constructFile",
17947
17965
  "optional": true,
@@ -17959,7 +17977,7 @@
17959
17977
  "immutable": true,
17960
17978
  "locationInModule": {
17961
17979
  "filename": "src/awscdk/lambda-function.ts",
17962
- "line": 62
17980
+ "line": 64
17963
17981
  },
17964
17982
  "name": "constructName",
17965
17983
  "optional": true,
@@ -17980,7 +17998,7 @@
17980
17998
  "kind": "class",
17981
17999
  "locationInModule": {
17982
18000
  "filename": "src/awscdk/lambda-function.ts",
17983
- "line": 179
18001
+ "line": 181
17984
18002
  },
17985
18003
  "name": "LambdaRuntime",
17986
18004
  "namespace": "awscdk",
@@ -17994,7 +18012,7 @@
17994
18012
  "immutable": true,
17995
18013
  "locationInModule": {
17996
18014
  "filename": "src/awscdk/lambda-function.ts",
17997
- "line": 183
18015
+ "line": 185
17998
18016
  },
17999
18017
  "name": "NODEJS_10_X",
18000
18018
  "static": true,
@@ -18011,7 +18029,7 @@
18011
18029
  "immutable": true,
18012
18030
  "locationInModule": {
18013
18031
  "filename": "src/awscdk/lambda-function.ts",
18014
- "line": 188
18032
+ "line": 190
18015
18033
  },
18016
18034
  "name": "NODEJS_12_X",
18017
18035
  "static": true,
@@ -18028,7 +18046,7 @@
18028
18046
  "immutable": true,
18029
18047
  "locationInModule": {
18030
18048
  "filename": "src/awscdk/lambda-function.ts",
18031
- "line": 193
18049
+ "line": 195
18032
18050
  },
18033
18051
  "name": "NODEJS_14_X",
18034
18052
  "static": true,
@@ -18043,7 +18061,7 @@
18043
18061
  "immutable": true,
18044
18062
  "locationInModule": {
18045
18063
  "filename": "src/awscdk/lambda-function.ts",
18046
- "line": 195
18064
+ "line": 197
18047
18065
  },
18048
18066
  "name": "esbuildPlatform",
18049
18067
  "type": {
@@ -18058,7 +18076,7 @@
18058
18076
  "immutable": true,
18059
18077
  "locationInModule": {
18060
18078
  "filename": "src/awscdk/lambda-function.ts",
18061
- "line": 206
18079
+ "line": 208
18062
18080
  },
18063
18081
  "name": "esbuildTarget",
18064
18082
  "type": {
@@ -18073,7 +18091,7 @@
18073
18091
  "immutable": true,
18074
18092
  "locationInModule": {
18075
18093
  "filename": "src/awscdk/lambda-function.ts",
18076
- "line": 201
18094
+ "line": 203
18077
18095
  },
18078
18096
  "name": "functionRuntime",
18079
18097
  "type": {
@@ -29083,7 +29101,7 @@
29083
29101
  "kind": "interface",
29084
29102
  "locationInModule": {
29085
29103
  "filename": "src/release/publisher.ts",
29086
- "line": 494
29104
+ "line": 495
29087
29105
  },
29088
29106
  "name": "CodeArtifactOptions",
29089
29107
  "namespace": "release",
@@ -29099,7 +29117,7 @@
29099
29117
  "immutable": true,
29100
29118
  "locationInModule": {
29101
29119
  "filename": "src/release/publisher.ts",
29102
- "line": 501
29120
+ "line": 502
29103
29121
  },
29104
29122
  "name": "accessKeyIdSecret",
29105
29123
  "optional": true,
@@ -29107,6 +29125,24 @@
29107
29125
  "primitive": "string"
29108
29126
  }
29109
29127
  },
29128
+ {
29129
+ "abstract": true,
29130
+ "docs": {
29131
+ "default": "undefined",
29132
+ "stability": "experimental",
29133
+ "summary": "ARN of AWS role to be assumed prior to get authorization token from AWS CodeArtifact This property must be specified only when publishing to AWS CodeArtifact (`registry` contains AWS CodeArtifact URL)."
29134
+ },
29135
+ "immutable": true,
29136
+ "locationInModule": {
29137
+ "filename": "src/release/publisher.ts",
29138
+ "line": 518
29139
+ },
29140
+ "name": "roleToAssume",
29141
+ "optional": true,
29142
+ "type": {
29143
+ "primitive": "string"
29144
+ }
29145
+ },
29110
29146
  {
29111
29147
  "abstract": true,
29112
29148
  "docs": {
@@ -29118,7 +29154,7 @@
29118
29154
  "immutable": true,
29119
29155
  "locationInModule": {
29120
29156
  "filename": "src/release/publisher.ts",
29121
- "line": 509
29157
+ "line": 510
29122
29158
  },
29123
29159
  "name": "secretAccessKeySecret",
29124
29160
  "optional": true,
@@ -29140,7 +29176,7 @@
29140
29176
  "kind": "interface",
29141
29177
  "locationInModule": {
29142
29178
  "filename": "src/release/publisher.ts",
29143
- "line": 730
29179
+ "line": 739
29144
29180
  },
29145
29181
  "name": "GitHubReleasesPublishOptions",
29146
29182
  "namespace": "release",
@@ -29155,7 +29191,7 @@
29155
29191
  "immutable": true,
29156
29192
  "locationInModule": {
29157
29193
  "filename": "src/release/publisher.ts",
29158
- "line": 715
29194
+ "line": 724
29159
29195
  },
29160
29196
  "name": "changelogFile",
29161
29197
  "type": {
@@ -29172,7 +29208,7 @@
29172
29208
  "immutable": true,
29173
29209
  "locationInModule": {
29174
29210
  "filename": "src/release/publisher.ts",
29175
- "line": 708
29211
+ "line": 717
29176
29212
  },
29177
29213
  "name": "releaseTagFile",
29178
29214
  "type": {
@@ -29189,7 +29225,7 @@
29189
29225
  "immutable": true,
29190
29226
  "locationInModule": {
29191
29227
  "filename": "src/release/publisher.ts",
29192
- "line": 701
29228
+ "line": 710
29193
29229
  },
29194
29230
  "name": "versionFile",
29195
29231
  "type": {
@@ -29210,7 +29246,7 @@
29210
29246
  "kind": "interface",
29211
29247
  "locationInModule": {
29212
29248
  "filename": "src/release/publisher.ts",
29213
- "line": 735
29249
+ "line": 744
29214
29250
  },
29215
29251
  "name": "GitPublishOptions",
29216
29252
  "namespace": "release",
@@ -29225,7 +29261,7 @@
29225
29261
  "immutable": true,
29226
29262
  "locationInModule": {
29227
29263
  "filename": "src/release/publisher.ts",
29228
- "line": 715
29264
+ "line": 724
29229
29265
  },
29230
29266
  "name": "changelogFile",
29231
29267
  "type": {
@@ -29242,7 +29278,7 @@
29242
29278
  "immutable": true,
29243
29279
  "locationInModule": {
29244
29280
  "filename": "src/release/publisher.ts",
29245
- "line": 708
29281
+ "line": 717
29246
29282
  },
29247
29283
  "name": "releaseTagFile",
29248
29284
  "type": {
@@ -29259,7 +29295,7 @@
29259
29295
  "immutable": true,
29260
29296
  "locationInModule": {
29261
29297
  "filename": "src/release/publisher.ts",
29262
- "line": 701
29298
+ "line": 710
29263
29299
  },
29264
29300
  "name": "versionFile",
29265
29301
  "type": {
@@ -29276,7 +29312,7 @@
29276
29312
  "immutable": true,
29277
29313
  "locationInModule": {
29278
29314
  "filename": "src/release/publisher.ts",
29279
- "line": 746
29315
+ "line": 755
29280
29316
  },
29281
29317
  "name": "gitBranch",
29282
29318
  "optional": true,
@@ -29293,7 +29329,7 @@
29293
29329
  "immutable": true,
29294
29330
  "locationInModule": {
29295
29331
  "filename": "src/release/publisher.ts",
29296
- "line": 739
29332
+ "line": 748
29297
29333
  },
29298
29334
  "name": "projectChangelogFile",
29299
29335
  "optional": true,
@@ -29315,7 +29351,7 @@
29315
29351
  "kind": "interface",
29316
29352
  "locationInModule": {
29317
29353
  "filename": "src/release/publisher.ts",
29318
- "line": 652
29354
+ "line": 661
29319
29355
  },
29320
29356
  "name": "GoPublishOptions",
29321
29357
  "namespace": "release",
@@ -29330,7 +29366,7 @@
29330
29366
  "immutable": true,
29331
29367
  "locationInModule": {
29332
29368
  "filename": "src/release/publisher.ts",
29333
- "line": 673
29369
+ "line": 682
29334
29370
  },
29335
29371
  "name": "gitBranch",
29336
29372
  "optional": true,
@@ -29348,7 +29384,7 @@
29348
29384
  "immutable": true,
29349
29385
  "locationInModule": {
29350
29386
  "filename": "src/release/publisher.ts",
29351
- "line": 692
29387
+ "line": 701
29352
29388
  },
29353
29389
  "name": "gitCommitMessage",
29354
29390
  "optional": true,
@@ -29366,7 +29402,7 @@
29366
29402
  "immutable": true,
29367
29403
  "locationInModule": {
29368
29404
  "filename": "src/release/publisher.ts",
29369
- "line": 666
29405
+ "line": 675
29370
29406
  },
29371
29407
  "name": "githubRepo",
29372
29408
  "optional": true,
@@ -29384,7 +29420,7 @@
29384
29420
  "immutable": true,
29385
29421
  "locationInModule": {
29386
29422
  "filename": "src/release/publisher.ts",
29387
- "line": 659
29423
+ "line": 668
29388
29424
  },
29389
29425
  "name": "githubTokenSecret",
29390
29426
  "optional": true,
@@ -29405,7 +29441,7 @@
29405
29441
  "immutable": true,
29406
29442
  "locationInModule": {
29407
29443
  "filename": "src/release/publisher.ts",
29408
- "line": 685
29444
+ "line": 694
29409
29445
  },
29410
29446
  "name": "gitUserEmail",
29411
29447
  "optional": true,
@@ -29423,7 +29459,7 @@
29423
29459
  "immutable": true,
29424
29460
  "locationInModule": {
29425
29461
  "filename": "src/release/publisher.ts",
29426
- "line": 679
29462
+ "line": 688
29427
29463
  },
29428
29464
  "name": "gitUserName",
29429
29465
  "optional": true,
@@ -29448,7 +29484,7 @@
29448
29484
  "kind": "interface",
29449
29485
  "locationInModule": {
29450
29486
  "filename": "src/release/publisher.ts",
29451
- "line": 561
29487
+ "line": 570
29452
29488
  },
29453
29489
  "name": "JsiiReleaseMaven",
29454
29490
  "namespace": "release",
@@ -29468,7 +29504,7 @@
29468
29504
  "kind": "interface",
29469
29505
  "locationInModule": {
29470
29506
  "filename": "src/release/publisher.ts",
29471
- "line": 442
29507
+ "line": 443
29472
29508
  },
29473
29509
  "name": "JsiiReleaseNpm",
29474
29510
  "namespace": "release",
@@ -29488,7 +29524,7 @@
29488
29524
  "kind": "interface",
29489
29525
  "locationInModule": {
29490
29526
  "filename": "src/release/publisher.ts",
29491
- "line": 544
29527
+ "line": 553
29492
29528
  },
29493
29529
  "name": "JsiiReleaseNuget",
29494
29530
  "namespace": "release",
@@ -29508,7 +29544,7 @@
29508
29544
  "kind": "interface",
29509
29545
  "locationInModule": {
29510
29546
  "filename": "src/release/publisher.ts",
29511
- "line": 515
29547
+ "line": 524
29512
29548
  },
29513
29549
  "name": "JsiiReleasePyPi",
29514
29550
  "namespace": "release",
@@ -29580,7 +29616,7 @@
29580
29616
  "kind": "interface",
29581
29617
  "locationInModule": {
29582
29618
  "filename": "src/release/publisher.ts",
29583
- "line": 566
29619
+ "line": 575
29584
29620
  },
29585
29621
  "name": "MavenPublishOptions",
29586
29622
  "namespace": "release",
@@ -29596,7 +29632,7 @@
29596
29632
  "immutable": true,
29597
29633
  "locationInModule": {
29598
29634
  "filename": "src/release/publisher.ts",
29599
- "line": 572
29635
+ "line": 581
29600
29636
  },
29601
29637
  "name": "mavenEndpoint",
29602
29638
  "optional": true,
@@ -29616,7 +29652,7 @@
29616
29652
  "immutable": true,
29617
29653
  "locationInModule": {
29618
29654
  "filename": "src/release/publisher.ts",
29619
- "line": 605
29655
+ "line": 614
29620
29656
  },
29621
29657
  "name": "mavenGpgPrivateKeyPassphrase",
29622
29658
  "optional": true,
@@ -29636,7 +29672,7 @@
29636
29672
  "immutable": true,
29637
29673
  "locationInModule": {
29638
29674
  "filename": "src/release/publisher.ts",
29639
- "line": 596
29675
+ "line": 605
29640
29676
  },
29641
29677
  "name": "mavenGpgPrivateKeySecret",
29642
29678
  "optional": true,
@@ -29656,7 +29692,7 @@
29656
29692
  "immutable": true,
29657
29693
  "locationInModule": {
29658
29694
  "filename": "src/release/publisher.ts",
29659
- "line": 631
29695
+ "line": 640
29660
29696
  },
29661
29697
  "name": "mavenPassword",
29662
29698
  "optional": true,
@@ -29674,7 +29710,7 @@
29674
29710
  "immutable": true,
29675
29711
  "locationInModule": {
29676
29712
  "filename": "src/release/publisher.ts",
29677
- "line": 586
29713
+ "line": 595
29678
29714
  },
29679
29715
  "name": "mavenRepositoryUrl",
29680
29716
  "optional": true,
@@ -29692,7 +29728,7 @@
29692
29728
  "immutable": true,
29693
29729
  "locationInModule": {
29694
29730
  "filename": "src/release/publisher.ts",
29695
- "line": 579
29731
+ "line": 588
29696
29732
  },
29697
29733
  "name": "mavenServerId",
29698
29734
  "optional": true,
@@ -29710,7 +29746,7 @@
29710
29746
  "immutable": true,
29711
29747
  "locationInModule": {
29712
29748
  "filename": "src/release/publisher.ts",
29713
- "line": 642
29749
+ "line": 651
29714
29750
  },
29715
29751
  "name": "mavenStagingProfileId",
29716
29752
  "optional": true,
@@ -29730,7 +29766,7 @@
29730
29766
  "immutable": true,
29731
29767
  "locationInModule": {
29732
29768
  "filename": "src/release/publisher.ts",
29733
- "line": 618
29769
+ "line": 627
29734
29770
  },
29735
29771
  "name": "mavenUsername",
29736
29772
  "optional": true,
@@ -29752,7 +29788,7 @@
29752
29788
  "kind": "interface",
29753
29789
  "locationInModule": {
29754
29790
  "filename": "src/release/publisher.ts",
29755
- "line": 447
29791
+ "line": 448
29756
29792
  },
29757
29793
  "name": "NpmPublishOptions",
29758
29794
  "namespace": "release",
@@ -29767,7 +29803,7 @@
29767
29803
  "immutable": true,
29768
29804
  "locationInModule": {
29769
29805
  "filename": "src/release/publisher.ts",
29770
- "line": 491
29806
+ "line": 492
29771
29807
  },
29772
29808
  "name": "codeArtifactOptions",
29773
29809
  "optional": true,
@@ -29786,7 +29822,7 @@
29786
29822
  "immutable": true,
29787
29823
  "locationInModule": {
29788
29824
  "filename": "src/release/publisher.ts",
29789
- "line": 464
29825
+ "line": 465
29790
29826
  },
29791
29827
  "name": "distTag",
29792
29828
  "optional": true,
@@ -29804,7 +29840,7 @@
29804
29840
  "immutable": true,
29805
29841
  "locationInModule": {
29806
29842
  "filename": "src/release/publisher.ts",
29807
- "line": 484
29843
+ "line": 485
29808
29844
  },
29809
29845
  "name": "npmTokenSecret",
29810
29846
  "optional": true,
@@ -29824,7 +29860,7 @@
29824
29860
  "immutable": true,
29825
29861
  "locationInModule": {
29826
29862
  "filename": "src/release/publisher.ts",
29827
- "line": 478
29863
+ "line": 479
29828
29864
  },
29829
29865
  "name": "registry",
29830
29866
  "optional": true,
@@ -29846,7 +29882,7 @@
29846
29882
  "kind": "interface",
29847
29883
  "locationInModule": {
29848
29884
  "filename": "src/release/publisher.ts",
29849
- "line": 549
29885
+ "line": 558
29850
29886
  },
29851
29887
  "name": "NugetPublishOptions",
29852
29888
  "namespace": "release",
@@ -29861,7 +29897,7 @@
29861
29897
  "immutable": true,
29862
29898
  "locationInModule": {
29863
29899
  "filename": "src/release/publisher.ts",
29864
- "line": 555
29900
+ "line": 564
29865
29901
  },
29866
29902
  "name": "nugetApiKeySecret",
29867
29903
  "optional": true,
@@ -29967,7 +30003,7 @@
29967
30003
  },
29968
30004
  "locationInModule": {
29969
30005
  "filename": "src/release/publisher.ts",
29970
- "line": 289
30006
+ "line": 290
29971
30007
  },
29972
30008
  "name": "publishToGo",
29973
30009
  "parameters": [
@@ -29990,7 +30026,7 @@
29990
30026
  },
29991
30027
  "locationInModule": {
29992
30028
  "filename": "src/release/publisher.ts",
29993
- "line": 232
30029
+ "line": 233
29994
30030
  },
29995
30031
  "name": "publishToMaven",
29996
30032
  "parameters": [
@@ -30036,7 +30072,7 @@
30036
30072
  },
30037
30073
  "locationInModule": {
30038
30074
  "filename": "src/release/publisher.ts",
30039
- "line": 216
30075
+ "line": 217
30040
30076
  },
30041
30077
  "name": "publishToNuget",
30042
30078
  "parameters": [
@@ -30059,7 +30095,7 @@
30059
30095
  },
30060
30096
  "locationInModule": {
30061
30097
  "filename": "src/release/publisher.ts",
30062
- "line": 269
30098
+ "line": 270
30063
30099
  },
30064
30100
  "name": "publishToPyPi",
30065
30101
  "parameters": [
@@ -30299,7 +30335,7 @@
30299
30335
  "kind": "interface",
30300
30336
  "locationInModule": {
30301
30337
  "filename": "src/release/publisher.ts",
30302
- "line": 520
30338
+ "line": 529
30303
30339
  },
30304
30340
  "name": "PyPiPublishOptions",
30305
30341
  "namespace": "release",
@@ -30314,7 +30350,7 @@
30314
30350
  "immutable": true,
30315
30351
  "locationInModule": {
30316
30352
  "filename": "src/release/publisher.ts",
30317
- "line": 538
30353
+ "line": 547
30318
30354
  },
30319
30355
  "name": "twinePasswordSecret",
30320
30356
  "optional": true,
@@ -30332,7 +30368,7 @@
30332
30368
  "immutable": true,
30333
30369
  "locationInModule": {
30334
30370
  "filename": "src/release/publisher.ts",
30335
- "line": 526
30371
+ "line": 535
30336
30372
  },
30337
30373
  "name": "twineRegistryUrl",
30338
30374
  "optional": true,
@@ -30350,7 +30386,7 @@
30350
30386
  "immutable": true,
30351
30387
  "locationInModule": {
30352
30388
  "filename": "src/release/publisher.ts",
30353
- "line": 532
30389
+ "line": 541
30354
30390
  },
30355
30391
  "name": "twineUsernameSecret",
30356
30392
  "optional": true,
@@ -34295,6 +34331,6 @@
34295
34331
  "symbolId": "src/web/tailwind:TailwindConfigOptions"
34296
34332
  }
34297
34333
  },
34298
- "version": "0.34.1",
34299
- "fingerprint": "K+W0g/+FMyCuYUiW7vHEhvwnCS8661Qku19U/zsJNNc="
34334
+ "version": "0.34.5",
34335
+ "fingerprint": "j+ca9N9lXLETldMyzWpPx4hl5Ac3SHaVgdb/EfjvzWc="
34300
34336
  }