projen-modules 0.0.31__py3-none-any.whl → 0.0.32__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.
@@ -299,7 +299,7 @@ class JsiiProject(
299
299
  :param release_workflow: (deprecated) DEPRECATED: renamed to ``release``. Default: - true if not a subproject
300
300
  :param workflow_bootstrap_steps: (experimental) Workflow steps to use in order to bootstrap this repo. Default: "yarn install --frozen-lockfile && yarn projen"
301
301
  :param workflow_git_identity: (experimental) The git identity to use in workflows. Default: - GitHub Actions
302
- :param workflow_node_version: (experimental) The node version to use in GitHub workflows. Default: - same as ``minNodeVersion``
302
+ :param workflow_node_version: (experimental) The node version used in GitHub Actions workflows. Always use this option if your GitHub Actions workflows require a specific to run. Default: - ``minNodeVersion`` if set, otherwise ``lts/*``.
303
303
  :param workflow_package_cache: (experimental) Enable Node.js package cache in GitHub workflows. Default: false
304
304
  :param auto_approve_options: (experimental) Enable and configure the 'auto approve' workflow. Default: - auto approve is disabled
305
305
  :param auto_merge: (experimental) Enable automatic merging on GitHub. Has no effect if ``github.mergify`` is set to false. Default: true
@@ -337,8 +337,8 @@ class JsiiProject(
337
337
  :param keywords: (experimental) Keywords to include in ``package.json``.
338
338
  :param license: (experimental) License's SPDX identifier. See https://github.com/projen/projen/tree/main/license-text for a list of supported licenses. Use the ``licensed`` option if you want to no license to be specified. Default: "Apache-2.0"
339
339
  :param licensed: (experimental) Indicates if a license should be added. Default: true
340
- :param max_node_version: (experimental) Minimum node.js version to require via ``engines`` (inclusive). Default: - no max
341
- :param min_node_version: (experimental) Minimum Node.js version to require via package.json ``engines`` (inclusive). Default: - no "engines" specified
340
+ :param max_node_version: (experimental) The maximum node version supported by this package. Most projects should not use this option. The value indicates that the package is incompatible with any newer versions of node. This requirement is enforced via the engines field. You will normally not need to set this option. Consider this option only if your package is known to not function with newer versions of node. Default: - no maximum version is enforced
341
+ :param min_node_version: (experimental) The minimum node version required by this package to function. Most projects should not use this option. The value indicates that the package is incompatible with any older versions of node. This requirement is enforced via the engines field. You will normally not need to set this option, even if your package is incompatible with EOL versions of node. Consider this option only if your package depends on a specific feature, that is not available in other LTS versions. Setting this option has very high impact on the consumers of your package, as package managers will actively prevent usage with node versions you have marked as incompatible. To change the node version of your CI/CD workflows, use ``workflowNodeVersion``. Default: - no minimum version is enforced
342
342
  :param npm_access: (experimental) Access level of the npm package. Default: - for scoped packages (e.g. ``foo@bar``), the default is ``NpmAccess.RESTRICTED``, for non-scoped packages, the default is ``NpmAccess.PUBLIC``.
343
343
  :param npm_provenance: (experimental) Should provenance statements be generated when the package is published. A supported package manager is required to publish a package with npm provenance statements and you will need to use a supported CI/CD provider. Note that the projen ``Release`` and ``Publisher`` components are using ``publib`` to publish packages, which is using npm internally and supports provenance statements independently of the package manager used. Default: - true for public packages, false otherwise
344
344
  :param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
@@ -942,8 +942,8 @@ class JsiiProjectOptions(_projen_cdk_04054675.JsiiProjectOptions):
942
942
  :param keywords: (experimental) Keywords to include in ``package.json``.
943
943
  :param license: (experimental) License's SPDX identifier. See https://github.com/projen/projen/tree/main/license-text for a list of supported licenses. Use the ``licensed`` option if you want to no license to be specified. Default: "Apache-2.0"
944
944
  :param licensed: (experimental) Indicates if a license should be added. Default: true
945
- :param max_node_version: (experimental) Minimum node.js version to require via ``engines`` (inclusive). Default: - no max
946
- :param min_node_version: (experimental) Minimum Node.js version to require via package.json ``engines`` (inclusive). Default: - no "engines" specified
945
+ :param max_node_version: (experimental) The maximum node version supported by this package. Most projects should not use this option. The value indicates that the package is incompatible with any newer versions of node. This requirement is enforced via the engines field. You will normally not need to set this option. Consider this option only if your package is known to not function with newer versions of node. Default: - no maximum version is enforced
946
+ :param min_node_version: (experimental) The minimum node version required by this package to function. Most projects should not use this option. The value indicates that the package is incompatible with any older versions of node. This requirement is enforced via the engines field. You will normally not need to set this option, even if your package is incompatible with EOL versions of node. Consider this option only if your package depends on a specific feature, that is not available in other LTS versions. Setting this option has very high impact on the consumers of your package, as package managers will actively prevent usage with node versions you have marked as incompatible. To change the node version of your CI/CD workflows, use ``workflowNodeVersion``. Default: - no minimum version is enforced
947
947
  :param npm_access: (experimental) Access level of the npm package. Default: - for scoped packages (e.g. ``foo@bar``), the default is ``NpmAccess.RESTRICTED``, for non-scoped packages, the default is ``NpmAccess.PUBLIC``.
948
948
  :param npm_provenance: (experimental) Should provenance statements be generated when the package is published. A supported package manager is required to publish a package with npm provenance statements and you will need to use a supported CI/CD provider. Note that the projen ``Release`` and ``Publisher`` components are using ``publib`` to publish packages, which is using npm internally and supports provenance statements independently of the package manager used. Default: - true for public packages, false otherwise
949
949
  :param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
@@ -1019,7 +1019,7 @@ class JsiiProjectOptions(_projen_cdk_04054675.JsiiProjectOptions):
1019
1019
  :param release_workflow: (deprecated) DEPRECATED: renamed to ``release``. Default: - true if not a subproject
1020
1020
  :param workflow_bootstrap_steps: (experimental) Workflow steps to use in order to bootstrap this repo. Default: "yarn install --frozen-lockfile && yarn projen"
1021
1021
  :param workflow_git_identity: (experimental) The git identity to use in workflows. Default: - GitHub Actions
1022
- :param workflow_node_version: (experimental) The node version to use in GitHub workflows. Default: - same as ``minNodeVersion``
1022
+ :param workflow_node_version: (experimental) The node version used in GitHub Actions workflows. Always use this option if your GitHub Actions workflows require a specific to run. Default: - ``minNodeVersion`` if set, otherwise ``lts/*``.
1023
1023
  :param workflow_package_cache: (experimental) Enable Node.js package cache in GitHub workflows. Default: false
1024
1024
  :param disable_tsconfig: (experimental) Do not generate a ``tsconfig.json`` file (used by jsii projects since tsconfig.json is generated by the jsii compiler). Default: false
1025
1025
  :param disable_tsconfig_dev: (experimental) Do not generate a ``tsconfig.dev.json`` file. Default: false
@@ -2228,9 +2228,15 @@ class JsiiProjectOptions(_projen_cdk_04054675.JsiiProjectOptions):
2228
2228
 
2229
2229
  @builtins.property
2230
2230
  def max_node_version(self) -> typing.Optional[builtins.str]:
2231
- '''(experimental) Minimum node.js version to require via ``engines`` (inclusive).
2231
+ '''(experimental) The maximum node version supported by this package. Most projects should not use this option.
2232
2232
 
2233
- :default: - no max
2233
+ The value indicates that the package is incompatible with any newer versions of node.
2234
+ This requirement is enforced via the engines field.
2235
+
2236
+ You will normally not need to set this option.
2237
+ Consider this option only if your package is known to not function with newer versions of node.
2238
+
2239
+ :default: - no maximum version is enforced
2234
2240
 
2235
2241
  :stability: experimental
2236
2242
  '''
@@ -2239,9 +2245,19 @@ class JsiiProjectOptions(_projen_cdk_04054675.JsiiProjectOptions):
2239
2245
 
2240
2246
  @builtins.property
2241
2247
  def min_node_version(self) -> typing.Optional[builtins.str]:
2242
- '''(experimental) Minimum Node.js version to require via package.json ``engines`` (inclusive).
2248
+ '''(experimental) The minimum node version required by this package to function. Most projects should not use this option.
2249
+
2250
+ The value indicates that the package is incompatible with any older versions of node.
2251
+ This requirement is enforced via the engines field.
2243
2252
 
2244
- :default: - no "engines" specified
2253
+ You will normally not need to set this option, even if your package is incompatible with EOL versions of node.
2254
+ Consider this option only if your package depends on a specific feature, that is not available in other LTS versions.
2255
+ Setting this option has very high impact on the consumers of your package,
2256
+ as package managers will actively prevent usage with node versions you have marked as incompatible.
2257
+
2258
+ To change the node version of your CI/CD workflows, use ``workflowNodeVersion``.
2259
+
2260
+ :default: - no minimum version is enforced
2245
2261
 
2246
2262
  :stability: experimental
2247
2263
  '''
@@ -3197,9 +3213,11 @@ class JsiiProjectOptions(_projen_cdk_04054675.JsiiProjectOptions):
3197
3213
 
3198
3214
  @builtins.property
3199
3215
  def workflow_node_version(self) -> typing.Optional[builtins.str]:
3200
- '''(experimental) The node version to use in GitHub workflows.
3216
+ '''(experimental) The node version used in GitHub Actions workflows.
3217
+
3218
+ Always use this option if your GitHub Actions workflows require a specific to run.
3201
3219
 
3202
- :default: - same as ``minNodeVersion``
3220
+ :default: - ``minNodeVersion`` if set, otherwise ``lts/*``.
3203
3221
 
3204
3222
  :stability: experimental
3205
3223
  '''
@@ -3862,7 +3880,7 @@ class NpmPackage(
3862
3880
  :param release_workflow: (deprecated) DEPRECATED: renamed to ``release``. Default: - true if not a subproject
3863
3881
  :param workflow_bootstrap_steps: (experimental) Workflow steps to use in order to bootstrap this repo. Default: "yarn install --frozen-lockfile && yarn projen"
3864
3882
  :param workflow_git_identity: (experimental) The git identity to use in workflows. Default: - GitHub Actions
3865
- :param workflow_node_version: (experimental) The node version to use in GitHub workflows. Default: - same as ``minNodeVersion``
3883
+ :param workflow_node_version: (experimental) The node version used in GitHub Actions workflows. Always use this option if your GitHub Actions workflows require a specific to run. Default: - ``minNodeVersion`` if set, otherwise ``lts/*``.
3866
3884
  :param workflow_package_cache: (experimental) Enable Node.js package cache in GitHub workflows. Default: false
3867
3885
  :param auto_approve_options: (experimental) Enable and configure the 'auto approve' workflow. Default: - auto approve is disabled
3868
3886
  :param auto_merge: (experimental) Enable automatic merging on GitHub. Has no effect if ``github.mergify`` is set to false. Default: true
@@ -3900,8 +3918,8 @@ class NpmPackage(
3900
3918
  :param keywords: (experimental) Keywords to include in ``package.json``.
3901
3919
  :param license: (experimental) License's SPDX identifier. See https://github.com/projen/projen/tree/main/license-text for a list of supported licenses. Use the ``licensed`` option if you want to no license to be specified. Default: "Apache-2.0"
3902
3920
  :param licensed: (experimental) Indicates if a license should be added. Default: true
3903
- :param max_node_version: (experimental) Minimum node.js version to require via ``engines`` (inclusive). Default: - no max
3904
- :param min_node_version: (experimental) Minimum Node.js version to require via package.json ``engines`` (inclusive). Default: - no "engines" specified
3921
+ :param max_node_version: (experimental) The maximum node version supported by this package. Most projects should not use this option. The value indicates that the package is incompatible with any newer versions of node. This requirement is enforced via the engines field. You will normally not need to set this option. Consider this option only if your package is known to not function with newer versions of node. Default: - no maximum version is enforced
3922
+ :param min_node_version: (experimental) The minimum node version required by this package to function. Most projects should not use this option. The value indicates that the package is incompatible with any older versions of node. This requirement is enforced via the engines field. You will normally not need to set this option, even if your package is incompatible with EOL versions of node. Consider this option only if your package depends on a specific feature, that is not available in other LTS versions. Setting this option has very high impact on the consumers of your package, as package managers will actively prevent usage with node versions you have marked as incompatible. To change the node version of your CI/CD workflows, use ``workflowNodeVersion``. Default: - no minimum version is enforced
3905
3923
  :param npm_access: (experimental) Access level of the npm package. Default: - for scoped packages (e.g. ``foo@bar``), the default is ``NpmAccess.RESTRICTED``, for non-scoped packages, the default is ``NpmAccess.PUBLIC``.
3906
3924
  :param npm_provenance: (experimental) Should provenance statements be generated when the package is published. A supported package manager is required to publish a package with npm provenance statements and you will need to use a supported CI/CD provider. Note that the projen ``Release`` and ``Publisher`` components are using ``publib`` to publish packages, which is using npm internally and supports provenance statements independently of the package manager used. Default: - true for public packages, false otherwise
3907
3925
  :param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
@@ -4457,8 +4475,8 @@ class NpmPackageOptions(_projen_typescript_04054675.TypeScriptProjectOptions):
4457
4475
  :param keywords: (experimental) Keywords to include in ``package.json``.
4458
4476
  :param license: (experimental) License's SPDX identifier. See https://github.com/projen/projen/tree/main/license-text for a list of supported licenses. Use the ``licensed`` option if you want to no license to be specified. Default: "Apache-2.0"
4459
4477
  :param licensed: (experimental) Indicates if a license should be added. Default: true
4460
- :param max_node_version: (experimental) Minimum node.js version to require via ``engines`` (inclusive). Default: - no max
4461
- :param min_node_version: (experimental) Minimum Node.js version to require via package.json ``engines`` (inclusive). Default: - no "engines" specified
4478
+ :param max_node_version: (experimental) The maximum node version supported by this package. Most projects should not use this option. The value indicates that the package is incompatible with any newer versions of node. This requirement is enforced via the engines field. You will normally not need to set this option. Consider this option only if your package is known to not function with newer versions of node. Default: - no maximum version is enforced
4479
+ :param min_node_version: (experimental) The minimum node version required by this package to function. Most projects should not use this option. The value indicates that the package is incompatible with any older versions of node. This requirement is enforced via the engines field. You will normally not need to set this option, even if your package is incompatible with EOL versions of node. Consider this option only if your package depends on a specific feature, that is not available in other LTS versions. Setting this option has very high impact on the consumers of your package, as package managers will actively prevent usage with node versions you have marked as incompatible. To change the node version of your CI/CD workflows, use ``workflowNodeVersion``. Default: - no minimum version is enforced
4462
4480
  :param npm_access: (experimental) Access level of the npm package. Default: - for scoped packages (e.g. ``foo@bar``), the default is ``NpmAccess.RESTRICTED``, for non-scoped packages, the default is ``NpmAccess.PUBLIC``.
4463
4481
  :param npm_provenance: (experimental) Should provenance statements be generated when the package is published. A supported package manager is required to publish a package with npm provenance statements and you will need to use a supported CI/CD provider. Note that the projen ``Release`` and ``Publisher`` components are using ``publib`` to publish packages, which is using npm internally and supports provenance statements independently of the package manager used. Default: - true for public packages, false otherwise
4464
4482
  :param npm_registry: (deprecated) The host name of the npm registry to publish to. Cannot be set together with ``npmRegistryUrl``.
@@ -4534,7 +4552,7 @@ class NpmPackageOptions(_projen_typescript_04054675.TypeScriptProjectOptions):
4534
4552
  :param release_workflow: (deprecated) DEPRECATED: renamed to ``release``. Default: - true if not a subproject
4535
4553
  :param workflow_bootstrap_steps: (experimental) Workflow steps to use in order to bootstrap this repo. Default: "yarn install --frozen-lockfile && yarn projen"
4536
4554
  :param workflow_git_identity: (experimental) The git identity to use in workflows. Default: - GitHub Actions
4537
- :param workflow_node_version: (experimental) The node version to use in GitHub workflows. Default: - same as ``minNodeVersion``
4555
+ :param workflow_node_version: (experimental) The node version used in GitHub Actions workflows. Always use this option if your GitHub Actions workflows require a specific to run. Default: - ``minNodeVersion`` if set, otherwise ``lts/*``.
4538
4556
  :param workflow_package_cache: (experimental) Enable Node.js package cache in GitHub workflows. Default: false
4539
4557
  :param disable_tsconfig: (experimental) Do not generate a ``tsconfig.json`` file (used by jsii projects since tsconfig.json is generated by the jsii compiler). Default: false
4540
4558
  :param disable_tsconfig_dev: (experimental) Do not generate a ``tsconfig.dev.json`` file. Default: false
@@ -5670,9 +5688,15 @@ class NpmPackageOptions(_projen_typescript_04054675.TypeScriptProjectOptions):
5670
5688
 
5671
5689
  @builtins.property
5672
5690
  def max_node_version(self) -> typing.Optional[builtins.str]:
5673
- '''(experimental) Minimum node.js version to require via ``engines`` (inclusive).
5691
+ '''(experimental) The maximum node version supported by this package. Most projects should not use this option.
5674
5692
 
5675
- :default: - no max
5693
+ The value indicates that the package is incompatible with any newer versions of node.
5694
+ This requirement is enforced via the engines field.
5695
+
5696
+ You will normally not need to set this option.
5697
+ Consider this option only if your package is known to not function with newer versions of node.
5698
+
5699
+ :default: - no maximum version is enforced
5676
5700
 
5677
5701
  :stability: experimental
5678
5702
  '''
@@ -5681,9 +5705,19 @@ class NpmPackageOptions(_projen_typescript_04054675.TypeScriptProjectOptions):
5681
5705
 
5682
5706
  @builtins.property
5683
5707
  def min_node_version(self) -> typing.Optional[builtins.str]:
5684
- '''(experimental) Minimum Node.js version to require via package.json ``engines`` (inclusive).
5708
+ '''(experimental) The minimum node version required by this package to function. Most projects should not use this option.
5709
+
5710
+ The value indicates that the package is incompatible with any older versions of node.
5711
+ This requirement is enforced via the engines field.
5685
5712
 
5686
- :default: - no "engines" specified
5713
+ You will normally not need to set this option, even if your package is incompatible with EOL versions of node.
5714
+ Consider this option only if your package depends on a specific feature, that is not available in other LTS versions.
5715
+ Setting this option has very high impact on the consumers of your package,
5716
+ as package managers will actively prevent usage with node versions you have marked as incompatible.
5717
+
5718
+ To change the node version of your CI/CD workflows, use ``workflowNodeVersion``.
5719
+
5720
+ :default: - no minimum version is enforced
5687
5721
 
5688
5722
  :stability: experimental
5689
5723
  '''
@@ -6639,9 +6673,11 @@ class NpmPackageOptions(_projen_typescript_04054675.TypeScriptProjectOptions):
6639
6673
 
6640
6674
  @builtins.property
6641
6675
  def workflow_node_version(self) -> typing.Optional[builtins.str]:
6642
- '''(experimental) The node version to use in GitHub workflows.
6676
+ '''(experimental) The node version used in GitHub Actions workflows.
6677
+
6678
+ Always use this option if your GitHub Actions workflows require a specific to run.
6643
6679
 
6644
- :default: - same as ``minNodeVersion``
6680
+ :default: - ``minNodeVersion`` if set, otherwise ``lts/*``.
6645
6681
 
6646
6682
  :stability: experimental
6647
6683
  '''
@@ -32,7 +32,7 @@ import constructs._jsii
32
32
  import projen._jsii
33
33
 
34
34
  __jsii_assembly__ = jsii.JSIIAssembly.load(
35
- "projen-modules", "0.0.31", __name__[0:-6], "projen-modules@0.0.31.jsii.tgz"
35
+ "projen-modules", "0.0.32", __name__[0:-6], "projen-modules@0.0.32.jsii.tgz"
36
36
  )
37
37
 
38
38
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: projen_modules
3
- Version: 0.0.31
3
+ Version: 0.0.32
4
4
  Summary: projen-modules
5
5
  Home-page: https://github.com/daveshepherd/projen-modules.git
6
6
  Author: Dave Shepherd<dave.shepherd@endor.me.uk>
@@ -22,7 +22,7 @@ Description-Content-Type: text/markdown
22
22
  License-File: LICENSE
23
23
  Requires-Dist: constructs==10.3.0
24
24
  Requires-Dist: jsii<2.0.0,>=1.103.1
25
- Requires-Dist: projen==0.87.4
25
+ Requires-Dist: projen==0.88.0
26
26
  Requires-Dist: publication>=0.0.3
27
27
  Requires-Dist: typeguard<5.0.0,>=2.13.3
28
28
 
@@ -0,0 +1,9 @@
1
+ projen_modules/__init__.py,sha256=_Telg5k1cNWwge7bVSdXvngcdqnQoJmpXVdl9_W0E7s,507905
2
+ projen_modules/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
+ projen_modules/_jsii/__init__.py,sha256=FGXdXVKq56nzsiEfNY9dMjmduOVYBLT6uGY6OB9prl0,1440
4
+ projen_modules/_jsii/projen-modules@0.0.32.jsii.tgz,sha256=sQWOoY_12xpVUEUCEtk2t0zyGBFCKzOurLFeGAkyiac,68363
5
+ projen_modules-0.0.32.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
6
+ projen_modules-0.0.32.dist-info/METADATA,sha256=1cIWZg14KvhVf_IRwceSBH6Cwbk0B4tBA2zjvQ3UA5w,1138
7
+ projen_modules-0.0.32.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
8
+ projen_modules-0.0.32.dist-info/top_level.txt,sha256=YhmVEeu2LoZS5cqGRszYa1QjC4sk2iA12CJBzxieX8I,15
9
+ projen_modules-0.0.32.dist-info/RECORD,,
@@ -1,9 +0,0 @@
1
- projen_modules/__init__.py,sha256=-1p7uVe8bisSBp3m5s3CHwphQps5t3hPZ25DtAMn4RU,501077
2
- projen_modules/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
- projen_modules/_jsii/__init__.py,sha256=9wUaEYiNCMFv8BzGHlh_dk0LAIVoykqiAY8LnBz2ShY,1440
4
- projen_modules/_jsii/projen-modules@0.0.31.jsii.tgz,sha256=64_Yp8PCA-B_qPo6TW412aZV_MK2zqxIsGjBosaoZww,67629
5
- projen_modules-0.0.31.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
6
- projen_modules-0.0.31.dist-info/METADATA,sha256=vUc41WKIBUwia2gtp3el3_amP-d2z6ysJf14_T9YBlA,1138
7
- projen_modules-0.0.31.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
8
- projen_modules-0.0.31.dist-info/top_level.txt,sha256=YhmVEeu2LoZS5cqGRszYa1QjC4sk2iA12CJBzxieX8I,15
9
- projen_modules-0.0.31.dist-info/RECORD,,