projen-modules 0.1.11__tar.gz → 0.1.12__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: projen_modules
3
- Version: 0.1.11
3
+ Version: 0.1.12
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,8 +21,8 @@ Requires-Python: ~=3.8
21
21
  Description-Content-Type: text/markdown
22
22
  License-File: LICENSE
23
23
  Requires-Dist: constructs==10.4.2
24
- Requires-Dist: jsii<2.0.0,>=1.105.0
25
- Requires-Dist: projen==0.90.6
24
+ Requires-Dist: jsii<2.0.0,>=1.106.0
25
+ Requires-Dist: projen==0.91.4
26
26
  Requires-Dist: publication>=0.0.3
27
27
  Requires-Dist: typeguard<4.3.0,>=2.13.3
28
28
 
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "projen_modules",
8
- "version": "0.1.11",
8
+ "version": "0.1.12",
9
9
  "description": "A collection of projen modules",
10
10
  "license": "Apache-2.0",
11
11
  "url": "https://github.com/daveshepherd/projen-modules.git",
@@ -26,7 +26,7 @@ kwargs = json.loads(
26
26
  ],
27
27
  "package_data": {
28
28
  "projen_modules._jsii": [
29
- "projen-modules@0.1.11.jsii.tgz"
29
+ "projen-modules@0.1.12.jsii.tgz"
30
30
  ],
31
31
  "projen_modules": [
32
32
  "py.typed"
@@ -35,8 +35,8 @@ kwargs = json.loads(
35
35
  "python_requires": "~=3.8",
36
36
  "install_requires": [
37
37
  "constructs==10.4.2",
38
- "jsii>=1.105.0, <2.0.0",
39
- "projen==0.90.6",
38
+ "jsii>=1.106.0, <2.0.0",
39
+ "projen==0.91.4",
40
40
  "publication>=0.0.3",
41
41
  "typeguard>=2.13.3,<4.3.0"
42
42
  ],
@@ -393,7 +393,7 @@ class JsiiProject(
393
393
  :param jest: (experimental) Setup jest unit tests. Default: true
394
394
  :param jest_options: (experimental) Jest options. Default: - default options
395
395
  :param jsii_release_version: (experimental) Version requirement of ``publib`` which is used to publish modules to npm. Default: "latest"
396
- :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: "1.x"
396
+ :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.6.0"
397
397
  :param keywords: (experimental) Keywords to include in ``package.json``.
398
398
  :param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
399
399
  :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"
@@ -423,7 +423,7 @@ class JsiiProject(
423
423
  :param parent: (experimental) The parent project, if this project is part of a bigger project.
424
424
  :param peer_dependency_options: (experimental) Options for ``peerDeps``.
425
425
  :param peer_deps: (experimental) Peer dependencies for this module. Dependencies listed here are required to be installed (and satisfied) by the *consumer* of this library. Using peer dependencies allows you to ensure that only a single module of a certain library exists in the ``node_modules`` tree of your consumers. Note that prior to npm@7, peer dependencies are *not* automatically installed, which means that adding peer dependencies to a library will be a breaking change for your customers. Unless ``peerDependencyOptions.pinnedDevDependency`` is disabled (it is enabled by default), projen will automatically add a dev dependency with a pinned version for each peer dependency. This will ensure that you build & test your module against the lowest peer version required. Default: []
426
- :param pnpm_version: (experimental) The version of PNPM to use if using PNPM as a package manager. Default: "7"
426
+ :param pnpm_version: (experimental) The version of PNPM to use if using PNPM as a package manager. Default: "9"
427
427
  :param post_build_steps: (experimental) Steps to execute after build as part of the release workflow. Default: []
428
428
  :param prerelease: (experimental) Bump versions from the default branch as pre-releases (e.g. "beta", "alpha", "pre"). Default: - normal semantic versions
429
429
  :param prettier: (experimental) Setup prettier. Default: false
@@ -1081,7 +1081,7 @@ class JsiiProjectOptions:
1081
1081
  :param jest: (experimental) Setup jest unit tests. Default: true
1082
1082
  :param jest_options: (experimental) Jest options. Default: - default options
1083
1083
  :param jsii_release_version: (experimental) Version requirement of ``publib`` which is used to publish modules to npm. Default: "latest"
1084
- :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: "1.x"
1084
+ :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.6.0"
1085
1085
  :param keywords: (experimental) Keywords to include in ``package.json``.
1086
1086
  :param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
1087
1087
  :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"
@@ -1111,7 +1111,7 @@ class JsiiProjectOptions:
1111
1111
  :param parent: (experimental) The parent project, if this project is part of a bigger project.
1112
1112
  :param peer_dependency_options: (experimental) Options for ``peerDeps``.
1113
1113
  :param peer_deps: (experimental) Peer dependencies for this module. Dependencies listed here are required to be installed (and satisfied) by the *consumer* of this library. Using peer dependencies allows you to ensure that only a single module of a certain library exists in the ``node_modules`` tree of your consumers. Note that prior to npm@7, peer dependencies are *not* automatically installed, which means that adding peer dependencies to a library will be a breaking change for your customers. Unless ``peerDependencyOptions.pinnedDevDependency`` is disabled (it is enabled by default), projen will automatically add a dev dependency with a pinned version for each peer dependency. This will ensure that you build & test your module against the lowest peer version required. Default: []
1114
- :param pnpm_version: (experimental) The version of PNPM to use if using PNPM as a package manager. Default: "7"
1114
+ :param pnpm_version: (experimental) The version of PNPM to use if using PNPM as a package manager. Default: "9"
1115
1115
  :param post_build_steps: (experimental) Steps to execute after build as part of the release workflow. Default: []
1116
1116
  :param prerelease: (experimental) Bump versions from the default branch as pre-releases (e.g. "beta", "alpha", "pre"). Default: - normal semantic versions
1117
1117
  :param prettier: (experimental) Setup prettier. Default: false
@@ -2542,10 +2542,10 @@ class JsiiProjectOptions:
2542
2542
  and should remain on the same minor, so we recommend using a ``~`` dependency
2543
2543
  (e.g. ``~5.0.0``).
2544
2544
 
2545
- :default: "1.x"
2545
+ :default: "~5.6.0"
2546
2546
 
2547
2547
  :stability: experimental
2548
- :pjnew: "~5.5.0"
2548
+ :pjnew: "~5.7.0"
2549
2549
  '''
2550
2550
  result = self._values.get("jsii_version")
2551
2551
  return typing.cast(typing.Optional[builtins.str], result)
@@ -2966,7 +2966,7 @@ class JsiiProjectOptions:
2966
2966
  def pnpm_version(self) -> typing.Optional[builtins.str]:
2967
2967
  '''(experimental) The version of PNPM to use if using PNPM as a package manager.
2968
2968
 
2969
- :default: "7"
2969
+ :default: "9"
2970
2970
 
2971
2971
  :stability: experimental
2972
2972
  '''
@@ -4060,7 +4060,7 @@ class NpmPackage(
4060
4060
  :param parent: (experimental) The parent project, if this project is part of a bigger project.
4061
4061
  :param peer_dependency_options: (experimental) Options for ``peerDeps``.
4062
4062
  :param peer_deps: (experimental) Peer dependencies for this module. Dependencies listed here are required to be installed (and satisfied) by the *consumer* of this library. Using peer dependencies allows you to ensure that only a single module of a certain library exists in the ``node_modules`` tree of your consumers. Note that prior to npm@7, peer dependencies are *not* automatically installed, which means that adding peer dependencies to a library will be a breaking change for your customers. Unless ``peerDependencyOptions.pinnedDevDependency`` is disabled (it is enabled by default), projen will automatically add a dev dependency with a pinned version for each peer dependency. This will ensure that you build & test your module against the lowest peer version required. Default: []
4063
- :param pnpm_version: (experimental) The version of PNPM to use if using PNPM as a package manager. Default: "7"
4063
+ :param pnpm_version: (experimental) The version of PNPM to use if using PNPM as a package manager. Default: "9"
4064
4064
  :param post_build_steps: (experimental) Steps to execute after build as part of the release workflow. Default: []
4065
4065
  :param prerelease: (experimental) Bump versions from the default branch as pre-releases (e.g. "beta", "alpha", "pre"). Default: - normal semantic versions
4066
4066
  :param prettier: (experimental) Setup prettier. Default: false
@@ -4684,7 +4684,7 @@ class NpmPackageOptions:
4684
4684
  :param parent: (experimental) The parent project, if this project is part of a bigger project.
4685
4685
  :param peer_dependency_options: (experimental) Options for ``peerDeps``.
4686
4686
  :param peer_deps: (experimental) Peer dependencies for this module. Dependencies listed here are required to be installed (and satisfied) by the *consumer* of this library. Using peer dependencies allows you to ensure that only a single module of a certain library exists in the ``node_modules`` tree of your consumers. Note that prior to npm@7, peer dependencies are *not* automatically installed, which means that adding peer dependencies to a library will be a breaking change for your customers. Unless ``peerDependencyOptions.pinnedDevDependency`` is disabled (it is enabled by default), projen will automatically add a dev dependency with a pinned version for each peer dependency. This will ensure that you build & test your module against the lowest peer version required. Default: []
4687
- :param pnpm_version: (experimental) The version of PNPM to use if using PNPM as a package manager. Default: "7"
4687
+ :param pnpm_version: (experimental) The version of PNPM to use if using PNPM as a package manager. Default: "9"
4688
4688
  :param post_build_steps: (experimental) Steps to execute after build as part of the release workflow. Default: []
4689
4689
  :param prerelease: (experimental) Bump versions from the default branch as pre-releases (e.g. "beta", "alpha", "pre"). Default: - normal semantic versions
4690
4690
  :param prettier: (experimental) Setup prettier. Default: false
@@ -6351,7 +6351,7 @@ class NpmPackageOptions:
6351
6351
  def pnpm_version(self) -> typing.Optional[builtins.str]:
6352
6352
  '''(experimental) The version of PNPM to use if using PNPM as a package manager.
6353
6353
 
6354
- :default: "7"
6354
+ :default: "9"
6355
6355
 
6356
6356
  :stability: experimental
6357
6357
  '''
@@ -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.1.11", __name__[0:-6], "projen-modules@0.1.11.jsii.tgz"
35
+ "projen-modules", "0.1.12", __name__[0:-6], "projen-modules@0.1.12.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.1.11
3
+ Version: 0.1.12
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,8 +21,8 @@ Requires-Python: ~=3.8
21
21
  Description-Content-Type: text/markdown
22
22
  License-File: LICENSE
23
23
  Requires-Dist: constructs==10.4.2
24
- Requires-Dist: jsii<2.0.0,>=1.105.0
25
- Requires-Dist: projen==0.90.6
24
+ Requires-Dist: jsii<2.0.0,>=1.106.0
25
+ Requires-Dist: projen==0.91.4
26
26
  Requires-Dist: publication>=0.0.3
27
27
  Requires-Dist: typeguard<4.3.0,>=2.13.3
28
28
 
@@ -11,4 +11,4 @@ src/projen_modules.egg-info/dependency_links.txt
11
11
  src/projen_modules.egg-info/requires.txt
12
12
  src/projen_modules.egg-info/top_level.txt
13
13
  src/projen_modules/_jsii/__init__.py
14
- src/projen_modules/_jsii/projen-modules@0.1.11.jsii.tgz
14
+ src/projen_modules/_jsii/projen-modules@0.1.12.jsii.tgz
@@ -1,5 +1,5 @@
1
1
  constructs==10.4.2
2
- jsii<2.0.0,>=1.105.0
3
- projen==0.90.6
2
+ jsii<2.0.0,>=1.106.0
3
+ projen==0.91.4
4
4
  publication>=0.0.3
5
5
  typeguard<4.3.0,>=2.13.3
File without changes