projen 0.95.5__py3-none-any.whl → 0.96.0__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/__init__.py +24 -0
- projen/_jsii/__init__.py +1 -1
- projen/_jsii/projen@0.96.0.jsii.tgz +0 -0
- projen/awscdk/__init__.py +8 -8
- projen/cdk/__init__.py +8 -8
- projen/cdk8s/__init__.py +4 -4
- projen/cdktf/__init__.py +4 -4
- projen/javascript/biome_config/__init__.py +4 -4
- {projen-0.95.5.data → projen-0.96.0.data}/scripts/projen +1 -1
- {projen-0.95.5.dist-info → projen-0.96.0.dist-info}/METADATA +2 -2
- {projen-0.95.5.dist-info → projen-0.96.0.dist-info}/RECORD +14 -14
- projen/_jsii/projen@0.95.5.jsii.tgz +0 -0
- {projen-0.95.5.dist-info → projen-0.96.0.dist-info}/LICENSE +0 -0
- {projen-0.95.5.dist-info → projen-0.96.0.dist-info}/WHEEL +0 -0
- {projen-0.95.5.dist-info → projen-0.96.0.dist-info}/top_level.txt +0 -0
projen/__init__.py
CHANGED
|
@@ -3012,6 +3012,23 @@ class GitAttributesFile(
|
|
|
3012
3012
|
'''
|
|
3013
3013
|
return typing.cast(None, jsii.invoke(self, "preSynthesize", []))
|
|
3014
3014
|
|
|
3015
|
+
@jsii.member(jsii_name="removeAttributes")
|
|
3016
|
+
def remove_attributes(self, glob: builtins.str, *attributes: builtins.str) -> None:
|
|
3017
|
+
'''(experimental) Removes attributes from a set of files.
|
|
3018
|
+
|
|
3019
|
+
If no attributes are provided, the glob pattern will be removed completely.
|
|
3020
|
+
|
|
3021
|
+
:param glob: Glob pattern to modify.
|
|
3022
|
+
:param attributes: Attributes to remove from matched files.
|
|
3023
|
+
|
|
3024
|
+
:stability: experimental
|
|
3025
|
+
'''
|
|
3026
|
+
if __debug__:
|
|
3027
|
+
type_hints = typing.get_type_hints(_typecheckingstub__573b65747d3cd070f990730baa2e2b06016818d32122c7fbc2696b8513582a7d)
|
|
3028
|
+
check_type(argname="argument glob", value=glob, expected_type=type_hints["glob"])
|
|
3029
|
+
check_type(argname="argument attributes", value=attributes, expected_type=typing.Tuple[type_hints["attributes"], ...]) # pyright: ignore [reportGeneralTypeIssues]
|
|
3030
|
+
return typing.cast(None, jsii.invoke(self, "removeAttributes", [glob, *attributes]))
|
|
3031
|
+
|
|
3015
3032
|
@jsii.member(jsii_name="synthesizeContent")
|
|
3016
3033
|
def _synthesize_content(self, _: "IResolver") -> typing.Optional[builtins.str]:
|
|
3017
3034
|
'''(experimental) Implemented by derived classes and returns the contents of the file to emit.
|
|
@@ -13065,6 +13082,13 @@ def _typecheckingstub__ed3c05c2bc87434261501604cb4ca8386e08b16567b40f693170ab90f
|
|
|
13065
13082
|
"""Type checking stubs"""
|
|
13066
13083
|
pass
|
|
13067
13084
|
|
|
13085
|
+
def _typecheckingstub__573b65747d3cd070f990730baa2e2b06016818d32122c7fbc2696b8513582a7d(
|
|
13086
|
+
glob: builtins.str,
|
|
13087
|
+
*attributes: builtins.str,
|
|
13088
|
+
) -> None:
|
|
13089
|
+
"""Type checking stubs"""
|
|
13090
|
+
pass
|
|
13091
|
+
|
|
13068
13092
|
def _typecheckingstub__4d57ceb4d14bb3b3eac67478ac542d99ca5c6994286fdea034dacdf4b64fd14b(
|
|
13069
13093
|
_: IResolver,
|
|
13070
13094
|
) -> None:
|
projen/_jsii/__init__.py
CHANGED
|
@@ -31,7 +31,7 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
|
|
|
31
31
|
import constructs._jsii
|
|
32
32
|
|
|
33
33
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
34
|
-
"projen", "0.
|
|
34
|
+
"projen", "0.96.0", __name__[0:-6], "projen@0.96.0.jsii.tgz"
|
|
35
35
|
)
|
|
36
36
|
|
|
37
37
|
__all__ = [
|
|
Binary file
|
projen/awscdk/__init__.py
CHANGED
|
@@ -494,7 +494,7 @@ class AwsCdkConstructLibrary(
|
|
|
494
494
|
:param docgen_file_path: (experimental) File path for generated docs. Default: "API.md"
|
|
495
495
|
:param dotnet:
|
|
496
496
|
:param exclude_typescript: (experimental) Accepts a list of glob patterns. Files matching any of those patterns will be excluded from the TypeScript compiler input. By default, jsii will include all *.ts files (except .d.ts files) in the TypeScript compiler input. This can be problematic for example when the package's build or test procedure generates .ts files that cannot be compiled with jsii's compiler settings.
|
|
497
|
-
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.
|
|
497
|
+
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.8.0"
|
|
498
498
|
:param publish_to_go: (experimental) Publish Go bindings to a git repository. Default: - no publishing
|
|
499
499
|
:param publish_to_maven: (experimental) Publish to maven. Default: - no publishing
|
|
500
500
|
:param publish_to_nuget: (experimental) Publish to NuGet. Default: - no publishing
|
|
@@ -3781,7 +3781,7 @@ class ConstructLibraryAws(
|
|
|
3781
3781
|
:param docgen_file_path: (experimental) File path for generated docs. Default: "API.md"
|
|
3782
3782
|
:param dotnet:
|
|
3783
3783
|
:param exclude_typescript: (experimental) Accepts a list of glob patterns. Files matching any of those patterns will be excluded from the TypeScript compiler input. By default, jsii will include all *.ts files (except .d.ts files) in the TypeScript compiler input. This can be problematic for example when the package's build or test procedure generates .ts files that cannot be compiled with jsii's compiler settings.
|
|
3784
|
-
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.
|
|
3784
|
+
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.8.0"
|
|
3785
3785
|
:param publish_to_go: (experimental) Publish Go bindings to a git repository. Default: - no publishing
|
|
3786
3786
|
:param publish_to_maven: (experimental) Publish to maven. Default: - no publishing
|
|
3787
3787
|
:param publish_to_nuget: (experimental) Publish to NuGet. Default: - no publishing
|
|
@@ -6593,7 +6593,7 @@ class AwsCdkConstructLibraryOptions(
|
|
|
6593
6593
|
:param docgen_file_path: (experimental) File path for generated docs. Default: "API.md"
|
|
6594
6594
|
:param dotnet:
|
|
6595
6595
|
:param exclude_typescript: (experimental) Accepts a list of glob patterns. Files matching any of those patterns will be excluded from the TypeScript compiler input. By default, jsii will include all *.ts files (except .d.ts files) in the TypeScript compiler input. This can be problematic for example when the package's build or test procedure generates .ts files that cannot be compiled with jsii's compiler settings.
|
|
6596
|
-
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.
|
|
6596
|
+
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.8.0"
|
|
6597
6597
|
:param publish_to_go: (experimental) Publish Go bindings to a git repository. Default: - no publishing
|
|
6598
6598
|
:param publish_to_maven: (experimental) Publish to maven. Default: - no publishing
|
|
6599
6599
|
:param publish_to_nuget: (experimental) Publish to NuGet. Default: - no publishing
|
|
@@ -9255,10 +9255,10 @@ class AwsCdkConstructLibraryOptions(
|
|
|
9255
9255
|
and should remain on the same minor, so we recommend using a ``~`` dependency
|
|
9256
9256
|
(e.g. ``~5.0.0``).
|
|
9257
9257
|
|
|
9258
|
-
:default: "~5.
|
|
9258
|
+
:default: "~5.8.0"
|
|
9259
9259
|
|
|
9260
9260
|
:stability: experimental
|
|
9261
|
-
:pjnew: "~5.
|
|
9261
|
+
:pjnew: "~5.9.0"
|
|
9262
9262
|
'''
|
|
9263
9263
|
result = self._values.get("jsii_version")
|
|
9264
9264
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
@@ -16162,7 +16162,7 @@ class ConstructLibraryAwsOptions(AwsCdkConstructLibraryOptions):
|
|
|
16162
16162
|
:param docgen_file_path: (experimental) File path for generated docs. Default: "API.md"
|
|
16163
16163
|
:param dotnet:
|
|
16164
16164
|
:param exclude_typescript: (experimental) Accepts a list of glob patterns. Files matching any of those patterns will be excluded from the TypeScript compiler input. By default, jsii will include all *.ts files (except .d.ts files) in the TypeScript compiler input. This can be problematic for example when the package's build or test procedure generates .ts files that cannot be compiled with jsii's compiler settings.
|
|
16165
|
-
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.
|
|
16165
|
+
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.8.0"
|
|
16166
16166
|
:param publish_to_go: (experimental) Publish Go bindings to a git repository. Default: - no publishing
|
|
16167
16167
|
:param publish_to_maven: (experimental) Publish to maven. Default: - no publishing
|
|
16168
16168
|
:param publish_to_nuget: (experimental) Publish to NuGet. Default: - no publishing
|
|
@@ -18826,10 +18826,10 @@ class ConstructLibraryAwsOptions(AwsCdkConstructLibraryOptions):
|
|
|
18826
18826
|
and should remain on the same minor, so we recommend using a ``~`` dependency
|
|
18827
18827
|
(e.g. ``~5.0.0``).
|
|
18828
18828
|
|
|
18829
|
-
:default: "~5.
|
|
18829
|
+
:default: "~5.8.0"
|
|
18830
18830
|
|
|
18831
18831
|
:stability: experimental
|
|
18832
|
-
:pjnew: "~5.
|
|
18832
|
+
:pjnew: "~5.9.0"
|
|
18833
18833
|
'''
|
|
18834
18834
|
result = self._values.get("jsii_version")
|
|
18835
18835
|
return typing.cast(typing.Optional[builtins.str], result)
|
projen/cdk/__init__.py
CHANGED
|
@@ -1598,7 +1598,7 @@ class JsiiProject(
|
|
|
1598
1598
|
:param docgen_file_path: (experimental) File path for generated docs. Default: "API.md"
|
|
1599
1599
|
:param dotnet:
|
|
1600
1600
|
:param exclude_typescript: (experimental) Accepts a list of glob patterns. Files matching any of those patterns will be excluded from the TypeScript compiler input. By default, jsii will include all *.ts files (except .d.ts files) in the TypeScript compiler input. This can be problematic for example when the package's build or test procedure generates .ts files that cannot be compiled with jsii's compiler settings.
|
|
1601
|
-
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.
|
|
1601
|
+
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.8.0"
|
|
1602
1602
|
:param publish_to_go: (experimental) Publish Go bindings to a git repository. Default: - no publishing
|
|
1603
1603
|
:param publish_to_maven: (experimental) Publish to maven. Default: - no publishing
|
|
1604
1604
|
:param publish_to_nuget: (experimental) Publish to NuGet. Default: - no publishing
|
|
@@ -2443,7 +2443,7 @@ class JsiiProjectOptions(_TypeScriptProjectOptions_d10c83f7):
|
|
|
2443
2443
|
:param docgen_file_path: (experimental) File path for generated docs. Default: "API.md"
|
|
2444
2444
|
:param dotnet:
|
|
2445
2445
|
:param exclude_typescript: (experimental) Accepts a list of glob patterns. Files matching any of those patterns will be excluded from the TypeScript compiler input. By default, jsii will include all *.ts files (except .d.ts files) in the TypeScript compiler input. This can be problematic for example when the package's build or test procedure generates .ts files that cannot be compiled with jsii's compiler settings.
|
|
2446
|
-
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.
|
|
2446
|
+
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.8.0"
|
|
2447
2447
|
:param publish_to_go: (experimental) Publish Go bindings to a git repository. Default: - no publishing
|
|
2448
2448
|
:param publish_to_maven: (experimental) Publish to maven. Default: - no publishing
|
|
2449
2449
|
:param publish_to_nuget: (experimental) Publish to NuGet. Default: - no publishing
|
|
@@ -5038,10 +5038,10 @@ class JsiiProjectOptions(_TypeScriptProjectOptions_d10c83f7):
|
|
|
5038
5038
|
and should remain on the same minor, so we recommend using a ``~`` dependency
|
|
5039
5039
|
(e.g. ``~5.0.0``).
|
|
5040
5040
|
|
|
5041
|
-
:default: "~5.
|
|
5041
|
+
:default: "~5.8.0"
|
|
5042
5042
|
|
|
5043
5043
|
:stability: experimental
|
|
5044
|
-
:pjnew: "~5.
|
|
5044
|
+
:pjnew: "~5.9.0"
|
|
5045
5045
|
'''
|
|
5046
5046
|
result = self._values.get("jsii_version")
|
|
5047
5047
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
@@ -5586,7 +5586,7 @@ class ConstructLibrary(
|
|
|
5586
5586
|
:param docgen_file_path: (experimental) File path for generated docs. Default: "API.md"
|
|
5587
5587
|
:param dotnet:
|
|
5588
5588
|
:param exclude_typescript: (experimental) Accepts a list of glob patterns. Files matching any of those patterns will be excluded from the TypeScript compiler input. By default, jsii will include all *.ts files (except .d.ts files) in the TypeScript compiler input. This can be problematic for example when the package's build or test procedure generates .ts files that cannot be compiled with jsii's compiler settings.
|
|
5589
|
-
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.
|
|
5589
|
+
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.8.0"
|
|
5590
5590
|
:param publish_to_go: (experimental) Publish Go bindings to a git repository. Default: - no publishing
|
|
5591
5591
|
:param publish_to_maven: (experimental) Publish to maven. Default: - no publishing
|
|
5592
5592
|
:param publish_to_nuget: (experimental) Publish to NuGet. Default: - no publishing
|
|
@@ -6441,7 +6441,7 @@ class ConstructLibraryOptions(JsiiProjectOptions):
|
|
|
6441
6441
|
:param docgen_file_path: (experimental) File path for generated docs. Default: "API.md"
|
|
6442
6442
|
:param dotnet:
|
|
6443
6443
|
:param exclude_typescript: (experimental) Accepts a list of glob patterns. Files matching any of those patterns will be excluded from the TypeScript compiler input. By default, jsii will include all *.ts files (except .d.ts files) in the TypeScript compiler input. This can be problematic for example when the package's build or test procedure generates .ts files that cannot be compiled with jsii's compiler settings.
|
|
6444
|
-
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.
|
|
6444
|
+
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.8.0"
|
|
6445
6445
|
:param publish_to_go: (experimental) Publish Go bindings to a git repository. Default: - no publishing
|
|
6446
6446
|
:param publish_to_maven: (experimental) Publish to maven. Default: - no publishing
|
|
6447
6447
|
:param publish_to_nuget: (experimental) Publish to NuGet. Default: - no publishing
|
|
@@ -9042,10 +9042,10 @@ class ConstructLibraryOptions(JsiiProjectOptions):
|
|
|
9042
9042
|
and should remain on the same minor, so we recommend using a ``~`` dependency
|
|
9043
9043
|
(e.g. ``~5.0.0``).
|
|
9044
9044
|
|
|
9045
|
-
:default: "~5.
|
|
9045
|
+
:default: "~5.8.0"
|
|
9046
9046
|
|
|
9047
9047
|
:stability: experimental
|
|
9048
|
-
:pjnew: "~5.
|
|
9048
|
+
:pjnew: "~5.9.0"
|
|
9049
9049
|
'''
|
|
9050
9050
|
result = self._values.get("jsii_version")
|
|
9051
9051
|
return typing.cast(typing.Optional[builtins.str], result)
|
projen/cdk8s/__init__.py
CHANGED
|
@@ -6381,7 +6381,7 @@ class ConstructLibraryCdk8s(
|
|
|
6381
6381
|
:param docgen_file_path: (experimental) File path for generated docs. Default: "API.md"
|
|
6382
6382
|
:param dotnet:
|
|
6383
6383
|
:param exclude_typescript: (experimental) Accepts a list of glob patterns. Files matching any of those patterns will be excluded from the TypeScript compiler input. By default, jsii will include all *.ts files (except .d.ts files) in the TypeScript compiler input. This can be problematic for example when the package's build or test procedure generates .ts files that cannot be compiled with jsii's compiler settings.
|
|
6384
|
-
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.
|
|
6384
|
+
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.8.0"
|
|
6385
6385
|
:param publish_to_go: (experimental) Publish Go bindings to a git repository. Default: - no publishing
|
|
6386
6386
|
:param publish_to_maven: (experimental) Publish to maven. Default: - no publishing
|
|
6387
6387
|
:param publish_to_nuget: (experimental) Publish to NuGet. Default: - no publishing
|
|
@@ -7265,7 +7265,7 @@ class ConstructLibraryCdk8sOptions(_ConstructLibraryOptions_dcd2adc0):
|
|
|
7265
7265
|
:param docgen_file_path: (experimental) File path for generated docs. Default: "API.md"
|
|
7266
7266
|
:param dotnet:
|
|
7267
7267
|
:param exclude_typescript: (experimental) Accepts a list of glob patterns. Files matching any of those patterns will be excluded from the TypeScript compiler input. By default, jsii will include all *.ts files (except .d.ts files) in the TypeScript compiler input. This can be problematic for example when the package's build or test procedure generates .ts files that cannot be compiled with jsii's compiler settings.
|
|
7268
|
-
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.
|
|
7268
|
+
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.8.0"
|
|
7269
7269
|
:param publish_to_go: (experimental) Publish Go bindings to a git repository. Default: - no publishing
|
|
7270
7270
|
:param publish_to_maven: (experimental) Publish to maven. Default: - no publishing
|
|
7271
7271
|
:param publish_to_nuget: (experimental) Publish to NuGet. Default: - no publishing
|
|
@@ -9889,10 +9889,10 @@ class ConstructLibraryCdk8sOptions(_ConstructLibraryOptions_dcd2adc0):
|
|
|
9889
9889
|
and should remain on the same minor, so we recommend using a ``~`` dependency
|
|
9890
9890
|
(e.g. ``~5.0.0``).
|
|
9891
9891
|
|
|
9892
|
-
:default: "~5.
|
|
9892
|
+
:default: "~5.8.0"
|
|
9893
9893
|
|
|
9894
9894
|
:stability: experimental
|
|
9895
|
-
:pjnew: "~5.
|
|
9895
|
+
:pjnew: "~5.9.0"
|
|
9896
9896
|
'''
|
|
9897
9897
|
result = self._values.get("jsii_version")
|
|
9898
9898
|
return typing.cast(typing.Optional[builtins.str], result)
|
projen/cdktf/__init__.py
CHANGED
|
@@ -295,7 +295,7 @@ class ConstructLibraryCdktf(
|
|
|
295
295
|
:param docgen_file_path: (experimental) File path for generated docs. Default: "API.md"
|
|
296
296
|
:param dotnet:
|
|
297
297
|
:param exclude_typescript: (experimental) Accepts a list of glob patterns. Files matching any of those patterns will be excluded from the TypeScript compiler input. By default, jsii will include all *.ts files (except .d.ts files) in the TypeScript compiler input. This can be problematic for example when the package's build or test procedure generates .ts files that cannot be compiled with jsii's compiler settings.
|
|
298
|
-
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.
|
|
298
|
+
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.8.0"
|
|
299
299
|
:param publish_to_go: (experimental) Publish Go bindings to a git repository. Default: - no publishing
|
|
300
300
|
:param publish_to_maven: (experimental) Publish to maven. Default: - no publishing
|
|
301
301
|
:param publish_to_nuget: (experimental) Publish to NuGet. Default: - no publishing
|
|
@@ -1149,7 +1149,7 @@ class ConstructLibraryCdktfOptions(_ConstructLibraryOptions_dcd2adc0):
|
|
|
1149
1149
|
:param docgen_file_path: (experimental) File path for generated docs. Default: "API.md"
|
|
1150
1150
|
:param dotnet:
|
|
1151
1151
|
:param exclude_typescript: (experimental) Accepts a list of glob patterns. Files matching any of those patterns will be excluded from the TypeScript compiler input. By default, jsii will include all *.ts files (except .d.ts files) in the TypeScript compiler input. This can be problematic for example when the package's build or test procedure generates .ts files that cannot be compiled with jsii's compiler settings.
|
|
1152
|
-
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.
|
|
1152
|
+
:param jsii_version: (experimental) Version of the jsii compiler to use. Set to "*" if you want to manually manage the version of jsii in your project by managing updates to ``package.json`` on your own. NOTE: The jsii compiler releases since 5.0.0 are not semantically versioned and should remain on the same minor, so we recommend using a ``~`` dependency (e.g. ``~5.0.0``). Default: "~5.8.0"
|
|
1153
1153
|
:param publish_to_go: (experimental) Publish Go bindings to a git repository. Default: - no publishing
|
|
1154
1154
|
:param publish_to_maven: (experimental) Publish to maven. Default: - no publishing
|
|
1155
1155
|
:param publish_to_nuget: (experimental) Publish to NuGet. Default: - no publishing
|
|
@@ -3757,10 +3757,10 @@ class ConstructLibraryCdktfOptions(_ConstructLibraryOptions_dcd2adc0):
|
|
|
3757
3757
|
and should remain on the same minor, so we recommend using a ``~`` dependency
|
|
3758
3758
|
(e.g. ``~5.0.0``).
|
|
3759
3759
|
|
|
3760
|
-
:default: "~5.
|
|
3760
|
+
:default: "~5.8.0"
|
|
3761
3761
|
|
|
3762
3762
|
:stability: experimental
|
|
3763
|
-
:pjnew: "~5.
|
|
3763
|
+
:pjnew: "~5.9.0"
|
|
3764
3764
|
'''
|
|
3765
3765
|
result = self._values.get("jsii_version")
|
|
3766
3766
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
@@ -4498,9 +4498,9 @@ class Source:
|
|
|
4498
4498
|
'''(experimental) A list of rules that belong to this group.
|
|
4499
4499
|
|
|
4500
4500
|
:param organize_imports: (experimental) Provides a code action to sort the imports and exports in the file using a built-in or custom order.
|
|
4501
|
-
:param recommended: (experimental)
|
|
4501
|
+
:param recommended: (experimental) Enables the recommended rules for this group.
|
|
4502
4502
|
:param use_sorted_attributes: (experimental) Enforce attribute sorting in JSX elements.
|
|
4503
|
-
:param use_sorted_keys: (experimental)
|
|
4503
|
+
:param use_sorted_keys: (experimental) Sort the keys of a JSON object in natural order.
|
|
4504
4504
|
:param use_sorted_properties: (experimental) Enforce ordering of CSS properties and nested rules.
|
|
4505
4505
|
|
|
4506
4506
|
:stability: experimental
|
|
@@ -4537,7 +4537,7 @@ class Source:
|
|
|
4537
4537
|
|
|
4538
4538
|
@builtins.property
|
|
4539
4539
|
def recommended(self) -> typing.Optional[builtins.bool]:
|
|
4540
|
-
'''(experimental)
|
|
4540
|
+
'''(experimental) Enables the recommended rules for this group.
|
|
4541
4541
|
|
|
4542
4542
|
:stability: experimental
|
|
4543
4543
|
:schema: Source#recommended
|
|
@@ -4557,7 +4557,7 @@ class Source:
|
|
|
4557
4557
|
|
|
4558
4558
|
@builtins.property
|
|
4559
4559
|
def use_sorted_keys(self) -> typing.Any:
|
|
4560
|
-
'''(experimental)
|
|
4560
|
+
'''(experimental) Sort the keys of a JSON object in natural order.
|
|
4561
4561
|
|
|
4562
4562
|
:stability: experimental
|
|
4563
4563
|
:schema: Source#useSortedKeys
|
|
@@ -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.
|
|
11
|
+
"projen", "0.96.0", "projen", "projen@0.96.0.jsii.tgz"
|
|
12
12
|
)
|
|
13
13
|
|
|
14
14
|
exit_code = __jsii_assembly__.invokeBinScript("projen", "projen", sys.argv[1:])
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: projen
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.96.0
|
|
4
4
|
Summary: CDK for software projects
|
|
5
5
|
Home-page: https://github.com/projen/projen.git
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -20,7 +20,7 @@ Requires-Python: ~=3.9
|
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
Requires-Dist: constructs <11.0.0,>=10.0.0
|
|
23
|
-
Requires-Dist: jsii <2.0.0,>=1.
|
|
23
|
+
Requires-Dist: jsii <2.0.0,>=1.114.1
|
|
24
24
|
Requires-Dist: publication >=0.0.3
|
|
25
25
|
Requires-Dist: typeguard <4.3.0,>=2.13.3
|
|
26
26
|
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
projen/__init__.py,sha256=
|
|
1
|
+
projen/__init__.py,sha256=pzI4A8zChKr5Tq3c_1syQkaWGuo_hMKTDy0fYTrdPHQ,684078
|
|
2
2
|
projen/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
projen/_jsii/__init__.py,sha256=
|
|
4
|
-
projen/_jsii/projen@0.
|
|
5
|
-
projen/awscdk/__init__.py,sha256=
|
|
3
|
+
projen/_jsii/__init__.py,sha256=9wJJsPdC4VAaiOXJoCIx32BQRR4AyDBTt1GAspxGgko,1404
|
|
4
|
+
projen/_jsii/projen@0.96.0.jsii.tgz,sha256=N4rntHmJKf6GkiB9OjIxBj1___oLghMAOg6kKusugRU,2932001
|
|
5
|
+
projen/awscdk/__init__.py,sha256=zTNu-XJn2frs9gExqz8CvF0eu-D7rdaqZv5sVyRcHzg,1143538
|
|
6
6
|
projen/build/__init__.py,sha256=CW4d2sEJXpP5DAOJKdOt8jaRSfdDjiWdb66k8JBsvRI,54225
|
|
7
|
-
projen/cdk/__init__.py,sha256=
|
|
8
|
-
projen/cdk8s/__init__.py,sha256=
|
|
9
|
-
projen/cdktf/__init__.py,sha256=
|
|
7
|
+
projen/cdk/__init__.py,sha256=t9n0py3EA9jECqX8q2ZOeTjJac0wFeXUmMunS6kqW7Y,552882
|
|
8
|
+
projen/cdk8s/__init__.py,sha256=tmb-HLoVTIyH_JGiLRl8w8puIRt_Be5ZQLzHgkmSuvI,631019
|
|
9
|
+
projen/cdktf/__init__.py,sha256=g04snB4-g3qrobI-jBa2SH6GPHAD-iPzh1O9SBpJ7II,241191
|
|
10
10
|
projen/circleci/__init__.py,sha256=RvY_jD_QyDzURlD54vqebZrodhRv86Mn-I_YKH9ccw4,77781
|
|
11
11
|
projen/github/__init__.py,sha256=lcMheFxOVpJ1e2ZeZQRFwSW3n1epc0yifnAIcdOb-_c,482364
|
|
12
12
|
projen/github/workflows/__init__.py,sha256=FvVHeCQ1lGQaMoXNsAQSOomS80eM5KO53JzEMRRJMtk,270268
|
|
13
13
|
projen/gitlab/__init__.py,sha256=BiiBQonVYZgdGo3NLXxJ6WcW47UuGQjBkTRLGm09Ozk,207826
|
|
14
14
|
projen/java/__init__.py,sha256=Y8yfXiL4RNXtxIc0LB7O3K0CKyw9TkQKkVXgJ57A9Fw,195299
|
|
15
15
|
projen/javascript/__init__.py,sha256=DdU966VrN9qm0jnKHrucx0yhvpY4IkxWhNspT8aJLF8,900006
|
|
16
|
-
projen/javascript/biome_config/__init__.py,sha256=
|
|
16
|
+
projen/javascript/biome_config/__init__.py,sha256=_y9HJNQPgAYipQqK5UCNeS26bFvWS0nN3fWp6wTD9mo,224176
|
|
17
17
|
projen/python/__init__.py,sha256=Qir5Sm6lrXrWSveA26s7iDp57DGa4JLde37I2EZMRJU,220487
|
|
18
18
|
projen/release/__init__.py,sha256=4HYFHWMik-vWr7U0afYnk6ghl9_LLdMtHrfb8tIfxxU,331617
|
|
19
19
|
projen/typescript/__init__.py,sha256=I9ouAnQ9ja8Ja1MKlXi4vb9NSzvSdpWfbEDR7O2uSQw,530553
|
|
20
20
|
projen/vscode/__init__.py,sha256=eY_k2L0CXCqe1MKhP9syyb1qJyESBFg4ru2KlzuJ2m8,70008
|
|
21
21
|
projen/web/__init__.py,sha256=uZ_wjknTd-YBL2zjzcTxhOPeURcyczAEMT1IsDu7Keo,861110
|
|
22
|
-
projen-0.
|
|
23
|
-
projen-0.
|
|
24
|
-
projen-0.
|
|
25
|
-
projen-0.
|
|
26
|
-
projen-0.
|
|
27
|
-
projen-0.
|
|
22
|
+
projen-0.96.0.data/scripts/projen,sha256=gjPTXg-8il3-Y3hsJSmDN85oDvLv0045O_YUAIt-1As,356
|
|
23
|
+
projen-0.96.0.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
24
|
+
projen-0.96.0.dist-info/METADATA,sha256=eNgO3N5if7Mg23lmaO34LmQvii6bXQD3xzcRjuTCoPI,79609
|
|
25
|
+
projen-0.96.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
26
|
+
projen-0.96.0.dist-info/top_level.txt,sha256=Ul8VGUArFqejE5BMSked3l6NMBO6gjQEWywhM5gw1zw,7
|
|
27
|
+
projen-0.96.0.dist-info/RECORD,,
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|