projen 0.95.2__py3-none-any.whl → 0.95.4__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.
Potentially problematic release.
This version of projen might be problematic. Click here for more details.
- projen/_jsii/__init__.py +1 -1
- projen/_jsii/projen@0.95.4.jsii.tgz +0 -0
- projen/awscdk/__init__.py +63 -0
- projen/cdk/__init__.py +83 -0
- projen/cdk8s/__init__.py +42 -0
- projen/cdktf/__init__.py +21 -0
- projen/javascript/__init__.py +47 -2
- projen/javascript/biome_config/__init__.py +98 -4
- projen/release/__init__.py +154 -15
- projen/typescript/__init__.py +45 -0
- projen/web/__init__.py +84 -0
- {projen-0.95.2.data → projen-0.95.4.data}/scripts/projen +1 -1
- {projen-0.95.2.dist-info → projen-0.95.4.dist-info}/METADATA +1 -1
- projen-0.95.4.dist-info/RECORD +27 -0
- projen/_jsii/projen@0.95.2.jsii.tgz +0 -0
- projen-0.95.2.dist-info/RECORD +0 -27
- {projen-0.95.2.dist-info → projen-0.95.4.dist-info}/LICENSE +0 -0
- {projen-0.95.2.dist-info → projen-0.95.4.dist-info}/WHEEL +0 -0
- {projen-0.95.2.dist-info → projen-0.95.4.dist-info}/top_level.txt +0 -0
projen/typescript/__init__.py
CHANGED
|
@@ -1086,6 +1086,7 @@ class TypeScriptProject(
|
|
|
1086
1086
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
1087
1087
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
1088
1088
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
1089
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
1089
1090
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
1090
1091
|
package_name: typing.Optional[builtins.str] = None,
|
|
1091
1092
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -1239,6 +1240,7 @@ class TypeScriptProject(
|
|
|
1239
1240
|
:param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
|
|
1240
1241
|
:param npm_registry_url: (experimental) The base URL of the npm package registry. Must be a URL (e.g. start with "https://" or "http://") Default: "https://registry.npmjs.org"
|
|
1241
1242
|
:param npm_token_secret: (experimental) GitHub secret which contains the NPM token to use when publishing packages. Default: "NPM_TOKEN"
|
|
1243
|
+
:param npm_trusted_publishing: (experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work. Default: - false
|
|
1242
1244
|
:param package_manager: (experimental) The Node Package Manager used to execute scripts. Default: NodePackageManager.YARN_CLASSIC
|
|
1243
1245
|
:param package_name: (experimental) The "name" in package.json. Default: - defaults to project name
|
|
1244
1246
|
:param peer_dependency_options: (experimental) Options for ``peerDeps``.
|
|
@@ -1394,6 +1396,7 @@ class TypeScriptProject(
|
|
|
1394
1396
|
npm_registry=npm_registry,
|
|
1395
1397
|
npm_registry_url=npm_registry_url,
|
|
1396
1398
|
npm_token_secret=npm_token_secret,
|
|
1399
|
+
npm_trusted_publishing=npm_trusted_publishing,
|
|
1397
1400
|
package_manager=package_manager,
|
|
1398
1401
|
package_name=package_name,
|
|
1399
1402
|
peer_dependency_options=peer_dependency_options,
|
|
@@ -1610,6 +1613,7 @@ class TypeScriptProject(
|
|
|
1610
1613
|
"npm_registry": "npmRegistry",
|
|
1611
1614
|
"npm_registry_url": "npmRegistryUrl",
|
|
1612
1615
|
"npm_token_secret": "npmTokenSecret",
|
|
1616
|
+
"npm_trusted_publishing": "npmTrustedPublishing",
|
|
1613
1617
|
"package_manager": "packageManager",
|
|
1614
1618
|
"package_name": "packageName",
|
|
1615
1619
|
"peer_dependency_options": "peerDependencyOptions",
|
|
@@ -1767,6 +1771,7 @@ class TypeScriptProjectOptions(_NodeProjectOptions_d12f6f3b):
|
|
|
1767
1771
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
1768
1772
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
1769
1773
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
1774
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
1770
1775
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
1771
1776
|
package_name: typing.Optional[builtins.str] = None,
|
|
1772
1777
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -1920,6 +1925,7 @@ class TypeScriptProjectOptions(_NodeProjectOptions_d12f6f3b):
|
|
|
1920
1925
|
:param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
|
|
1921
1926
|
:param npm_registry_url: (experimental) The base URL of the npm package registry. Must be a URL (e.g. start with "https://" or "http://") Default: "https://registry.npmjs.org"
|
|
1922
1927
|
:param npm_token_secret: (experimental) GitHub secret which contains the NPM token to use when publishing packages. Default: "NPM_TOKEN"
|
|
1928
|
+
:param npm_trusted_publishing: (experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work. Default: - false
|
|
1923
1929
|
:param package_manager: (experimental) The Node Package Manager used to execute scripts. Default: NodePackageManager.YARN_CLASSIC
|
|
1924
1930
|
:param package_name: (experimental) The "name" in package.json. Default: - defaults to project name
|
|
1925
1931
|
:param peer_dependency_options: (experimental) Options for ``peerDeps``.
|
|
@@ -2140,6 +2146,7 @@ class TypeScriptProjectOptions(_NodeProjectOptions_d12f6f3b):
|
|
|
2140
2146
|
check_type(argname="argument npm_registry", value=npm_registry, expected_type=type_hints["npm_registry"])
|
|
2141
2147
|
check_type(argname="argument npm_registry_url", value=npm_registry_url, expected_type=type_hints["npm_registry_url"])
|
|
2142
2148
|
check_type(argname="argument npm_token_secret", value=npm_token_secret, expected_type=type_hints["npm_token_secret"])
|
|
2149
|
+
check_type(argname="argument npm_trusted_publishing", value=npm_trusted_publishing, expected_type=type_hints["npm_trusted_publishing"])
|
|
2143
2150
|
check_type(argname="argument package_manager", value=package_manager, expected_type=type_hints["package_manager"])
|
|
2144
2151
|
check_type(argname="argument package_name", value=package_name, expected_type=type_hints["package_name"])
|
|
2145
2152
|
check_type(argname="argument peer_dependency_options", value=peer_dependency_options, expected_type=type_hints["peer_dependency_options"])
|
|
@@ -2349,6 +2356,8 @@ class TypeScriptProjectOptions(_NodeProjectOptions_d12f6f3b):
|
|
|
2349
2356
|
self._values["npm_registry_url"] = npm_registry_url
|
|
2350
2357
|
if npm_token_secret is not None:
|
|
2351
2358
|
self._values["npm_token_secret"] = npm_token_secret
|
|
2359
|
+
if npm_trusted_publishing is not None:
|
|
2360
|
+
self._values["npm_trusted_publishing"] = npm_trusted_publishing
|
|
2352
2361
|
if package_manager is not None:
|
|
2353
2362
|
self._values["package_manager"] = package_manager
|
|
2354
2363
|
if package_name is not None:
|
|
@@ -3253,6 +3262,17 @@ class TypeScriptProjectOptions(_NodeProjectOptions_d12f6f3b):
|
|
|
3253
3262
|
result = self._values.get("npm_token_secret")
|
|
3254
3263
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3255
3264
|
|
|
3265
|
+
@builtins.property
|
|
3266
|
+
def npm_trusted_publishing(self) -> typing.Optional[builtins.bool]:
|
|
3267
|
+
'''(experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work.
|
|
3268
|
+
|
|
3269
|
+
:default: - false
|
|
3270
|
+
|
|
3271
|
+
:stability: experimental
|
|
3272
|
+
'''
|
|
3273
|
+
result = self._values.get("npm_trusted_publishing")
|
|
3274
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
3275
|
+
|
|
3256
3276
|
@builtins.property
|
|
3257
3277
|
def package_manager(self) -> typing.Optional[_NodePackageManager_3eb53bf6]:
|
|
3258
3278
|
'''(experimental) The Node Package Manager used to execute scripts.
|
|
@@ -4563,6 +4583,7 @@ class TypeScriptAppProject(
|
|
|
4563
4583
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
4564
4584
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
4565
4585
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
4586
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
4566
4587
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
4567
4588
|
package_name: typing.Optional[builtins.str] = None,
|
|
4568
4589
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -4716,6 +4737,7 @@ class TypeScriptAppProject(
|
|
|
4716
4737
|
:param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
|
|
4717
4738
|
:param npm_registry_url: (experimental) The base URL of the npm package registry. Must be a URL (e.g. start with "https://" or "http://") Default: "https://registry.npmjs.org"
|
|
4718
4739
|
:param npm_token_secret: (experimental) GitHub secret which contains the NPM token to use when publishing packages. Default: "NPM_TOKEN"
|
|
4740
|
+
:param npm_trusted_publishing: (experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work. Default: - false
|
|
4719
4741
|
:param package_manager: (experimental) The Node Package Manager used to execute scripts. Default: NodePackageManager.YARN_CLASSIC
|
|
4720
4742
|
:param package_name: (experimental) The "name" in package.json. Default: - defaults to project name
|
|
4721
4743
|
:param peer_dependency_options: (experimental) Options for ``peerDeps``.
|
|
@@ -4871,6 +4893,7 @@ class TypeScriptAppProject(
|
|
|
4871
4893
|
npm_registry=npm_registry,
|
|
4872
4894
|
npm_registry_url=npm_registry_url,
|
|
4873
4895
|
npm_token_secret=npm_token_secret,
|
|
4896
|
+
npm_trusted_publishing=npm_trusted_publishing,
|
|
4874
4897
|
package_manager=package_manager,
|
|
4875
4898
|
package_name=package_name,
|
|
4876
4899
|
peer_dependency_options=peer_dependency_options,
|
|
@@ -5041,6 +5064,7 @@ class TypeScriptLibraryProject(
|
|
|
5041
5064
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
5042
5065
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
5043
5066
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
5067
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
5044
5068
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
5045
5069
|
package_name: typing.Optional[builtins.str] = None,
|
|
5046
5070
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -5194,6 +5218,7 @@ class TypeScriptLibraryProject(
|
|
|
5194
5218
|
:param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
|
|
5195
5219
|
:param npm_registry_url: (experimental) The base URL of the npm package registry. Must be a URL (e.g. start with "https://" or "http://") Default: "https://registry.npmjs.org"
|
|
5196
5220
|
:param npm_token_secret: (experimental) GitHub secret which contains the NPM token to use when publishing packages. Default: "NPM_TOKEN"
|
|
5221
|
+
:param npm_trusted_publishing: (experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work. Default: - false
|
|
5197
5222
|
:param package_manager: (experimental) The Node Package Manager used to execute scripts. Default: NodePackageManager.YARN_CLASSIC
|
|
5198
5223
|
:param package_name: (experimental) The "name" in package.json. Default: - defaults to project name
|
|
5199
5224
|
:param peer_dependency_options: (experimental) Options for ``peerDeps``.
|
|
@@ -5349,6 +5374,7 @@ class TypeScriptLibraryProject(
|
|
|
5349
5374
|
npm_registry=npm_registry,
|
|
5350
5375
|
npm_registry_url=npm_registry_url,
|
|
5351
5376
|
npm_token_secret=npm_token_secret,
|
|
5377
|
+
npm_trusted_publishing=npm_trusted_publishing,
|
|
5352
5378
|
package_manager=package_manager,
|
|
5353
5379
|
package_name=package_name,
|
|
5354
5380
|
peer_dependency_options=peer_dependency_options,
|
|
@@ -5462,6 +5488,7 @@ class TypeScriptLibraryProject(
|
|
|
5462
5488
|
"npm_registry": "npmRegistry",
|
|
5463
5489
|
"npm_registry_url": "npmRegistryUrl",
|
|
5464
5490
|
"npm_token_secret": "npmTokenSecret",
|
|
5491
|
+
"npm_trusted_publishing": "npmTrustedPublishing",
|
|
5465
5492
|
"package_manager": "packageManager",
|
|
5466
5493
|
"package_name": "packageName",
|
|
5467
5494
|
"peer_dependency_options": "peerDependencyOptions",
|
|
@@ -5619,6 +5646,7 @@ class TypeScriptLibraryProjectOptions(TypeScriptProjectOptions):
|
|
|
5619
5646
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
5620
5647
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
5621
5648
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
5649
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
5622
5650
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
5623
5651
|
package_name: typing.Optional[builtins.str] = None,
|
|
5624
5652
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -5772,6 +5800,7 @@ class TypeScriptLibraryProjectOptions(TypeScriptProjectOptions):
|
|
|
5772
5800
|
:param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
|
|
5773
5801
|
:param npm_registry_url: (experimental) The base URL of the npm package registry. Must be a URL (e.g. start with "https://" or "http://") Default: "https://registry.npmjs.org"
|
|
5774
5802
|
:param npm_token_secret: (experimental) GitHub secret which contains the NPM token to use when publishing packages. Default: "NPM_TOKEN"
|
|
5803
|
+
:param npm_trusted_publishing: (experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work. Default: - false
|
|
5775
5804
|
:param package_manager: (experimental) The Node Package Manager used to execute scripts. Default: NodePackageManager.YARN_CLASSIC
|
|
5776
5805
|
:param package_name: (experimental) The "name" in package.json. Default: - defaults to project name
|
|
5777
5806
|
:param peer_dependency_options: (experimental) Options for ``peerDeps``.
|
|
@@ -5994,6 +6023,7 @@ class TypeScriptLibraryProjectOptions(TypeScriptProjectOptions):
|
|
|
5994
6023
|
check_type(argname="argument npm_registry", value=npm_registry, expected_type=type_hints["npm_registry"])
|
|
5995
6024
|
check_type(argname="argument npm_registry_url", value=npm_registry_url, expected_type=type_hints["npm_registry_url"])
|
|
5996
6025
|
check_type(argname="argument npm_token_secret", value=npm_token_secret, expected_type=type_hints["npm_token_secret"])
|
|
6026
|
+
check_type(argname="argument npm_trusted_publishing", value=npm_trusted_publishing, expected_type=type_hints["npm_trusted_publishing"])
|
|
5997
6027
|
check_type(argname="argument package_manager", value=package_manager, expected_type=type_hints["package_manager"])
|
|
5998
6028
|
check_type(argname="argument package_name", value=package_name, expected_type=type_hints["package_name"])
|
|
5999
6029
|
check_type(argname="argument peer_dependency_options", value=peer_dependency_options, expected_type=type_hints["peer_dependency_options"])
|
|
@@ -6203,6 +6233,8 @@ class TypeScriptLibraryProjectOptions(TypeScriptProjectOptions):
|
|
|
6203
6233
|
self._values["npm_registry_url"] = npm_registry_url
|
|
6204
6234
|
if npm_token_secret is not None:
|
|
6205
6235
|
self._values["npm_token_secret"] = npm_token_secret
|
|
6236
|
+
if npm_trusted_publishing is not None:
|
|
6237
|
+
self._values["npm_trusted_publishing"] = npm_trusted_publishing
|
|
6206
6238
|
if package_manager is not None:
|
|
6207
6239
|
self._values["package_manager"] = package_manager
|
|
6208
6240
|
if package_name is not None:
|
|
@@ -7107,6 +7139,17 @@ class TypeScriptLibraryProjectOptions(TypeScriptProjectOptions):
|
|
|
7107
7139
|
result = self._values.get("npm_token_secret")
|
|
7108
7140
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
7109
7141
|
|
|
7142
|
+
@builtins.property
|
|
7143
|
+
def npm_trusted_publishing(self) -> typing.Optional[builtins.bool]:
|
|
7144
|
+
'''(experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work.
|
|
7145
|
+
|
|
7146
|
+
:default: - false
|
|
7147
|
+
|
|
7148
|
+
:stability: experimental
|
|
7149
|
+
'''
|
|
7150
|
+
result = self._values.get("npm_trusted_publishing")
|
|
7151
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
7152
|
+
|
|
7110
7153
|
@builtins.property
|
|
7111
7154
|
def package_manager(self) -> typing.Optional[_NodePackageManager_3eb53bf6]:
|
|
7112
7155
|
'''(experimental) The Node Package Manager used to execute scripts.
|
|
@@ -8441,6 +8484,7 @@ def _typecheckingstub__a914f27f5d915b07b8847d407b03b08cab2aad7b213973084a9026526
|
|
|
8441
8484
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
8442
8485
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
8443
8486
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
8487
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
8444
8488
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
8445
8489
|
package_name: typing.Optional[builtins.str] = None,
|
|
8446
8490
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -8604,6 +8648,7 @@ def _typecheckingstub__ac162883b4ecfe9863890d69bffa76d7f9ce16e619c94b9b2a4b7b8f2
|
|
|
8604
8648
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
8605
8649
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
8606
8650
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
8651
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
8607
8652
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
8608
8653
|
package_name: typing.Optional[builtins.str] = None,
|
|
8609
8654
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
projen/web/__init__.py
CHANGED
|
@@ -353,6 +353,7 @@ class NextJsProject(
|
|
|
353
353
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
354
354
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
355
355
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
356
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
356
357
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
357
358
|
package_name: typing.Optional[builtins.str] = None,
|
|
358
359
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -492,6 +493,7 @@ class NextJsProject(
|
|
|
492
493
|
:param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
|
|
493
494
|
:param npm_registry_url: (experimental) The base URL of the npm package registry. Must be a URL (e.g. start with "https://" or "http://") Default: "https://registry.npmjs.org"
|
|
494
495
|
:param npm_token_secret: (experimental) GitHub secret which contains the NPM token to use when publishing packages. Default: "NPM_TOKEN"
|
|
496
|
+
:param npm_trusted_publishing: (experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work. Default: - false
|
|
495
497
|
:param package_manager: (experimental) The Node Package Manager used to execute scripts. Default: NodePackageManager.YARN_CLASSIC
|
|
496
498
|
:param package_name: (experimental) The "name" in package.json. Default: - defaults to project name
|
|
497
499
|
:param peer_dependency_options: (experimental) Options for ``peerDeps``.
|
|
@@ -633,6 +635,7 @@ class NextJsProject(
|
|
|
633
635
|
npm_registry=npm_registry,
|
|
634
636
|
npm_registry_url=npm_registry_url,
|
|
635
637
|
npm_token_secret=npm_token_secret,
|
|
638
|
+
npm_trusted_publishing=npm_trusted_publishing,
|
|
636
639
|
package_manager=package_manager,
|
|
637
640
|
package_name=package_name,
|
|
638
641
|
peer_dependency_options=peer_dependency_options,
|
|
@@ -776,6 +779,7 @@ class NextJsProject(
|
|
|
776
779
|
"npm_registry": "npmRegistry",
|
|
777
780
|
"npm_registry_url": "npmRegistryUrl",
|
|
778
781
|
"npm_token_secret": "npmTokenSecret",
|
|
782
|
+
"npm_trusted_publishing": "npmTrustedPublishing",
|
|
779
783
|
"package_manager": "packageManager",
|
|
780
784
|
"package_name": "packageName",
|
|
781
785
|
"peer_dependency_options": "peerDependencyOptions",
|
|
@@ -919,6 +923,7 @@ class NextJsProjectOptions(NextJsCommonProjectOptions, _NodeProjectOptions_d12f6
|
|
|
919
923
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
920
924
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
921
925
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
926
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
922
927
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
923
928
|
package_name: typing.Optional[builtins.str] = None,
|
|
924
929
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -1058,6 +1063,7 @@ class NextJsProjectOptions(NextJsCommonProjectOptions, _NodeProjectOptions_d12f6
|
|
|
1058
1063
|
:param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
|
|
1059
1064
|
:param npm_registry_url: (experimental) The base URL of the npm package registry. Must be a URL (e.g. start with "https://" or "http://") Default: "https://registry.npmjs.org"
|
|
1060
1065
|
:param npm_token_secret: (experimental) GitHub secret which contains the NPM token to use when publishing packages. Default: "NPM_TOKEN"
|
|
1066
|
+
:param npm_trusted_publishing: (experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work. Default: - false
|
|
1061
1067
|
:param package_manager: (experimental) The Node Package Manager used to execute scripts. Default: NodePackageManager.YARN_CLASSIC
|
|
1062
1068
|
:param package_name: (experimental) The "name" in package.json. Default: - defaults to project name
|
|
1063
1069
|
:param peer_dependency_options: (experimental) Options for ``peerDeps``.
|
|
@@ -1254,6 +1260,7 @@ class NextJsProjectOptions(NextJsCommonProjectOptions, _NodeProjectOptions_d12f6
|
|
|
1254
1260
|
check_type(argname="argument npm_registry", value=npm_registry, expected_type=type_hints["npm_registry"])
|
|
1255
1261
|
check_type(argname="argument npm_registry_url", value=npm_registry_url, expected_type=type_hints["npm_registry_url"])
|
|
1256
1262
|
check_type(argname="argument npm_token_secret", value=npm_token_secret, expected_type=type_hints["npm_token_secret"])
|
|
1263
|
+
check_type(argname="argument npm_trusted_publishing", value=npm_trusted_publishing, expected_type=type_hints["npm_trusted_publishing"])
|
|
1257
1264
|
check_type(argname="argument package_manager", value=package_manager, expected_type=type_hints["package_manager"])
|
|
1258
1265
|
check_type(argname="argument package_name", value=package_name, expected_type=type_hints["package_name"])
|
|
1259
1266
|
check_type(argname="argument peer_dependency_options", value=peer_dependency_options, expected_type=type_hints["peer_dependency_options"])
|
|
@@ -1451,6 +1458,8 @@ class NextJsProjectOptions(NextJsCommonProjectOptions, _NodeProjectOptions_d12f6
|
|
|
1451
1458
|
self._values["npm_registry_url"] = npm_registry_url
|
|
1452
1459
|
if npm_token_secret is not None:
|
|
1453
1460
|
self._values["npm_token_secret"] = npm_token_secret
|
|
1461
|
+
if npm_trusted_publishing is not None:
|
|
1462
|
+
self._values["npm_trusted_publishing"] = npm_trusted_publishing
|
|
1454
1463
|
if package_manager is not None:
|
|
1455
1464
|
self._values["package_manager"] = package_manager
|
|
1456
1465
|
if package_name is not None:
|
|
@@ -2347,6 +2356,17 @@ class NextJsProjectOptions(NextJsCommonProjectOptions, _NodeProjectOptions_d12f6
|
|
|
2347
2356
|
result = self._values.get("npm_token_secret")
|
|
2348
2357
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
2349
2358
|
|
|
2359
|
+
@builtins.property
|
|
2360
|
+
def npm_trusted_publishing(self) -> typing.Optional[builtins.bool]:
|
|
2361
|
+
'''(experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work.
|
|
2362
|
+
|
|
2363
|
+
:default: - false
|
|
2364
|
+
|
|
2365
|
+
:stability: experimental
|
|
2366
|
+
'''
|
|
2367
|
+
result = self._values.get("npm_trusted_publishing")
|
|
2368
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
2369
|
+
|
|
2350
2370
|
@builtins.property
|
|
2351
2371
|
def package_manager(self) -> typing.Optional[_NodePackageManager_3eb53bf6]:
|
|
2352
2372
|
'''(experimental) The Node Package Manager used to execute scripts.
|
|
@@ -3457,6 +3477,7 @@ class NextJsTypeScriptProject(
|
|
|
3457
3477
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
3458
3478
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
3459
3479
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
3480
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
3460
3481
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
3461
3482
|
package_name: typing.Optional[builtins.str] = None,
|
|
3462
3483
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -3612,6 +3633,7 @@ class NextJsTypeScriptProject(
|
|
|
3612
3633
|
:param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
|
|
3613
3634
|
:param npm_registry_url: (experimental) The base URL of the npm package registry. Must be a URL (e.g. start with "https://" or "http://") Default: "https://registry.npmjs.org"
|
|
3614
3635
|
:param npm_token_secret: (experimental) GitHub secret which contains the NPM token to use when publishing packages. Default: "NPM_TOKEN"
|
|
3636
|
+
:param npm_trusted_publishing: (experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work. Default: - false
|
|
3615
3637
|
:param package_manager: (experimental) The Node Package Manager used to execute scripts. Default: NodePackageManager.YARN_CLASSIC
|
|
3616
3638
|
:param package_name: (experimental) The "name" in package.json. Default: - defaults to project name
|
|
3617
3639
|
:param peer_dependency_options: (experimental) Options for ``peerDeps``.
|
|
@@ -3769,6 +3791,7 @@ class NextJsTypeScriptProject(
|
|
|
3769
3791
|
npm_registry=npm_registry,
|
|
3770
3792
|
npm_registry_url=npm_registry_url,
|
|
3771
3793
|
npm_token_secret=npm_token_secret,
|
|
3794
|
+
npm_trusted_publishing=npm_trusted_publishing,
|
|
3772
3795
|
package_manager=package_manager,
|
|
3773
3796
|
package_name=package_name,
|
|
3774
3797
|
peer_dependency_options=peer_dependency_options,
|
|
@@ -3912,6 +3935,7 @@ class NextJsTypeScriptProject(
|
|
|
3912
3935
|
"npm_registry": "npmRegistry",
|
|
3913
3936
|
"npm_registry_url": "npmRegistryUrl",
|
|
3914
3937
|
"npm_token_secret": "npmTokenSecret",
|
|
3938
|
+
"npm_trusted_publishing": "npmTrustedPublishing",
|
|
3915
3939
|
"package_manager": "packageManager",
|
|
3916
3940
|
"package_name": "packageName",
|
|
3917
3941
|
"peer_dependency_options": "peerDependencyOptions",
|
|
@@ -4074,6 +4098,7 @@ class NextJsTypeScriptProjectOptions(
|
|
|
4074
4098
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
4075
4099
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
4076
4100
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
4101
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
4077
4102
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
4078
4103
|
package_name: typing.Optional[builtins.str] = None,
|
|
4079
4104
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -4229,6 +4254,7 @@ class NextJsTypeScriptProjectOptions(
|
|
|
4229
4254
|
:param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
|
|
4230
4255
|
:param npm_registry_url: (experimental) The base URL of the npm package registry. Must be a URL (e.g. start with "https://" or "http://") Default: "https://registry.npmjs.org"
|
|
4231
4256
|
:param npm_token_secret: (experimental) GitHub secret which contains the NPM token to use when publishing packages. Default: "NPM_TOKEN"
|
|
4257
|
+
:param npm_trusted_publishing: (experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work. Default: - false
|
|
4232
4258
|
:param package_manager: (experimental) The Node Package Manager used to execute scripts. Default: NodePackageManager.YARN_CLASSIC
|
|
4233
4259
|
:param package_name: (experimental) The "name" in package.json. Default: - defaults to project name
|
|
4234
4260
|
:param peer_dependency_options: (experimental) Options for ``peerDeps``.
|
|
@@ -4451,6 +4477,7 @@ class NextJsTypeScriptProjectOptions(
|
|
|
4451
4477
|
check_type(argname="argument npm_registry", value=npm_registry, expected_type=type_hints["npm_registry"])
|
|
4452
4478
|
check_type(argname="argument npm_registry_url", value=npm_registry_url, expected_type=type_hints["npm_registry_url"])
|
|
4453
4479
|
check_type(argname="argument npm_token_secret", value=npm_token_secret, expected_type=type_hints["npm_token_secret"])
|
|
4480
|
+
check_type(argname="argument npm_trusted_publishing", value=npm_trusted_publishing, expected_type=type_hints["npm_trusted_publishing"])
|
|
4454
4481
|
check_type(argname="argument package_manager", value=package_manager, expected_type=type_hints["package_manager"])
|
|
4455
4482
|
check_type(argname="argument package_name", value=package_name, expected_type=type_hints["package_name"])
|
|
4456
4483
|
check_type(argname="argument peer_dependency_options", value=peer_dependency_options, expected_type=type_hints["peer_dependency_options"])
|
|
@@ -4664,6 +4691,8 @@ class NextJsTypeScriptProjectOptions(
|
|
|
4664
4691
|
self._values["npm_registry_url"] = npm_registry_url
|
|
4665
4692
|
if npm_token_secret is not None:
|
|
4666
4693
|
self._values["npm_token_secret"] = npm_token_secret
|
|
4694
|
+
if npm_trusted_publishing is not None:
|
|
4695
|
+
self._values["npm_trusted_publishing"] = npm_trusted_publishing
|
|
4667
4696
|
if package_manager is not None:
|
|
4668
4697
|
self._values["package_manager"] = package_manager
|
|
4669
4698
|
if package_name is not None:
|
|
@@ -5592,6 +5621,17 @@ class NextJsTypeScriptProjectOptions(
|
|
|
5592
5621
|
result = self._values.get("npm_token_secret")
|
|
5593
5622
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
5594
5623
|
|
|
5624
|
+
@builtins.property
|
|
5625
|
+
def npm_trusted_publishing(self) -> typing.Optional[builtins.bool]:
|
|
5626
|
+
'''(experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work.
|
|
5627
|
+
|
|
5628
|
+
:default: - false
|
|
5629
|
+
|
|
5630
|
+
:stability: experimental
|
|
5631
|
+
'''
|
|
5632
|
+
result = self._values.get("npm_trusted_publishing")
|
|
5633
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
5634
|
+
|
|
5595
5635
|
@builtins.property
|
|
5596
5636
|
def package_manager(self) -> typing.Optional[_NodePackageManager_3eb53bf6]:
|
|
5597
5637
|
'''(experimental) The Node Package Manager used to execute scripts.
|
|
@@ -7034,6 +7074,7 @@ class ReactProject(
|
|
|
7034
7074
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
7035
7075
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
7036
7076
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
7077
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
7037
7078
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
7038
7079
|
package_name: typing.Optional[builtins.str] = None,
|
|
7039
7080
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -7172,6 +7213,7 @@ class ReactProject(
|
|
|
7172
7213
|
:param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
|
|
7173
7214
|
:param npm_registry_url: (experimental) The base URL of the npm package registry. Must be a URL (e.g. start with "https://" or "http://") Default: "https://registry.npmjs.org"
|
|
7174
7215
|
:param npm_token_secret: (experimental) GitHub secret which contains the NPM token to use when publishing packages. Default: "NPM_TOKEN"
|
|
7216
|
+
:param npm_trusted_publishing: (experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work. Default: - false
|
|
7175
7217
|
:param package_manager: (experimental) The Node Package Manager used to execute scripts. Default: NodePackageManager.YARN_CLASSIC
|
|
7176
7218
|
:param package_name: (experimental) The "name" in package.json. Default: - defaults to project name
|
|
7177
7219
|
:param peer_dependency_options: (experimental) Options for ``peerDeps``.
|
|
@@ -7312,6 +7354,7 @@ class ReactProject(
|
|
|
7312
7354
|
npm_registry=npm_registry,
|
|
7313
7355
|
npm_registry_url=npm_registry_url,
|
|
7314
7356
|
npm_token_secret=npm_token_secret,
|
|
7357
|
+
npm_trusted_publishing=npm_trusted_publishing,
|
|
7315
7358
|
package_manager=package_manager,
|
|
7316
7359
|
package_name=package_name,
|
|
7317
7360
|
peer_dependency_options=peer_dependency_options,
|
|
@@ -7747,6 +7790,7 @@ class ReactTypeScriptProject(
|
|
|
7747
7790
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
7748
7791
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
7749
7792
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
7793
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
7750
7794
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
7751
7795
|
package_name: typing.Optional[builtins.str] = None,
|
|
7752
7796
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -7901,6 +7945,7 @@ class ReactTypeScriptProject(
|
|
|
7901
7945
|
:param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
|
|
7902
7946
|
:param npm_registry_url: (experimental) The base URL of the npm package registry. Must be a URL (e.g. start with "https://" or "http://") Default: "https://registry.npmjs.org"
|
|
7903
7947
|
:param npm_token_secret: (experimental) GitHub secret which contains the NPM token to use when publishing packages. Default: "NPM_TOKEN"
|
|
7948
|
+
:param npm_trusted_publishing: (experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work. Default: - false
|
|
7904
7949
|
:param package_manager: (experimental) The Node Package Manager used to execute scripts. Default: NodePackageManager.YARN_CLASSIC
|
|
7905
7950
|
:param package_name: (experimental) The "name" in package.json. Default: - defaults to project name
|
|
7906
7951
|
:param peer_dependency_options: (experimental) Options for ``peerDeps``.
|
|
@@ -8057,6 +8102,7 @@ class ReactTypeScriptProject(
|
|
|
8057
8102
|
npm_registry=npm_registry,
|
|
8058
8103
|
npm_registry_url=npm_registry_url,
|
|
8059
8104
|
npm_token_secret=npm_token_secret,
|
|
8105
|
+
npm_trusted_publishing=npm_trusted_publishing,
|
|
8060
8106
|
package_manager=package_manager,
|
|
8061
8107
|
package_name=package_name,
|
|
8062
8108
|
peer_dependency_options=peer_dependency_options,
|
|
@@ -8179,6 +8225,7 @@ class ReactTypeScriptProject(
|
|
|
8179
8225
|
"npm_registry": "npmRegistry",
|
|
8180
8226
|
"npm_registry_url": "npmRegistryUrl",
|
|
8181
8227
|
"npm_token_secret": "npmTokenSecret",
|
|
8228
|
+
"npm_trusted_publishing": "npmTrustedPublishing",
|
|
8182
8229
|
"package_manager": "packageManager",
|
|
8183
8230
|
"package_name": "packageName",
|
|
8184
8231
|
"peer_dependency_options": "peerDependencyOptions",
|
|
@@ -8340,6 +8387,7 @@ class ReactTypeScriptProjectOptions(
|
|
|
8340
8387
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
8341
8388
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
8342
8389
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
8390
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
8343
8391
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
8344
8392
|
package_name: typing.Optional[builtins.str] = None,
|
|
8345
8393
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -8494,6 +8542,7 @@ class ReactTypeScriptProjectOptions(
|
|
|
8494
8542
|
:param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
|
|
8495
8543
|
:param npm_registry_url: (experimental) The base URL of the npm package registry. Must be a URL (e.g. start with "https://" or "http://") Default: "https://registry.npmjs.org"
|
|
8496
8544
|
:param npm_token_secret: (experimental) GitHub secret which contains the NPM token to use when publishing packages. Default: "NPM_TOKEN"
|
|
8545
|
+
:param npm_trusted_publishing: (experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work. Default: - false
|
|
8497
8546
|
:param package_manager: (experimental) The Node Package Manager used to execute scripts. Default: NodePackageManager.YARN_CLASSIC
|
|
8498
8547
|
:param package_name: (experimental) The "name" in package.json. Default: - defaults to project name
|
|
8499
8548
|
:param peer_dependency_options: (experimental) Options for ``peerDeps``.
|
|
@@ -8715,6 +8764,7 @@ class ReactTypeScriptProjectOptions(
|
|
|
8715
8764
|
check_type(argname="argument npm_registry", value=npm_registry, expected_type=type_hints["npm_registry"])
|
|
8716
8765
|
check_type(argname="argument npm_registry_url", value=npm_registry_url, expected_type=type_hints["npm_registry_url"])
|
|
8717
8766
|
check_type(argname="argument npm_token_secret", value=npm_token_secret, expected_type=type_hints["npm_token_secret"])
|
|
8767
|
+
check_type(argname="argument npm_trusted_publishing", value=npm_trusted_publishing, expected_type=type_hints["npm_trusted_publishing"])
|
|
8718
8768
|
check_type(argname="argument package_manager", value=package_manager, expected_type=type_hints["package_manager"])
|
|
8719
8769
|
check_type(argname="argument package_name", value=package_name, expected_type=type_hints["package_name"])
|
|
8720
8770
|
check_type(argname="argument peer_dependency_options", value=peer_dependency_options, expected_type=type_hints["peer_dependency_options"])
|
|
@@ -8925,6 +8975,8 @@ class ReactTypeScriptProjectOptions(
|
|
|
8925
8975
|
self._values["npm_registry_url"] = npm_registry_url
|
|
8926
8976
|
if npm_token_secret is not None:
|
|
8927
8977
|
self._values["npm_token_secret"] = npm_token_secret
|
|
8978
|
+
if npm_trusted_publishing is not None:
|
|
8979
|
+
self._values["npm_trusted_publishing"] = npm_trusted_publishing
|
|
8928
8980
|
if package_manager is not None:
|
|
8929
8981
|
self._values["package_manager"] = package_manager
|
|
8930
8982
|
if package_name is not None:
|
|
@@ -9831,6 +9883,17 @@ class ReactTypeScriptProjectOptions(
|
|
|
9831
9883
|
result = self._values.get("npm_token_secret")
|
|
9832
9884
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
9833
9885
|
|
|
9886
|
+
@builtins.property
|
|
9887
|
+
def npm_trusted_publishing(self) -> typing.Optional[builtins.bool]:
|
|
9888
|
+
'''(experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work.
|
|
9889
|
+
|
|
9890
|
+
:default: - false
|
|
9891
|
+
|
|
9892
|
+
:stability: experimental
|
|
9893
|
+
'''
|
|
9894
|
+
result = self._values.get("npm_trusted_publishing")
|
|
9895
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
9896
|
+
|
|
9834
9897
|
@builtins.property
|
|
9835
9898
|
def package_manager(self) -> typing.Optional[_NodePackageManager_3eb53bf6]:
|
|
9836
9899
|
'''(experimental) The Node Package Manager used to execute scripts.
|
|
@@ -11265,6 +11328,7 @@ class ReactComponentOptions(ReactRewireOptions):
|
|
|
11265
11328
|
"npm_registry": "npmRegistry",
|
|
11266
11329
|
"npm_registry_url": "npmRegistryUrl",
|
|
11267
11330
|
"npm_token_secret": "npmTokenSecret",
|
|
11331
|
+
"npm_trusted_publishing": "npmTrustedPublishing",
|
|
11268
11332
|
"package_manager": "packageManager",
|
|
11269
11333
|
"package_name": "packageName",
|
|
11270
11334
|
"peer_dependency_options": "peerDependencyOptions",
|
|
@@ -11407,6 +11471,7 @@ class ReactProjectOptions(_NodeProjectOptions_d12f6f3b, ReactRewireOptions):
|
|
|
11407
11471
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
11408
11472
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
11409
11473
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
11474
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
11410
11475
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
11411
11476
|
package_name: typing.Optional[builtins.str] = None,
|
|
11412
11477
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -11545,6 +11610,7 @@ class ReactProjectOptions(_NodeProjectOptions_d12f6f3b, ReactRewireOptions):
|
|
|
11545
11610
|
:param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
|
|
11546
11611
|
:param npm_registry_url: (experimental) The base URL of the npm package registry. Must be a URL (e.g. start with "https://" or "http://") Default: "https://registry.npmjs.org"
|
|
11547
11612
|
:param npm_token_secret: (experimental) GitHub secret which contains the NPM token to use when publishing packages. Default: "NPM_TOKEN"
|
|
11613
|
+
:param npm_trusted_publishing: (experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work. Default: - false
|
|
11548
11614
|
:param package_manager: (experimental) The Node Package Manager used to execute scripts. Default: NodePackageManager.YARN_CLASSIC
|
|
11549
11615
|
:param package_name: (experimental) The "name" in package.json. Default: - defaults to project name
|
|
11550
11616
|
:param peer_dependency_options: (experimental) Options for ``peerDeps``.
|
|
@@ -11740,6 +11806,7 @@ class ReactProjectOptions(_NodeProjectOptions_d12f6f3b, ReactRewireOptions):
|
|
|
11740
11806
|
check_type(argname="argument npm_registry", value=npm_registry, expected_type=type_hints["npm_registry"])
|
|
11741
11807
|
check_type(argname="argument npm_registry_url", value=npm_registry_url, expected_type=type_hints["npm_registry_url"])
|
|
11742
11808
|
check_type(argname="argument npm_token_secret", value=npm_token_secret, expected_type=type_hints["npm_token_secret"])
|
|
11809
|
+
check_type(argname="argument npm_trusted_publishing", value=npm_trusted_publishing, expected_type=type_hints["npm_trusted_publishing"])
|
|
11743
11810
|
check_type(argname="argument package_manager", value=package_manager, expected_type=type_hints["package_manager"])
|
|
11744
11811
|
check_type(argname="argument package_name", value=package_name, expected_type=type_hints["package_name"])
|
|
11745
11812
|
check_type(argname="argument peer_dependency_options", value=peer_dependency_options, expected_type=type_hints["peer_dependency_options"])
|
|
@@ -11934,6 +12001,8 @@ class ReactProjectOptions(_NodeProjectOptions_d12f6f3b, ReactRewireOptions):
|
|
|
11934
12001
|
self._values["npm_registry_url"] = npm_registry_url
|
|
11935
12002
|
if npm_token_secret is not None:
|
|
11936
12003
|
self._values["npm_token_secret"] = npm_token_secret
|
|
12004
|
+
if npm_trusted_publishing is not None:
|
|
12005
|
+
self._values["npm_trusted_publishing"] = npm_trusted_publishing
|
|
11937
12006
|
if package_manager is not None:
|
|
11938
12007
|
self._values["package_manager"] = package_manager
|
|
11939
12008
|
if package_name is not None:
|
|
@@ -12808,6 +12877,17 @@ class ReactProjectOptions(_NodeProjectOptions_d12f6f3b, ReactRewireOptions):
|
|
|
12808
12877
|
result = self._values.get("npm_token_secret")
|
|
12809
12878
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
12810
12879
|
|
|
12880
|
+
@builtins.property
|
|
12881
|
+
def npm_trusted_publishing(self) -> typing.Optional[builtins.bool]:
|
|
12882
|
+
'''(experimental) Use trusted publishing for publishing to npmjs.com Needs to be pre-configured on npm.js to work.
|
|
12883
|
+
|
|
12884
|
+
:default: - false
|
|
12885
|
+
|
|
12886
|
+
:stability: experimental
|
|
12887
|
+
'''
|
|
12888
|
+
result = self._values.get("npm_trusted_publishing")
|
|
12889
|
+
return typing.cast(typing.Optional[builtins.bool], result)
|
|
12890
|
+
|
|
12811
12891
|
@builtins.property
|
|
12812
12892
|
def package_manager(self) -> typing.Optional[_NodePackageManager_3eb53bf6]:
|
|
12813
12893
|
'''(experimental) The Node Package Manager used to execute scripts.
|
|
@@ -13941,6 +14021,7 @@ def _typecheckingstub__2068b6deaa762f0141179f4dddaab2fd95c220b31368afa8e4275bc0c
|
|
|
13941
14021
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
13942
14022
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
13943
14023
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
14024
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
13944
14025
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
13945
14026
|
package_name: typing.Optional[builtins.str] = None,
|
|
13946
14027
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -14084,6 +14165,7 @@ def _typecheckingstub__1625ee9ed48b5cb80b54d37b499e6e97e54a05364b23a4e4ec57f4bf3
|
|
|
14084
14165
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
14085
14166
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
14086
14167
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
14168
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
14087
14169
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
14088
14170
|
package_name: typing.Optional[builtins.str] = None,
|
|
14089
14171
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -14306,6 +14388,7 @@ def _typecheckingstub__6fe6b356cc73a5676618b27e8c5049b874449164943781f93c243772e
|
|
|
14306
14388
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
14307
14389
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
14308
14390
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
14391
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
14309
14392
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
14310
14393
|
package_name: typing.Optional[builtins.str] = None,
|
|
14311
14394
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -14487,6 +14570,7 @@ def _typecheckingstub__3fe2ab54a9ff384e98c4a85a960cf579b3a335a93d5b485eb74555345
|
|
|
14487
14570
|
npm_registry: typing.Optional[builtins.str] = None,
|
|
14488
14571
|
npm_registry_url: typing.Optional[builtins.str] = None,
|
|
14489
14572
|
npm_token_secret: typing.Optional[builtins.str] = None,
|
|
14573
|
+
npm_trusted_publishing: typing.Optional[builtins.bool] = None,
|
|
14490
14574
|
package_manager: typing.Optional[_NodePackageManager_3eb53bf6] = None,
|
|
14491
14575
|
package_name: typing.Optional[builtins.str] = None,
|
|
14492
14576
|
peer_dependency_options: typing.Optional[typing.Union[_PeerDependencyOptions_99d7d493, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
@@ -8,7 +8,7 @@ if "JSII_RUNTIME_PACKAGE_CACHE" not in os.environ:
|
|
|
8
8
|
os.environ["JSII_RUNTIME_PACKAGE_CACHE"] = "disabled"
|
|
9
9
|
|
|
10
10
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
11
|
-
"projen", "0.95.
|
|
11
|
+
"projen", "0.95.4", "projen", "projen@0.95.4.jsii.tgz"
|
|
12
12
|
)
|
|
13
13
|
|
|
14
14
|
exit_code = __jsii_assembly__.invokeBinScript("projen", "projen", sys.argv[1:])
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
projen/__init__.py,sha256=enk9OVj1wwybFoSxSFFljuOcgiHWh-_izr2fj57oBdw,682920
|
|
2
|
+
projen/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
projen/_jsii/__init__.py,sha256=1aB8I4r5tzFCxO3OLoH7AaP8q6k2ivpwFxuJYZC3xQg,1404
|
|
4
|
+
projen/_jsii/projen@0.95.4.jsii.tgz,sha256=v8PraPyOUMKDP3to_fN8ZedCH31Jc1yZlJQdXNk3N0I,2930085
|
|
5
|
+
projen/awscdk/__init__.py,sha256=UKSV6YtkAP7K5ENKVEfLW5-a3S8HXr1CcdDvuTdwS0w,1144447
|
|
6
|
+
projen/build/__init__.py,sha256=CW4d2sEJXpP5DAOJKdOt8jaRSfdDjiWdb66k8JBsvRI,54225
|
|
7
|
+
projen/cdk/__init__.py,sha256=J8me0bPT37Nwj3x0rWDN3sNTExQAXMUljdzhE6dV2ro,553488
|
|
8
|
+
projen/cdk8s/__init__.py,sha256=YHwHEgQT86lUTBA2x09DJsodCeTDF7uENnQ0SyVfNXQ,631625
|
|
9
|
+
projen/cdktf/__init__.py,sha256=-yWnxXi8YEQBCgKQqrWhpd74BfnuZEO_PgpfJ_Re2_Q,241494
|
|
10
|
+
projen/circleci/__init__.py,sha256=RvY_jD_QyDzURlD54vqebZrodhRv86Mn-I_YKH9ccw4,77781
|
|
11
|
+
projen/github/__init__.py,sha256=u3gAZFXz46k_IAN5EdfGwJj6phjQePm41TjwlWpDwcs,481816
|
|
12
|
+
projen/github/workflows/__init__.py,sha256=FvVHeCQ1lGQaMoXNsAQSOomS80eM5KO53JzEMRRJMtk,270268
|
|
13
|
+
projen/gitlab/__init__.py,sha256=BiiBQonVYZgdGo3NLXxJ6WcW47UuGQjBkTRLGm09Ozk,207826
|
|
14
|
+
projen/java/__init__.py,sha256=Y8yfXiL4RNXtxIc0LB7O3K0CKyw9TkQKkVXgJ57A9Fw,195299
|
|
15
|
+
projen/javascript/__init__.py,sha256=WaYQxwjjGn3hcbDoEcNKtQTbWtlZ6lD9bNvXR0eYmq8,900309
|
|
16
|
+
projen/javascript/biome_config/__init__.py,sha256=MYHs9YMtqiLfZP26ZPpafymc_ysKN7PE6cjvyScjjCU,224184
|
|
17
|
+
projen/python/__init__.py,sha256=Qir5Sm6lrXrWSveA26s7iDp57DGa4JLde37I2EZMRJU,220487
|
|
18
|
+
projen/release/__init__.py,sha256=4HYFHWMik-vWr7U0afYnk6ghl9_LLdMtHrfb8tIfxxU,331617
|
|
19
|
+
projen/typescript/__init__.py,sha256=nfLT-1tkUIV6Ppei_PooAt-MB6LBJzHqEv93t4tlbb8,531260
|
|
20
|
+
projen/vscode/__init__.py,sha256=eY_k2L0CXCqe1MKhP9syyb1qJyESBFg4ru2KlzuJ2m8,70008
|
|
21
|
+
projen/web/__init__.py,sha256=Q6DgKaFSFsLgPH3_a7WtRfBZfyn221RhB_rxbtWc6Ss,862322
|
|
22
|
+
projen-0.95.4.data/scripts/projen,sha256=8_PoRq_mXIGgEL5EeZiTy7Kajk0tsWtszgrriqpd54E,356
|
|
23
|
+
projen-0.95.4.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
24
|
+
projen-0.95.4.dist-info/METADATA,sha256=T7kH0XCFEzEiLXYINDMqt0TPIcKKHKQy85CkFkeGiZw,79609
|
|
25
|
+
projen-0.95.4.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
26
|
+
projen-0.95.4.dist-info/top_level.txt,sha256=Ul8VGUArFqejE5BMSked3l6NMBO6gjQEWywhM5gw1zw,7
|
|
27
|
+
projen-0.95.4.dist-info/RECORD,,
|
|
Binary file
|