projen-modules 1.0.101__py3-none-any.whl → 1.0.102__py3-none-any.whl
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.
- projen_modules/__init__.py +138 -0
- projen_modules/_jsii/__init__.py +1 -1
- projen_modules/_jsii/projen-modules@1.0.102.jsii.tgz +0 -0
- {projen_modules-1.0.101.dist-info → projen_modules-1.0.102.dist-info}/METADATA +2 -2
- projen_modules-1.0.102.dist-info/RECORD +9 -0
- projen_modules/_jsii/projen-modules@1.0.101.jsii.tgz +0 -0
- projen_modules-1.0.101.dist-info/RECORD +0 -9
- {projen_modules-1.0.101.dist-info → projen_modules-1.0.102.dist-info}/LICENSE +0 -0
- {projen_modules-1.0.101.dist-info → projen_modules-1.0.102.dist-info}/WHEEL +0 -0
- {projen_modules-1.0.101.dist-info → projen_modules-1.0.102.dist-info}/top_level.txt +0 -0
projen_modules/__init__.py
CHANGED
@@ -128,6 +128,8 @@ class CdkTypeScriptApp(
|
|
128
128
|
auto_merge: typing.Optional[builtins.bool] = None,
|
129
129
|
auto_merge_options: typing.Optional[typing.Union[_projen_github_04054675.AutoMergeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
130
130
|
bin: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
131
|
+
biome: typing.Optional[builtins.bool] = None,
|
132
|
+
biome_options: typing.Optional[typing.Union[_projen_javascript_04054675.BiomeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
131
133
|
bugs_email: typing.Optional[builtins.str] = None,
|
132
134
|
bugs_url: typing.Optional[builtins.str] = None,
|
133
135
|
build_command: typing.Optional[builtins.str] = None,
|
@@ -303,6 +305,8 @@ class CdkTypeScriptApp(
|
|
303
305
|
:param auto_merge: (experimental) Enable automatic merging on GitHub. Has no effect if ``github.mergify`` is set to false. Default: true
|
304
306
|
:param auto_merge_options: (experimental) Configure options for automatic merging on GitHub. Has no effect if ``github.mergify`` or ``autoMerge`` is set to false. Default: - see defaults in ``AutoMergeOptions``
|
305
307
|
:param bin: (experimental) Binary programs vended with your module. You can use this option to add/customize how binaries are represented in your ``package.json``, but unless ``autoDetectBin`` is ``false``, every executable file under ``bin`` will automatically be added to this section.
|
308
|
+
:param biome: (experimental) Setup Biome. Default: false
|
309
|
+
:param biome_options: (experimental) Biome options. Default: - default options
|
306
310
|
:param bugs_email: (experimental) The email address to which issues should be reported.
|
307
311
|
:param bugs_url: (experimental) The url to your project's issue tracker.
|
308
312
|
:param build_command: (experimental) A command to execute before synthesis. This command will be called when running ``cdk synth`` or when ``cdk watch`` identifies a change in your source code before redeployment. Default: - no build command
|
@@ -478,6 +482,8 @@ class CdkTypeScriptApp(
|
|
478
482
|
auto_merge=auto_merge,
|
479
483
|
auto_merge_options=auto_merge_options,
|
480
484
|
bin=bin,
|
485
|
+
biome=biome,
|
486
|
+
biome_options=biome_options,
|
481
487
|
bugs_email=bugs_email,
|
482
488
|
bugs_url=bugs_url,
|
483
489
|
build_command=build_command,
|
@@ -672,6 +678,8 @@ class CdkTypeScriptApp(
|
|
672
678
|
"auto_merge": "autoMerge",
|
673
679
|
"auto_merge_options": "autoMergeOptions",
|
674
680
|
"bin": "bin",
|
681
|
+
"biome": "biome",
|
682
|
+
"biome_options": "biomeOptions",
|
675
683
|
"bugs_email": "bugsEmail",
|
676
684
|
"bugs_url": "bugsUrl",
|
677
685
|
"build_command": "buildCommand",
|
@@ -851,6 +859,8 @@ class CdkTypeScriptAppOptions:
|
|
851
859
|
auto_merge: typing.Optional[builtins.bool] = None,
|
852
860
|
auto_merge_options: typing.Optional[typing.Union[_projen_github_04054675.AutoMergeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
853
861
|
bin: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
862
|
+
biome: typing.Optional[builtins.bool] = None,
|
863
|
+
biome_options: typing.Optional[typing.Union[_projen_javascript_04054675.BiomeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
854
864
|
bugs_email: typing.Optional[builtins.str] = None,
|
855
865
|
bugs_url: typing.Optional[builtins.str] = None,
|
856
866
|
build_command: typing.Optional[builtins.str] = None,
|
@@ -1027,6 +1037,8 @@ class CdkTypeScriptAppOptions:
|
|
1027
1037
|
:param auto_merge: (experimental) Enable automatic merging on GitHub. Has no effect if ``github.mergify`` is set to false. Default: true
|
1028
1038
|
:param auto_merge_options: (experimental) Configure options for automatic merging on GitHub. Has no effect if ``github.mergify`` or ``autoMerge`` is set to false. Default: - see defaults in ``AutoMergeOptions``
|
1029
1039
|
:param bin: (experimental) Binary programs vended with your module. You can use this option to add/customize how binaries are represented in your ``package.json``, but unless ``autoDetectBin`` is ``false``, every executable file under ``bin`` will automatically be added to this section.
|
1040
|
+
:param biome: (experimental) Setup Biome. Default: false
|
1041
|
+
:param biome_options: (experimental) Biome options. Default: - default options
|
1030
1042
|
:param bugs_email: (experimental) The email address to which issues should be reported.
|
1031
1043
|
:param bugs_url: (experimental) The url to your project's issue tracker.
|
1032
1044
|
:param build_command: (experimental) A command to execute before synthesis. This command will be called when running ``cdk synth`` or when ``cdk watch`` identifies a change in your source code before redeployment. Default: - no build command
|
@@ -1188,6 +1200,8 @@ class CdkTypeScriptAppOptions:
|
|
1188
1200
|
auto_approve_options = _projen_github_04054675.AutoApproveOptions(**auto_approve_options)
|
1189
1201
|
if isinstance(auto_merge_options, dict):
|
1190
1202
|
auto_merge_options = _projen_github_04054675.AutoMergeOptions(**auto_merge_options)
|
1203
|
+
if isinstance(biome_options, dict):
|
1204
|
+
biome_options = _projen_javascript_04054675.BiomeOptions(**biome_options)
|
1191
1205
|
if isinstance(build_workflow_options, dict):
|
1192
1206
|
build_workflow_options = _projen_javascript_04054675.BuildWorkflowOptions(**build_workflow_options)
|
1193
1207
|
if isinstance(build_workflow_triggers, dict):
|
@@ -1267,6 +1281,8 @@ class CdkTypeScriptAppOptions:
|
|
1267
1281
|
check_type(argname="argument auto_merge", value=auto_merge, expected_type=type_hints["auto_merge"])
|
1268
1282
|
check_type(argname="argument auto_merge_options", value=auto_merge_options, expected_type=type_hints["auto_merge_options"])
|
1269
1283
|
check_type(argname="argument bin", value=bin, expected_type=type_hints["bin"])
|
1284
|
+
check_type(argname="argument biome", value=biome, expected_type=type_hints["biome"])
|
1285
|
+
check_type(argname="argument biome_options", value=biome_options, expected_type=type_hints["biome_options"])
|
1270
1286
|
check_type(argname="argument bugs_email", value=bugs_email, expected_type=type_hints["bugs_email"])
|
1271
1287
|
check_type(argname="argument bugs_url", value=bugs_url, expected_type=type_hints["bugs_url"])
|
1272
1288
|
check_type(argname="argument build_command", value=build_command, expected_type=type_hints["build_command"])
|
@@ -1456,6 +1472,10 @@ class CdkTypeScriptAppOptions:
|
|
1456
1472
|
self._values["auto_merge_options"] = auto_merge_options
|
1457
1473
|
if bin is not None:
|
1458
1474
|
self._values["bin"] = bin
|
1475
|
+
if biome is not None:
|
1476
|
+
self._values["biome"] = biome
|
1477
|
+
if biome_options is not None:
|
1478
|
+
self._values["biome_options"] = biome_options
|
1459
1479
|
if bugs_email is not None:
|
1460
1480
|
self._values["bugs_email"] = bugs_email
|
1461
1481
|
if bugs_url is not None:
|
@@ -1962,6 +1982,30 @@ class CdkTypeScriptAppOptions:
|
|
1962
1982
|
result = self._values.get("bin")
|
1963
1983
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
|
1964
1984
|
|
1985
|
+
@builtins.property
|
1986
|
+
def biome(self) -> typing.Optional[builtins.bool]:
|
1987
|
+
'''(experimental) Setup Biome.
|
1988
|
+
|
1989
|
+
:default: false
|
1990
|
+
|
1991
|
+
:stability: experimental
|
1992
|
+
'''
|
1993
|
+
result = self._values.get("biome")
|
1994
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
1995
|
+
|
1996
|
+
@builtins.property
|
1997
|
+
def biome_options(
|
1998
|
+
self,
|
1999
|
+
) -> typing.Optional[_projen_javascript_04054675.BiomeOptions]:
|
2000
|
+
'''(experimental) Biome options.
|
2001
|
+
|
2002
|
+
:default: - default options
|
2003
|
+
|
2004
|
+
:stability: experimental
|
2005
|
+
'''
|
2006
|
+
result = self._values.get("biome_options")
|
2007
|
+
return typing.cast(typing.Optional[_projen_javascript_04054675.BiomeOptions], result)
|
2008
|
+
|
1965
2009
|
@builtins.property
|
1966
2010
|
def bugs_email(self) -> typing.Optional[builtins.str]:
|
1967
2011
|
'''(experimental) The email address to which issues should be reported.
|
@@ -4034,6 +4078,8 @@ class JsiiProject(
|
|
4034
4078
|
auto_merge: typing.Optional[builtins.bool] = None,
|
4035
4079
|
auto_merge_options: typing.Optional[typing.Union[_projen_github_04054675.AutoMergeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
4036
4080
|
bin: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
4081
|
+
biome: typing.Optional[builtins.bool] = None,
|
4082
|
+
biome_options: typing.Optional[typing.Union[_projen_javascript_04054675.BiomeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
4037
4083
|
bugs_email: typing.Optional[builtins.str] = None,
|
4038
4084
|
bugs_url: typing.Optional[builtins.str] = None,
|
4039
4085
|
build_workflow: typing.Optional[builtins.bool] = None,
|
@@ -4201,6 +4247,8 @@ class JsiiProject(
|
|
4201
4247
|
:param auto_merge: (experimental) Enable automatic merging on GitHub. Has no effect if ``github.mergify`` is set to false. Default: true
|
4202
4248
|
:param auto_merge_options: (experimental) Configure options for automatic merging on GitHub. Has no effect if ``github.mergify`` or ``autoMerge`` is set to false. Default: - see defaults in ``AutoMergeOptions``
|
4203
4249
|
:param bin: (experimental) Binary programs vended with your module. You can use this option to add/customize how binaries are represented in your ``package.json``, but unless ``autoDetectBin`` is ``false``, every executable file under ``bin`` will automatically be added to this section.
|
4250
|
+
:param biome: (experimental) Setup Biome. Default: false
|
4251
|
+
:param biome_options: (experimental) Biome options. Default: - default options
|
4204
4252
|
:param bugs_email: (experimental) The email address to which issues should be reported.
|
4205
4253
|
:param bugs_url: (experimental) The url to your project's issue tracker.
|
4206
4254
|
:param build_workflow: (experimental) Define a GitHub workflow for building PRs. Default: - true if not a subproject
|
@@ -4368,6 +4416,8 @@ class JsiiProject(
|
|
4368
4416
|
auto_merge=auto_merge,
|
4369
4417
|
auto_merge_options=auto_merge_options,
|
4370
4418
|
bin=bin,
|
4419
|
+
biome=biome,
|
4420
|
+
biome_options=biome_options,
|
4371
4421
|
bugs_email=bugs_email,
|
4372
4422
|
bugs_url=bugs_url,
|
4373
4423
|
build_workflow=build_workflow,
|
@@ -4554,6 +4604,8 @@ class JsiiProject(
|
|
4554
4604
|
"auto_merge": "autoMerge",
|
4555
4605
|
"auto_merge_options": "autoMergeOptions",
|
4556
4606
|
"bin": "bin",
|
4607
|
+
"biome": "biome",
|
4608
|
+
"biome_options": "biomeOptions",
|
4557
4609
|
"bugs_email": "bugsEmail",
|
4558
4610
|
"bugs_url": "bugsUrl",
|
4559
4611
|
"build_workflow": "buildWorkflow",
|
@@ -4725,6 +4777,8 @@ class JsiiProjectOptions:
|
|
4725
4777
|
auto_merge: typing.Optional[builtins.bool] = None,
|
4726
4778
|
auto_merge_options: typing.Optional[typing.Union[_projen_github_04054675.AutoMergeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
4727
4779
|
bin: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
4780
|
+
biome: typing.Optional[builtins.bool] = None,
|
4781
|
+
biome_options: typing.Optional[typing.Union[_projen_javascript_04054675.BiomeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
4728
4782
|
bugs_email: typing.Optional[builtins.str] = None,
|
4729
4783
|
bugs_url: typing.Optional[builtins.str] = None,
|
4730
4784
|
build_workflow: typing.Optional[builtins.bool] = None,
|
@@ -4893,6 +4947,8 @@ class JsiiProjectOptions:
|
|
4893
4947
|
:param auto_merge: (experimental) Enable automatic merging on GitHub. Has no effect if ``github.mergify`` is set to false. Default: true
|
4894
4948
|
:param auto_merge_options: (experimental) Configure options for automatic merging on GitHub. Has no effect if ``github.mergify`` or ``autoMerge`` is set to false. Default: - see defaults in ``AutoMergeOptions``
|
4895
4949
|
:param bin: (experimental) Binary programs vended with your module. You can use this option to add/customize how binaries are represented in your ``package.json``, but unless ``autoDetectBin`` is ``false``, every executable file under ``bin`` will automatically be added to this section.
|
4950
|
+
:param biome: (experimental) Setup Biome. Default: false
|
4951
|
+
:param biome_options: (experimental) Biome options. Default: - default options
|
4896
4952
|
:param bugs_email: (experimental) The email address to which issues should be reported.
|
4897
4953
|
:param bugs_url: (experimental) The url to your project's issue tracker.
|
4898
4954
|
:param build_workflow: (experimental) Define a GitHub workflow for building PRs. Default: - true if not a subproject
|
@@ -5046,6 +5102,8 @@ class JsiiProjectOptions:
|
|
5046
5102
|
auto_approve_options = _projen_github_04054675.AutoApproveOptions(**auto_approve_options)
|
5047
5103
|
if isinstance(auto_merge_options, dict):
|
5048
5104
|
auto_merge_options = _projen_github_04054675.AutoMergeOptions(**auto_merge_options)
|
5105
|
+
if isinstance(biome_options, dict):
|
5106
|
+
biome_options = _projen_javascript_04054675.BiomeOptions(**biome_options)
|
5049
5107
|
if isinstance(build_workflow_options, dict):
|
5050
5108
|
build_workflow_options = _projen_javascript_04054675.BuildWorkflowOptions(**build_workflow_options)
|
5051
5109
|
if isinstance(build_workflow_triggers, dict):
|
@@ -5135,6 +5193,8 @@ class JsiiProjectOptions:
|
|
5135
5193
|
check_type(argname="argument auto_merge", value=auto_merge, expected_type=type_hints["auto_merge"])
|
5136
5194
|
check_type(argname="argument auto_merge_options", value=auto_merge_options, expected_type=type_hints["auto_merge_options"])
|
5137
5195
|
check_type(argname="argument bin", value=bin, expected_type=type_hints["bin"])
|
5196
|
+
check_type(argname="argument biome", value=biome, expected_type=type_hints["biome"])
|
5197
|
+
check_type(argname="argument biome_options", value=biome_options, expected_type=type_hints["biome_options"])
|
5138
5198
|
check_type(argname="argument bugs_email", value=bugs_email, expected_type=type_hints["bugs_email"])
|
5139
5199
|
check_type(argname="argument bugs_url", value=bugs_url, expected_type=type_hints["bugs_url"])
|
5140
5200
|
check_type(argname="argument build_workflow", value=build_workflow, expected_type=type_hints["build_workflow"])
|
@@ -5314,6 +5374,10 @@ class JsiiProjectOptions:
|
|
5314
5374
|
self._values["auto_merge_options"] = auto_merge_options
|
5315
5375
|
if bin is not None:
|
5316
5376
|
self._values["bin"] = bin
|
5377
|
+
if biome is not None:
|
5378
|
+
self._values["biome"] = biome
|
5379
|
+
if biome_options is not None:
|
5380
|
+
self._values["biome_options"] = biome_options
|
5317
5381
|
if bugs_email is not None:
|
5318
5382
|
self._values["bugs_email"] = bugs_email
|
5319
5383
|
if bugs_url is not None:
|
@@ -5808,6 +5872,30 @@ class JsiiProjectOptions:
|
|
5808
5872
|
result = self._values.get("bin")
|
5809
5873
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
|
5810
5874
|
|
5875
|
+
@builtins.property
|
5876
|
+
def biome(self) -> typing.Optional[builtins.bool]:
|
5877
|
+
'''(experimental) Setup Biome.
|
5878
|
+
|
5879
|
+
:default: false
|
5880
|
+
|
5881
|
+
:stability: experimental
|
5882
|
+
'''
|
5883
|
+
result = self._values.get("biome")
|
5884
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
5885
|
+
|
5886
|
+
@builtins.property
|
5887
|
+
def biome_options(
|
5888
|
+
self,
|
5889
|
+
) -> typing.Optional[_projen_javascript_04054675.BiomeOptions]:
|
5890
|
+
'''(experimental) Biome options.
|
5891
|
+
|
5892
|
+
:default: - default options
|
5893
|
+
|
5894
|
+
:stability: experimental
|
5895
|
+
'''
|
5896
|
+
result = self._values.get("biome_options")
|
5897
|
+
return typing.cast(typing.Optional[_projen_javascript_04054675.BiomeOptions], result)
|
5898
|
+
|
5811
5899
|
@builtins.property
|
5812
5900
|
def bugs_email(self) -> typing.Optional[builtins.str]:
|
5813
5901
|
'''(experimental) The email address to which issues should be reported.
|
@@ -7715,6 +7803,8 @@ class NpmPackage(
|
|
7715
7803
|
auto_merge: typing.Optional[builtins.bool] = None,
|
7716
7804
|
auto_merge_options: typing.Optional[typing.Union[_projen_github_04054675.AutoMergeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
7717
7805
|
bin: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
7806
|
+
biome: typing.Optional[builtins.bool] = None,
|
7807
|
+
biome_options: typing.Optional[typing.Union[_projen_javascript_04054675.BiomeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
7718
7808
|
bugs_email: typing.Optional[builtins.str] = None,
|
7719
7809
|
bugs_url: typing.Optional[builtins.str] = None,
|
7720
7810
|
build_workflow: typing.Optional[builtins.bool] = None,
|
@@ -7866,6 +7956,8 @@ class NpmPackage(
|
|
7866
7956
|
:param auto_merge: (experimental) Enable automatic merging on GitHub. Has no effect if ``github.mergify`` is set to false. Default: true
|
7867
7957
|
:param auto_merge_options: (experimental) Configure options for automatic merging on GitHub. Has no effect if ``github.mergify`` or ``autoMerge`` is set to false. Default: - see defaults in ``AutoMergeOptions``
|
7868
7958
|
:param bin: (experimental) Binary programs vended with your module. You can use this option to add/customize how binaries are represented in your ``package.json``, but unless ``autoDetectBin`` is ``false``, every executable file under ``bin`` will automatically be added to this section.
|
7959
|
+
:param biome: (experimental) Setup Biome. Default: false
|
7960
|
+
:param biome_options: (experimental) Biome options. Default: - default options
|
7869
7961
|
:param bugs_email: (experimental) The email address to which issues should be reported.
|
7870
7962
|
:param bugs_url: (experimental) The url to your project's issue tracker.
|
7871
7963
|
:param build_workflow: (experimental) Define a GitHub workflow for building PRs. Default: - true if not a subproject
|
@@ -8017,6 +8109,8 @@ class NpmPackage(
|
|
8017
8109
|
auto_merge=auto_merge,
|
8018
8110
|
auto_merge_options=auto_merge_options,
|
8019
8111
|
bin=bin,
|
8112
|
+
biome=biome,
|
8113
|
+
biome_options=biome_options,
|
8020
8114
|
bugs_email=bugs_email,
|
8021
8115
|
bugs_url=bugs_url,
|
8022
8116
|
build_workflow=build_workflow,
|
@@ -8187,6 +8281,8 @@ class NpmPackage(
|
|
8187
8281
|
"auto_merge": "autoMerge",
|
8188
8282
|
"auto_merge_options": "autoMergeOptions",
|
8189
8283
|
"bin": "bin",
|
8284
|
+
"biome": "biome",
|
8285
|
+
"biome_options": "biomeOptions",
|
8190
8286
|
"bugs_email": "bugsEmail",
|
8191
8287
|
"bugs_url": "bugsUrl",
|
8192
8288
|
"build_workflow": "buildWorkflow",
|
@@ -8342,6 +8438,8 @@ class NpmPackageOptions:
|
|
8342
8438
|
auto_merge: typing.Optional[builtins.bool] = None,
|
8343
8439
|
auto_merge_options: typing.Optional[typing.Union[_projen_github_04054675.AutoMergeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
8344
8440
|
bin: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
8441
|
+
biome: typing.Optional[builtins.bool] = None,
|
8442
|
+
biome_options: typing.Optional[typing.Union[_projen_javascript_04054675.BiomeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
8345
8443
|
bugs_email: typing.Optional[builtins.str] = None,
|
8346
8444
|
bugs_url: typing.Optional[builtins.str] = None,
|
8347
8445
|
build_workflow: typing.Optional[builtins.bool] = None,
|
@@ -8494,6 +8592,8 @@ class NpmPackageOptions:
|
|
8494
8592
|
:param auto_merge: (experimental) Enable automatic merging on GitHub. Has no effect if ``github.mergify`` is set to false. Default: true
|
8495
8593
|
:param auto_merge_options: (experimental) Configure options for automatic merging on GitHub. Has no effect if ``github.mergify`` or ``autoMerge`` is set to false. Default: - see defaults in ``AutoMergeOptions``
|
8496
8594
|
:param bin: (experimental) Binary programs vended with your module. You can use this option to add/customize how binaries are represented in your ``package.json``, but unless ``autoDetectBin`` is ``false``, every executable file under ``bin`` will automatically be added to this section.
|
8595
|
+
:param biome: (experimental) Setup Biome. Default: false
|
8596
|
+
:param biome_options: (experimental) Biome options. Default: - default options
|
8497
8597
|
:param bugs_email: (experimental) The email address to which issues should be reported.
|
8498
8598
|
:param bugs_url: (experimental) The url to your project's issue tracker.
|
8499
8599
|
:param build_workflow: (experimental) Define a GitHub workflow for building PRs. Default: - true if not a subproject
|
@@ -8634,6 +8734,8 @@ class NpmPackageOptions:
|
|
8634
8734
|
auto_approve_options = _projen_github_04054675.AutoApproveOptions(**auto_approve_options)
|
8635
8735
|
if isinstance(auto_merge_options, dict):
|
8636
8736
|
auto_merge_options = _projen_github_04054675.AutoMergeOptions(**auto_merge_options)
|
8737
|
+
if isinstance(biome_options, dict):
|
8738
|
+
biome_options = _projen_javascript_04054675.BiomeOptions(**biome_options)
|
8637
8739
|
if isinstance(build_workflow_options, dict):
|
8638
8740
|
build_workflow_options = _projen_javascript_04054675.BuildWorkflowOptions(**build_workflow_options)
|
8639
8741
|
if isinstance(build_workflow_triggers, dict):
|
@@ -8708,6 +8810,8 @@ class NpmPackageOptions:
|
|
8708
8810
|
check_type(argname="argument auto_merge", value=auto_merge, expected_type=type_hints["auto_merge"])
|
8709
8811
|
check_type(argname="argument auto_merge_options", value=auto_merge_options, expected_type=type_hints["auto_merge_options"])
|
8710
8812
|
check_type(argname="argument bin", value=bin, expected_type=type_hints["bin"])
|
8813
|
+
check_type(argname="argument biome", value=biome, expected_type=type_hints["biome"])
|
8814
|
+
check_type(argname="argument biome_options", value=biome_options, expected_type=type_hints["biome_options"])
|
8711
8815
|
check_type(argname="argument bugs_email", value=bugs_email, expected_type=type_hints["bugs_email"])
|
8712
8816
|
check_type(argname="argument bugs_url", value=bugs_url, expected_type=type_hints["bugs_url"])
|
8713
8817
|
check_type(argname="argument build_workflow", value=build_workflow, expected_type=type_hints["build_workflow"])
|
@@ -8871,6 +8975,10 @@ class NpmPackageOptions:
|
|
8871
8975
|
self._values["auto_merge_options"] = auto_merge_options
|
8872
8976
|
if bin is not None:
|
8873
8977
|
self._values["bin"] = bin
|
8978
|
+
if biome is not None:
|
8979
|
+
self._values["biome"] = biome
|
8980
|
+
if biome_options is not None:
|
8981
|
+
self._values["biome_options"] = biome_options
|
8874
8982
|
if bugs_email is not None:
|
8875
8983
|
self._values["bugs_email"] = bugs_email
|
8876
8984
|
if bugs_url is not None:
|
@@ -9303,6 +9411,30 @@ class NpmPackageOptions:
|
|
9303
9411
|
result = self._values.get("bin")
|
9304
9412
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], result)
|
9305
9413
|
|
9414
|
+
@builtins.property
|
9415
|
+
def biome(self) -> typing.Optional[builtins.bool]:
|
9416
|
+
'''(experimental) Setup Biome.
|
9417
|
+
|
9418
|
+
:default: false
|
9419
|
+
|
9420
|
+
:stability: experimental
|
9421
|
+
'''
|
9422
|
+
result = self._values.get("biome")
|
9423
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
9424
|
+
|
9425
|
+
@builtins.property
|
9426
|
+
def biome_options(
|
9427
|
+
self,
|
9428
|
+
) -> typing.Optional[_projen_javascript_04054675.BiomeOptions]:
|
9429
|
+
'''(experimental) Biome options.
|
9430
|
+
|
9431
|
+
:default: - default options
|
9432
|
+
|
9433
|
+
:stability: experimental
|
9434
|
+
'''
|
9435
|
+
result = self._values.get("biome_options")
|
9436
|
+
return typing.cast(typing.Optional[_projen_javascript_04054675.BiomeOptions], result)
|
9437
|
+
|
9306
9438
|
@builtins.property
|
9307
9439
|
def bugs_email(self) -> typing.Optional[builtins.str]:
|
9308
9440
|
'''(experimental) The email address to which issues should be reported.
|
@@ -12566,6 +12698,8 @@ def _typecheckingstub__3a6354f4c0532263f309ca59025d89b070b95588f76bd5815340cc71a
|
|
12566
12698
|
auto_merge: typing.Optional[builtins.bool] = None,
|
12567
12699
|
auto_merge_options: typing.Optional[typing.Union[_projen_github_04054675.AutoMergeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
12568
12700
|
bin: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
12701
|
+
biome: typing.Optional[builtins.bool] = None,
|
12702
|
+
biome_options: typing.Optional[typing.Union[_projen_javascript_04054675.BiomeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
12569
12703
|
bugs_email: typing.Optional[builtins.str] = None,
|
12570
12704
|
bugs_url: typing.Optional[builtins.str] = None,
|
12571
12705
|
build_command: typing.Optional[builtins.str] = None,
|
@@ -12763,6 +12897,8 @@ def _typecheckingstub__bcc0f0f3d874afabc142961b7ca192083fcad906385166f2e47f7e739
|
|
12763
12897
|
auto_merge: typing.Optional[builtins.bool] = None,
|
12764
12898
|
auto_merge_options: typing.Optional[typing.Union[_projen_github_04054675.AutoMergeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
12765
12899
|
bin: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
12900
|
+
biome: typing.Optional[builtins.bool] = None,
|
12901
|
+
biome_options: typing.Optional[typing.Union[_projen_javascript_04054675.BiomeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
12766
12902
|
bugs_email: typing.Optional[builtins.str] = None,
|
12767
12903
|
bugs_url: typing.Optional[builtins.str] = None,
|
12768
12904
|
build_workflow: typing.Optional[builtins.bool] = None,
|
@@ -12937,6 +13073,8 @@ def _typecheckingstub__b17dce6f2f04ceb519c781a818d66bcf4fef528d5b613028b126fd373
|
|
12937
13073
|
auto_merge: typing.Optional[builtins.bool] = None,
|
12938
13074
|
auto_merge_options: typing.Optional[typing.Union[_projen_github_04054675.AutoMergeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
12939
13075
|
bin: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
13076
|
+
biome: typing.Optional[builtins.bool] = None,
|
13077
|
+
biome_options: typing.Optional[typing.Union[_projen_javascript_04054675.BiomeOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
12940
13078
|
bugs_email: typing.Optional[builtins.str] = None,
|
12941
13079
|
bugs_url: typing.Optional[builtins.str] = None,
|
12942
13080
|
build_workflow: typing.Optional[builtins.bool] = None,
|
projen_modules/_jsii/__init__.py
CHANGED
@@ -32,7 +32,7 @@ import constructs._jsii
|
|
32
32
|
import projen._jsii
|
33
33
|
|
34
34
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
35
|
-
"projen-modules", "1.0.
|
35
|
+
"projen-modules", "1.0.102", __name__[0:-6], "projen-modules@1.0.102.jsii.tgz"
|
36
36
|
)
|
37
37
|
|
38
38
|
__all__ = [
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: projen_modules
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.102
|
4
4
|
Summary: A collection of projen modules
|
5
5
|
Home-page: https://github.com/daveshepherd/projen-modules.git
|
6
6
|
Author: Dave Shepherd<dave.shepherd@endor.me.uk>
|
@@ -21,7 +21,7 @@ Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
22
22
|
Requires-Dist: constructs ==10.4.2
|
23
23
|
Requires-Dist: jsii <2.0.0,>=1.113.0
|
24
|
-
Requires-Dist: projen <1.0.0,>=0.
|
24
|
+
Requires-Dist: projen <1.0.0,>=0.93.0
|
25
25
|
Requires-Dist: publication >=0.0.3
|
26
26
|
Requires-Dist: typeguard <4.3.0,>=2.13.3
|
27
27
|
|
@@ -0,0 +1,9 @@
|
|
1
|
+
projen_modules/__init__.py,sha256=lH4qHVQTXd2ZKB8GidO6FOs99WFqC3YJ_hpdLxbd1hA,786733
|
2
|
+
projen_modules/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
+
projen_modules/_jsii/__init__.py,sha256=996v-L79h3oEYoUvlAXlk3J9c1fxUfY3hbTloMF9M-k,1442
|
4
|
+
projen_modules/_jsii/projen-modules@1.0.102.jsii.tgz,sha256=aaSCya6T-tmxA2S1jrNCGqu4HkkuBAVC0Q_MhgljEis,207145
|
5
|
+
projen_modules-1.0.102.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
6
|
+
projen_modules-1.0.102.dist-info/METADATA,sha256=yV9a6B3y26016rA7zup-WvLcVk6JZtv0g3fcUuOC-SM,3172
|
7
|
+
projen_modules-1.0.102.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
8
|
+
projen_modules-1.0.102.dist-info/top_level.txt,sha256=YhmVEeu2LoZS5cqGRszYa1QjC4sk2iA12CJBzxieX8I,15
|
9
|
+
projen_modules-1.0.102.dist-info/RECORD,,
|
Binary file
|
@@ -1,9 +0,0 @@
|
|
1
|
-
projen_modules/__init__.py,sha256=TISrrqU5QQmpS__3MfukTsvO7aofz_C6INXS6jg9XXs,780043
|
2
|
-
projen_modules/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
-
projen_modules/_jsii/__init__.py,sha256=Z9xBiszgA3j6qpfvaQRlRZ_LXDdZHKkn8KJSQbkqSWY,1442
|
4
|
-
projen_modules/_jsii/projen-modules@1.0.101.jsii.tgz,sha256=j7jsKm2qazSnMG3NwGOW-yNNxLYk-XYT4lsX2EKYW0s,207546
|
5
|
-
projen_modules-1.0.101.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
6
|
-
projen_modules-1.0.101.dist-info/METADATA,sha256=y7E16ufyV9ldfGOp6lH2jbZhy8p6wPAsyt4eZQNTB84,3172
|
7
|
-
projen_modules-1.0.101.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
8
|
-
projen_modules-1.0.101.dist-info/top_level.txt,sha256=YhmVEeu2LoZS5cqGRszYa1QjC4sk2iA12CJBzxieX8I,15
|
9
|
-
projen_modules-1.0.101.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|