projen-modules 1.0.18__py3-none-any.whl → 1.0.20__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.
@@ -115,6 +115,7 @@ class CdkTypeScriptApp(
115
115
  code_owners: typing.Sequence[builtins.str],
116
116
  name: builtins.str,
117
117
  allow_library_dependencies: typing.Optional[builtins.bool] = None,
118
+ app: typing.Optional[builtins.str] = None,
118
119
  app_entrypoint: typing.Optional[builtins.str] = None,
119
120
  artifacts_directory: typing.Optional[builtins.str] = None,
120
121
  author_email: typing.Optional[builtins.str] = None,
@@ -289,6 +290,7 @@ class CdkTypeScriptApp(
289
290
  :param code_owners: List of teams used to generate the CODEOWNERS file.
290
291
  :param name: (experimental) This is the name of your project. Default: $BASEDIR
291
292
  :param allow_library_dependencies: (experimental) Allow the project to include ``peerDependencies`` and ``bundledDependencies``. This is normally only allowed for libraries. For apps, there's no meaning for specifying these. Default: true
293
+ :param app: (experimental) The command line to execute in order to synthesize the CDK application (language specific).
292
294
  :param app_entrypoint: (experimental) The CDK app's entrypoint (relative to the source directory, which is "src" by default). Default: "main.ts"
293
295
  :param artifacts_directory: (experimental) A directory which will contain build artifacts. Default: "dist"
294
296
  :param author_email: (experimental) Author's e-mail.
@@ -375,7 +377,7 @@ class CdkTypeScriptApp(
375
377
  :param min_major_version: (experimental) Minimal Major version to release. This can be useful to set to 1, as breaking changes before the 1.x major release are not incrementing the major version number. Can not be set together with ``majorVersion``. Default: - No minimum version is being enforced
376
378
  :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
377
379
  :param mutable_build: (deprecated) Automatically update files modified during builds to pull-request branches. This means that any files synthesized by projen or e.g. test snapshots will always be up-to-date before a PR is merged. Implies that PR builds do not have anti-tamper checks. Default: true
378
- :param next_version_command: (experimental) A shell command to control the next version to release. If present, this shell command will be run before the bump is executed, and it determines what version to release. It will be executed in the following environment: - Working directory: the project directory. - ``$VERSION``: the current version. Looks like ``1.2.3``. - ``$LATEST_TAG``: the most recent tag. Looks like ``prefix-v1.2.3``, or may be unset. The command should print one of the following to ``stdout``: - Nothing: the next version number will be determined based on commit history. - ``x.y.z``: the next version number will be ``x.y.z``. - ``major|minor|patch``: the next version number will be the current version number with the indicated component bumped. This setting cannot be specified together with ``minMajorVersion``; the invoked script can be used to achieve the effects of ``minMajorVersion``. Default: - The next version will be determined based on the commit history and project settings.
380
+ :param next_version_command: (experimental) A shell command to control the next version to release. If present, this shell command will be run before the bump is executed, and it determines what version to release. It will be executed in the following environment: - Working directory: the project directory. - ``$VERSION``: the current version. Looks like ``1.2.3``. - ``$LATEST_TAG``: the most recent tag. Looks like ``prefix-v1.2.3``, or may be unset. - ``$SUGGESTED_BUMP``: the suggested bump action based on commits. One of ``major|minor|patch|none``. The command should print one of the following to ``stdout``: - Nothing: the next version number will be determined based on commit history. - ``x.y.z``: the next version number will be ``x.y.z``. - ``major|minor|patch``: the next version number will be the current version number with the indicated component bumped. This setting cannot be specified together with ``minMajorVersion``; the invoked script can be used to achieve the effects of ``minMajorVersion``. Default: - The next version will be determined based on the commit history and project settings.
379
381
  :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``.
380
382
  :param npm_dist_tag: (experimental) The npmDistTag to use when publishing from the default branch. To set the npm dist-tag for release branches, set the ``npmDistTag`` property for each branch. Default: "latest"
381
383
  :param npmignore: (deprecated) Additional entries to .npmignore.
@@ -463,6 +465,7 @@ class CdkTypeScriptApp(
463
465
  code_owners=code_owners,
464
466
  name=name,
465
467
  allow_library_dependencies=allow_library_dependencies,
468
+ app=app,
466
469
  app_entrypoint=app_entrypoint,
467
470
  artifacts_directory=artifacts_directory,
468
471
  author_email=author_email,
@@ -656,6 +659,7 @@ class CdkTypeScriptApp(
656
659
  "code_owners": "codeOwners",
657
660
  "name": "name",
658
661
  "allow_library_dependencies": "allowLibraryDependencies",
662
+ "app": "app",
659
663
  "app_entrypoint": "appEntrypoint",
660
664
  "artifacts_directory": "artifactsDirectory",
661
665
  "author_email": "authorEmail",
@@ -834,6 +838,7 @@ class CdkTypeScriptAppOptions:
834
838
  code_owners: typing.Sequence[builtins.str],
835
839
  name: builtins.str,
836
840
  allow_library_dependencies: typing.Optional[builtins.bool] = None,
841
+ app: typing.Optional[builtins.str] = None,
837
842
  app_entrypoint: typing.Optional[builtins.str] = None,
838
843
  artifacts_directory: typing.Optional[builtins.str] = None,
839
844
  author_email: typing.Optional[builtins.str] = None,
@@ -1009,6 +1014,7 @@ class CdkTypeScriptAppOptions:
1009
1014
  :param code_owners: List of teams used to generate the CODEOWNERS file.
1010
1015
  :param name: (experimental) This is the name of your project. Default: $BASEDIR
1011
1016
  :param allow_library_dependencies: (experimental) Allow the project to include ``peerDependencies`` and ``bundledDependencies``. This is normally only allowed for libraries. For apps, there's no meaning for specifying these. Default: true
1017
+ :param app: (experimental) The command line to execute in order to synthesize the CDK application (language specific).
1012
1018
  :param app_entrypoint: (experimental) The CDK app's entrypoint (relative to the source directory, which is "src" by default). Default: "main.ts"
1013
1019
  :param artifacts_directory: (experimental) A directory which will contain build artifacts. Default: "dist"
1014
1020
  :param author_email: (experimental) Author's e-mail.
@@ -1095,7 +1101,7 @@ class CdkTypeScriptAppOptions:
1095
1101
  :param min_major_version: (experimental) Minimal Major version to release. This can be useful to set to 1, as breaking changes before the 1.x major release are not incrementing the major version number. Can not be set together with ``majorVersion``. Default: - No minimum version is being enforced
1096
1102
  :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
1097
1103
  :param mutable_build: (deprecated) Automatically update files modified during builds to pull-request branches. This means that any files synthesized by projen or e.g. test snapshots will always be up-to-date before a PR is merged. Implies that PR builds do not have anti-tamper checks. Default: true
1098
- :param next_version_command: (experimental) A shell command to control the next version to release. If present, this shell command will be run before the bump is executed, and it determines what version to release. It will be executed in the following environment: - Working directory: the project directory. - ``$VERSION``: the current version. Looks like ``1.2.3``. - ``$LATEST_TAG``: the most recent tag. Looks like ``prefix-v1.2.3``, or may be unset. The command should print one of the following to ``stdout``: - Nothing: the next version number will be determined based on commit history. - ``x.y.z``: the next version number will be ``x.y.z``. - ``major|minor|patch``: the next version number will be the current version number with the indicated component bumped. This setting cannot be specified together with ``minMajorVersion``; the invoked script can be used to achieve the effects of ``minMajorVersion``. Default: - The next version will be determined based on the commit history and project settings.
1104
+ :param next_version_command: (experimental) A shell command to control the next version to release. If present, this shell command will be run before the bump is executed, and it determines what version to release. It will be executed in the following environment: - Working directory: the project directory. - ``$VERSION``: the current version. Looks like ``1.2.3``. - ``$LATEST_TAG``: the most recent tag. Looks like ``prefix-v1.2.3``, or may be unset. - ``$SUGGESTED_BUMP``: the suggested bump action based on commits. One of ``major|minor|patch|none``. The command should print one of the following to ``stdout``: - Nothing: the next version number will be determined based on commit history. - ``x.y.z``: the next version number will be ``x.y.z``. - ``major|minor|patch``: the next version number will be the current version number with the indicated component bumped. This setting cannot be specified together with ``minMajorVersion``; the invoked script can be used to achieve the effects of ``minMajorVersion``. Default: - The next version will be determined based on the commit history and project settings.
1099
1105
  :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``.
1100
1106
  :param npm_dist_tag: (experimental) The npmDistTag to use when publishing from the default branch. To set the npm dist-tag for release branches, set the ``npmDistTag`` property for each branch. Default: "latest"
1101
1107
  :param npmignore: (deprecated) Additional entries to .npmignore.
@@ -1248,6 +1254,7 @@ class CdkTypeScriptAppOptions:
1248
1254
  check_type(argname="argument code_owners", value=code_owners, expected_type=type_hints["code_owners"])
1249
1255
  check_type(argname="argument name", value=name, expected_type=type_hints["name"])
1250
1256
  check_type(argname="argument allow_library_dependencies", value=allow_library_dependencies, expected_type=type_hints["allow_library_dependencies"])
1257
+ check_type(argname="argument app", value=app, expected_type=type_hints["app"])
1251
1258
  check_type(argname="argument app_entrypoint", value=app_entrypoint, expected_type=type_hints["app_entrypoint"])
1252
1259
  check_type(argname="argument artifacts_directory", value=artifacts_directory, expected_type=type_hints["artifacts_directory"])
1253
1260
  check_type(argname="argument author_email", value=author_email, expected_type=type_hints["author_email"])
@@ -1423,6 +1430,8 @@ class CdkTypeScriptAppOptions:
1423
1430
  }
1424
1431
  if allow_library_dependencies is not None:
1425
1432
  self._values["allow_library_dependencies"] = allow_library_dependencies
1433
+ if app is not None:
1434
+ self._values["app"] = app
1426
1435
  if app_entrypoint is not None:
1427
1436
  self._values["app_entrypoint"] = app_entrypoint
1428
1437
  if artifacts_directory is not None:
@@ -1806,6 +1815,15 @@ class CdkTypeScriptAppOptions:
1806
1815
  result = self._values.get("allow_library_dependencies")
1807
1816
  return typing.cast(typing.Optional[builtins.bool], result)
1808
1817
 
1818
+ @builtins.property
1819
+ def app(self) -> typing.Optional[builtins.str]:
1820
+ '''(experimental) The command line to execute in order to synthesize the CDK application (language specific).
1821
+
1822
+ :stability: experimental
1823
+ '''
1824
+ result = self._values.get("app")
1825
+ return typing.cast(typing.Optional[builtins.str], result)
1826
+
1809
1827
  @builtins.property
1810
1828
  def app_entrypoint(self) -> typing.Optional[builtins.str]:
1811
1829
  '''(experimental) The CDK app's entrypoint (relative to the source directory, which is "src" by default).
@@ -2887,6 +2905,7 @@ class CdkTypeScriptAppOptions:
2887
2905
  - Working directory: the project directory.
2888
2906
  - ``$VERSION``: the current version. Looks like ``1.2.3``.
2889
2907
  - ``$LATEST_TAG``: the most recent tag. Looks like ``prefix-v1.2.3``, or may be unset.
2908
+ - ``$SUGGESTED_BUMP``: the suggested bump action based on commits. One of ``major|minor|patch|none``.
2890
2909
 
2891
2910
  The command should print one of the following to ``stdout``:
2892
2911
 
@@ -4245,7 +4264,7 @@ class JsiiProject(
4245
4264
  :param min_major_version: (experimental) Minimal Major version to release. This can be useful to set to 1, as breaking changes before the 1.x major release are not incrementing the major version number. Can not be set together with ``majorVersion``. Default: - No minimum version is being enforced
4246
4265
  :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
4247
4266
  :param mutable_build: (deprecated) Automatically update files modified during builds to pull-request branches. This means that any files synthesized by projen or e.g. test snapshots will always be up-to-date before a PR is merged. Implies that PR builds do not have anti-tamper checks. Default: true
4248
- :param next_version_command: (experimental) A shell command to control the next version to release. If present, this shell command will be run before the bump is executed, and it determines what version to release. It will be executed in the following environment: - Working directory: the project directory. - ``$VERSION``: the current version. Looks like ``1.2.3``. - ``$LATEST_TAG``: the most recent tag. Looks like ``prefix-v1.2.3``, or may be unset. The command should print one of the following to ``stdout``: - Nothing: the next version number will be determined based on commit history. - ``x.y.z``: the next version number will be ``x.y.z``. - ``major|minor|patch``: the next version number will be the current version number with the indicated component bumped. This setting cannot be specified together with ``minMajorVersion``; the invoked script can be used to achieve the effects of ``minMajorVersion``. Default: - The next version will be determined based on the commit history and project settings.
4267
+ :param next_version_command: (experimental) A shell command to control the next version to release. If present, this shell command will be run before the bump is executed, and it determines what version to release. It will be executed in the following environment: - Working directory: the project directory. - ``$VERSION``: the current version. Looks like ``1.2.3``. - ``$LATEST_TAG``: the most recent tag. Looks like ``prefix-v1.2.3``, or may be unset. - ``$SUGGESTED_BUMP``: the suggested bump action based on commits. One of ``major|minor|patch|none``. The command should print one of the following to ``stdout``: - Nothing: the next version number will be determined based on commit history. - ``x.y.z``: the next version number will be ``x.y.z``. - ``major|minor|patch``: the next version number will be the current version number with the indicated component bumped. This setting cannot be specified together with ``minMajorVersion``; the invoked script can be used to achieve the effects of ``minMajorVersion``. Default: - The next version will be determined based on the commit history and project settings.
4249
4268
  :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``.
4250
4269
  :param npm_dist_tag: (experimental) The npmDistTag to use when publishing from the default branch. To set the npm dist-tag for release branches, set the ``npmDistTag`` property for each branch. Default: "latest"
4251
4270
  :param npmignore: (deprecated) Additional entries to .npmignore.
@@ -4937,7 +4956,7 @@ class JsiiProjectOptions:
4937
4956
  :param min_major_version: (experimental) Minimal Major version to release. This can be useful to set to 1, as breaking changes before the 1.x major release are not incrementing the major version number. Can not be set together with ``majorVersion``. Default: - No minimum version is being enforced
4938
4957
  :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
4939
4958
  :param mutable_build: (deprecated) Automatically update files modified during builds to pull-request branches. This means that any files synthesized by projen or e.g. test snapshots will always be up-to-date before a PR is merged. Implies that PR builds do not have anti-tamper checks. Default: true
4940
- :param next_version_command: (experimental) A shell command to control the next version to release. If present, this shell command will be run before the bump is executed, and it determines what version to release. It will be executed in the following environment: - Working directory: the project directory. - ``$VERSION``: the current version. Looks like ``1.2.3``. - ``$LATEST_TAG``: the most recent tag. Looks like ``prefix-v1.2.3``, or may be unset. The command should print one of the following to ``stdout``: - Nothing: the next version number will be determined based on commit history. - ``x.y.z``: the next version number will be ``x.y.z``. - ``major|minor|patch``: the next version number will be the current version number with the indicated component bumped. This setting cannot be specified together with ``minMajorVersion``; the invoked script can be used to achieve the effects of ``minMajorVersion``. Default: - The next version will be determined based on the commit history and project settings.
4959
+ :param next_version_command: (experimental) A shell command to control the next version to release. If present, this shell command will be run before the bump is executed, and it determines what version to release. It will be executed in the following environment: - Working directory: the project directory. - ``$VERSION``: the current version. Looks like ``1.2.3``. - ``$LATEST_TAG``: the most recent tag. Looks like ``prefix-v1.2.3``, or may be unset. - ``$SUGGESTED_BUMP``: the suggested bump action based on commits. One of ``major|minor|patch|none``. The command should print one of the following to ``stdout``: - Nothing: the next version number will be determined based on commit history. - ``x.y.z``: the next version number will be ``x.y.z``. - ``major|minor|patch``: the next version number will be the current version number with the indicated component bumped. This setting cannot be specified together with ``minMajorVersion``; the invoked script can be used to achieve the effects of ``minMajorVersion``. Default: - The next version will be determined based on the commit history and project settings.
4941
4960
  :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``.
4942
4961
  :param npm_dist_tag: (experimental) The npmDistTag to use when publishing from the default branch. To set the npm dist-tag for release branches, set the ``npmDistTag`` property for each branch. Default: "latest"
4943
4962
  :param npmignore: (deprecated) Additional entries to .npmignore.
@@ -6591,6 +6610,7 @@ class JsiiProjectOptions:
6591
6610
  - Working directory: the project directory.
6592
6611
  - ``$VERSION``: the current version. Looks like ``1.2.3``.
6593
6612
  - ``$LATEST_TAG``: the most recent tag. Looks like ``prefix-v1.2.3``, or may be unset.
6613
+ - ``$SUGGESTED_BUMP``: the suggested bump action based on commits. One of ``major|minor|patch|none``.
6594
6614
 
6595
6615
  The command should print one of the following to ``stdout``:
6596
6616
 
@@ -7902,7 +7922,7 @@ class NpmPackage(
7902
7922
  :param min_major_version: (experimental) Minimal Major version to release. This can be useful to set to 1, as breaking changes before the 1.x major release are not incrementing the major version number. Can not be set together with ``majorVersion``. Default: - No minimum version is being enforced
7903
7923
  :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
7904
7924
  :param mutable_build: (deprecated) Automatically update files modified during builds to pull-request branches. This means that any files synthesized by projen or e.g. test snapshots will always be up-to-date before a PR is merged. Implies that PR builds do not have anti-tamper checks. Default: true
7905
- :param next_version_command: (experimental) A shell command to control the next version to release. If present, this shell command will be run before the bump is executed, and it determines what version to release. It will be executed in the following environment: - Working directory: the project directory. - ``$VERSION``: the current version. Looks like ``1.2.3``. - ``$LATEST_TAG``: the most recent tag. Looks like ``prefix-v1.2.3``, or may be unset. The command should print one of the following to ``stdout``: - Nothing: the next version number will be determined based on commit history. - ``x.y.z``: the next version number will be ``x.y.z``. - ``major|minor|patch``: the next version number will be the current version number with the indicated component bumped. This setting cannot be specified together with ``minMajorVersion``; the invoked script can be used to achieve the effects of ``minMajorVersion``. Default: - The next version will be determined based on the commit history and project settings.
7925
+ :param next_version_command: (experimental) A shell command to control the next version to release. If present, this shell command will be run before the bump is executed, and it determines what version to release. It will be executed in the following environment: - Working directory: the project directory. - ``$VERSION``: the current version. Looks like ``1.2.3``. - ``$LATEST_TAG``: the most recent tag. Looks like ``prefix-v1.2.3``, or may be unset. - ``$SUGGESTED_BUMP``: the suggested bump action based on commits. One of ``major|minor|patch|none``. The command should print one of the following to ``stdout``: - Nothing: the next version number will be determined based on commit history. - ``x.y.z``: the next version number will be ``x.y.z``. - ``major|minor|patch``: the next version number will be the current version number with the indicated component bumped. This setting cannot be specified together with ``minMajorVersion``; the invoked script can be used to achieve the effects of ``minMajorVersion``. Default: - The next version will be determined based on the commit history and project settings.
7906
7926
  :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``.
7907
7927
  :param npm_dist_tag: (experimental) The npmDistTag to use when publishing from the default branch. To set the npm dist-tag for release branches, set the ``npmDistTag`` property for each branch. Default: "latest"
7908
7928
  :param npmignore: (deprecated) Additional entries to .npmignore.
@@ -8530,7 +8550,7 @@ class NpmPackageOptions:
8530
8550
  :param min_major_version: (experimental) Minimal Major version to release. This can be useful to set to 1, as breaking changes before the 1.x major release are not incrementing the major version number. Can not be set together with ``majorVersion``. Default: - No minimum version is being enforced
8531
8551
  :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
8532
8552
  :param mutable_build: (deprecated) Automatically update files modified during builds to pull-request branches. This means that any files synthesized by projen or e.g. test snapshots will always be up-to-date before a PR is merged. Implies that PR builds do not have anti-tamper checks. Default: true
8533
- :param next_version_command: (experimental) A shell command to control the next version to release. If present, this shell command will be run before the bump is executed, and it determines what version to release. It will be executed in the following environment: - Working directory: the project directory. - ``$VERSION``: the current version. Looks like ``1.2.3``. - ``$LATEST_TAG``: the most recent tag. Looks like ``prefix-v1.2.3``, or may be unset. The command should print one of the following to ``stdout``: - Nothing: the next version number will be determined based on commit history. - ``x.y.z``: the next version number will be ``x.y.z``. - ``major|minor|patch``: the next version number will be the current version number with the indicated component bumped. This setting cannot be specified together with ``minMajorVersion``; the invoked script can be used to achieve the effects of ``minMajorVersion``. Default: - The next version will be determined based on the commit history and project settings.
8553
+ :param next_version_command: (experimental) A shell command to control the next version to release. If present, this shell command will be run before the bump is executed, and it determines what version to release. It will be executed in the following environment: - Working directory: the project directory. - ``$VERSION``: the current version. Looks like ``1.2.3``. - ``$LATEST_TAG``: the most recent tag. Looks like ``prefix-v1.2.3``, or may be unset. - ``$SUGGESTED_BUMP``: the suggested bump action based on commits. One of ``major|minor|patch|none``. The command should print one of the following to ``stdout``: - Nothing: the next version number will be determined based on commit history. - ``x.y.z``: the next version number will be ``x.y.z``. - ``major|minor|patch``: the next version number will be the current version number with the indicated component bumped. This setting cannot be specified together with ``minMajorVersion``; the invoked script can be used to achieve the effects of ``minMajorVersion``. Default: - The next version will be determined based on the commit history and project settings.
8534
8554
  :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``.
8535
8555
  :param npm_dist_tag: (experimental) The npmDistTag to use when publishing from the default branch. To set the npm dist-tag for release branches, set the ``npmDistTag`` property for each branch. Default: "latest"
8536
8556
  :param npmignore: (deprecated) Additional entries to .npmignore.
@@ -9996,6 +10016,7 @@ class NpmPackageOptions:
9996
10016
  - Working directory: the project directory.
9997
10017
  - ``$VERSION``: the current version. Looks like ``1.2.3``.
9998
10018
  - ``$LATEST_TAG``: the most recent tag. Looks like ``prefix-v1.2.3``, or may be unset.
10019
+ - ``$SUGGESTED_BUMP``: the suggested bump action based on commits. One of ``major|minor|patch|none``.
9999
10020
 
10000
10021
  The command should print one of the following to ``stdout``:
10001
10022
 
@@ -12532,6 +12553,7 @@ def _typecheckingstub__3a6354f4c0532263f309ca59025d89b070b95588f76bd5815340cc71a
12532
12553
  code_owners: typing.Sequence[builtins.str],
12533
12554
  name: builtins.str,
12534
12555
  allow_library_dependencies: typing.Optional[builtins.bool] = None,
12556
+ app: typing.Optional[builtins.str] = None,
12535
12557
  app_entrypoint: typing.Optional[builtins.str] = None,
12536
12558
  artifacts_directory: typing.Optional[builtins.str] = None,
12537
12559
  author_email: typing.Optional[builtins.str] = None,
@@ -32,7 +32,7 @@ import constructs._jsii
32
32
  import projen._jsii
33
33
 
34
34
  __jsii_assembly__ = jsii.JSIIAssembly.load(
35
- "projen-modules", "1.0.18", __name__[0:-6], "projen-modules@1.0.18.jsii.tgz"
35
+ "projen-modules", "1.0.20", __name__[0:-6], "projen-modules@1.0.20.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: 1.0.18
3
+ Version: 1.0.20
4
4
  Summary: A collection of projen modules
5
5
  Home-page: https://github.com/daveshepherd/projen-modules.git
6
6
  Author: Dave Shepherd<dave.shepherd@endor.me.uk>
@@ -21,7 +21,7 @@ Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
22
  Requires-Dist: constructs==10.4.2
23
23
  Requires-Dist: jsii<2.0.0,>=1.111.0
24
- Requires-Dist: projen==0.91.20
24
+ Requires-Dist: projen==0.91.26
25
25
  Requires-Dist: publication>=0.0.3
26
26
  Requires-Dist: typeguard<4.3.0,>=2.13.3
27
27
 
@@ -0,0 +1,9 @@
1
+ projen_modules/__init__.py,sha256=TISrrqU5QQmpS__3MfukTsvO7aofz_C6INXS6jg9XXs,780043
2
+ projen_modules/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
+ projen_modules/_jsii/__init__.py,sha256=y2Gjkt9pMxllnib1X_s0sXeAKFRnK49fCMDs8xgHOUY,1440
4
+ projen_modules/_jsii/projen-modules@1.0.20.jsii.tgz,sha256=rTpDD7tw2iJoPx-zL694Nj6NYGuCp7uEGrPq5nY_7rs,207529
5
+ projen_modules-1.0.20.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
6
+ projen_modules-1.0.20.dist-info/METADATA,sha256=C8EirKM_Kwisl-QDbsVe9uGo62E-63_hhrmrO0SIl-k,3160
7
+ projen_modules-1.0.20.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
8
+ projen_modules-1.0.20.dist-info/top_level.txt,sha256=YhmVEeu2LoZS5cqGRszYa1QjC4sk2iA12CJBzxieX8I,15
9
+ projen_modules-1.0.20.dist-info/RECORD,,
@@ -1,9 +0,0 @@
1
- projen_modules/__init__.py,sha256=GIPemKcrEPGaIWmTePDwZ3cCuaBYLNLHT9Prno7Q9d0,778151
2
- projen_modules/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
- projen_modules/_jsii/__init__.py,sha256=fGjuVSUFOlHbMTg6pqDcx_Pt1ADyOaLM96TPFtWeUPc,1440
4
- projen_modules/_jsii/projen-modules@1.0.18.jsii.tgz,sha256=p8Ro4fzlOumcd4g6hp_iQ8kVh9IJ_yzw8XDe0xqa05s,206742
5
- projen_modules-1.0.18.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
6
- projen_modules-1.0.18.dist-info/METADATA,sha256=RudpohRF9TpZX7ZX1nw_Y92YaKTsaQlpCUd-H5fPh_Q,3160
7
- projen_modules-1.0.18.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
8
- projen_modules-1.0.18.dist-info/top_level.txt,sha256=YhmVEeu2LoZS5cqGRszYa1QjC4sk2iA12CJBzxieX8I,15
9
- projen_modules-1.0.18.dist-info/RECORD,,