projen-modules 0.1.12__py3-none-any.whl → 0.1.13__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.
- projen_modules/__init__.py +42 -0
- projen_modules/_jsii/__init__.py +1 -1
- projen_modules/_jsii/projen-modules@0.1.13.jsii.tgz +0 -0
- {projen_modules-0.1.12.dist-info → projen_modules-0.1.13.dist-info}/METADATA +2 -2
- projen_modules-0.1.13.dist-info/RECORD +9 -0
- projen_modules/_jsii/projen-modules@0.1.12.jsii.tgz +0 -0
- projen_modules-0.1.12.dist-info/RECORD +0 -9
- {projen_modules-0.1.12.dist-info → projen_modules-0.1.13.dist-info}/LICENSE +0 -0
- {projen_modules-0.1.12.dist-info → projen_modules-0.1.13.dist-info}/WHEEL +0 -0
- {projen_modules-0.1.12.dist-info → projen_modules-0.1.13.dist-info}/top_level.txt +0 -0
projen_modules/__init__.py
CHANGED
@@ -186,6 +186,7 @@ class JsiiProject(
|
|
186
186
|
bump_package: typing.Optional[builtins.str] = None,
|
187
187
|
bundled_deps: typing.Optional[typing.Sequence[builtins.str]] = None,
|
188
188
|
bundler_options: typing.Optional[typing.Union[_projen_javascript_04054675.BundlerOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
189
|
+
bun_version: typing.Optional[builtins.str] = None,
|
189
190
|
check_licenses: typing.Optional[typing.Union[_projen_javascript_04054675.LicenseCheckerOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
190
191
|
clobber: typing.Optional[builtins.bool] = None,
|
191
192
|
code_artifact_options: typing.Optional[typing.Union[_projen_javascript_04054675.CodeArtifactOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
@@ -352,6 +353,7 @@ class JsiiProject(
|
|
352
353
|
:param bump_package: (experimental) The ``commit-and-tag-version`` compatible package used to bump the package version, as a dependency string. This can be any compatible package version, including the deprecated ``standard-version@9``. Default: - A recent version of "commit-and-tag-version"
|
353
354
|
:param bundled_deps: (experimental) List of dependencies to bundle into this module. These modules will be added both to the ``dependencies`` section and ``bundledDependencies`` section of your ``package.json``. The recommendation is to only specify the module name here (e.g. ``express``). This will behave similar to ``yarn add`` or ``npm install`` in the sense that it will add the module as a dependency to your ``package.json`` file with the latest version (``^``). You can specify semver requirements in the same syntax passed to ``npm i`` or ``yarn add`` (e.g. ``express@^2``) and this will be what you ``package.json`` will eventually include.
|
354
355
|
:param bundler_options: (experimental) Options for ``Bundler``.
|
356
|
+
:param bun_version: (experimental) The version of Bun to use if using Bun as a package manager. Default: "latest"
|
355
357
|
:param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
|
356
358
|
:param clobber: (experimental) Add a ``clobber`` task which resets the repo to origin. Default: - true, but false for subprojects
|
357
359
|
:param code_artifact_options: (experimental) Options for npm packages using AWS CodeArtifact. This is required if publishing packages to, or installing scoped packages from AWS CodeArtifact Default: - undefined
|
@@ -518,6 +520,7 @@ class JsiiProject(
|
|
518
520
|
bump_package=bump_package,
|
519
521
|
bundled_deps=bundled_deps,
|
520
522
|
bundler_options=bundler_options,
|
523
|
+
bun_version=bun_version,
|
521
524
|
check_licenses=check_licenses,
|
522
525
|
clobber=clobber,
|
523
526
|
code_artifact_options=code_artifact_options,
|
@@ -703,6 +706,7 @@ class JsiiProject(
|
|
703
706
|
"bump_package": "bumpPackage",
|
704
707
|
"bundled_deps": "bundledDeps",
|
705
708
|
"bundler_options": "bundlerOptions",
|
709
|
+
"bun_version": "bunVersion",
|
706
710
|
"check_licenses": "checkLicenses",
|
707
711
|
"clobber": "clobber",
|
708
712
|
"code_artifact_options": "codeArtifactOptions",
|
@@ -873,6 +877,7 @@ class JsiiProjectOptions:
|
|
873
877
|
bump_package: typing.Optional[builtins.str] = None,
|
874
878
|
bundled_deps: typing.Optional[typing.Sequence[builtins.str]] = None,
|
875
879
|
bundler_options: typing.Optional[typing.Union[_projen_javascript_04054675.BundlerOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
880
|
+
bun_version: typing.Optional[builtins.str] = None,
|
876
881
|
check_licenses: typing.Optional[typing.Union[_projen_javascript_04054675.LicenseCheckerOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
877
882
|
clobber: typing.Optional[builtins.bool] = None,
|
878
883
|
code_artifact_options: typing.Optional[typing.Union[_projen_javascript_04054675.CodeArtifactOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
@@ -1040,6 +1045,7 @@ class JsiiProjectOptions:
|
|
1040
1045
|
:param bump_package: (experimental) The ``commit-and-tag-version`` compatible package used to bump the package version, as a dependency string. This can be any compatible package version, including the deprecated ``standard-version@9``. Default: - A recent version of "commit-and-tag-version"
|
1041
1046
|
:param bundled_deps: (experimental) List of dependencies to bundle into this module. These modules will be added both to the ``dependencies`` section and ``bundledDependencies`` section of your ``package.json``. The recommendation is to only specify the module name here (e.g. ``express``). This will behave similar to ``yarn add`` or ``npm install`` in the sense that it will add the module as a dependency to your ``package.json`` file with the latest version (``^``). You can specify semver requirements in the same syntax passed to ``npm i`` or ``yarn add`` (e.g. ``express@^2``) and this will be what you ``package.json`` will eventually include.
|
1042
1047
|
:param bundler_options: (experimental) Options for ``Bundler``.
|
1048
|
+
:param bun_version: (experimental) The version of Bun to use if using Bun as a package manager. Default: "latest"
|
1043
1049
|
:param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
|
1044
1050
|
:param clobber: (experimental) Add a ``clobber`` task which resets the repo to origin. Default: - true, but false for subprojects
|
1045
1051
|
:param code_artifact_options: (experimental) Options for npm packages using AWS CodeArtifact. This is required if publishing packages to, or installing scoped packages from AWS CodeArtifact Default: - undefined
|
@@ -1281,6 +1287,7 @@ class JsiiProjectOptions:
|
|
1281
1287
|
check_type(argname="argument bump_package", value=bump_package, expected_type=type_hints["bump_package"])
|
1282
1288
|
check_type(argname="argument bundled_deps", value=bundled_deps, expected_type=type_hints["bundled_deps"])
|
1283
1289
|
check_type(argname="argument bundler_options", value=bundler_options, expected_type=type_hints["bundler_options"])
|
1290
|
+
check_type(argname="argument bun_version", value=bun_version, expected_type=type_hints["bun_version"])
|
1284
1291
|
check_type(argname="argument check_licenses", value=check_licenses, expected_type=type_hints["check_licenses"])
|
1285
1292
|
check_type(argname="argument clobber", value=clobber, expected_type=type_hints["clobber"])
|
1286
1293
|
check_type(argname="argument code_artifact_options", value=code_artifact_options, expected_type=type_hints["code_artifact_options"])
|
@@ -1467,6 +1474,8 @@ class JsiiProjectOptions:
|
|
1467
1474
|
self._values["bundled_deps"] = bundled_deps
|
1468
1475
|
if bundler_options is not None:
|
1469
1476
|
self._values["bundler_options"] = bundler_options
|
1477
|
+
if bun_version is not None:
|
1478
|
+
self._values["bun_version"] = bun_version
|
1470
1479
|
if check_licenses is not None:
|
1471
1480
|
self._values["check_licenses"] = check_licenses
|
1472
1481
|
if clobber is not None:
|
@@ -2042,6 +2051,17 @@ class JsiiProjectOptions:
|
|
2042
2051
|
result = self._values.get("bundler_options")
|
2043
2052
|
return typing.cast(typing.Optional[_projen_javascript_04054675.BundlerOptions], result)
|
2044
2053
|
|
2054
|
+
@builtins.property
|
2055
|
+
def bun_version(self) -> typing.Optional[builtins.str]:
|
2056
|
+
'''(experimental) The version of Bun to use if using Bun as a package manager.
|
2057
|
+
|
2058
|
+
:default: "latest"
|
2059
|
+
|
2060
|
+
:stability: experimental
|
2061
|
+
'''
|
2062
|
+
result = self._values.get("bun_version")
|
2063
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
2064
|
+
|
2045
2065
|
@builtins.property
|
2046
2066
|
def check_licenses(
|
2047
2067
|
self,
|
@@ -3846,6 +3866,7 @@ class NpmPackage(
|
|
3846
3866
|
bump_package: typing.Optional[builtins.str] = None,
|
3847
3867
|
bundled_deps: typing.Optional[typing.Sequence[builtins.str]] = None,
|
3848
3868
|
bundler_options: typing.Optional[typing.Union[_projen_javascript_04054675.BundlerOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
3869
|
+
bun_version: typing.Optional[builtins.str] = None,
|
3849
3870
|
check_licenses: typing.Optional[typing.Union[_projen_javascript_04054675.LicenseCheckerOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
3850
3871
|
clobber: typing.Optional[builtins.bool] = None,
|
3851
3872
|
code_artifact_options: typing.Optional[typing.Union[_projen_javascript_04054675.CodeArtifactOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
@@ -3996,6 +4017,7 @@ class NpmPackage(
|
|
3996
4017
|
:param bump_package: (experimental) The ``commit-and-tag-version`` compatible package used to bump the package version, as a dependency string. This can be any compatible package version, including the deprecated ``standard-version@9``. Default: - A recent version of "commit-and-tag-version"
|
3997
4018
|
:param bundled_deps: (experimental) List of dependencies to bundle into this module. These modules will be added both to the ``dependencies`` section and ``bundledDependencies`` section of your ``package.json``. The recommendation is to only specify the module name here (e.g. ``express``). This will behave similar to ``yarn add`` or ``npm install`` in the sense that it will add the module as a dependency to your ``package.json`` file with the latest version (``^``). You can specify semver requirements in the same syntax passed to ``npm i`` or ``yarn add`` (e.g. ``express@^2``) and this will be what you ``package.json`` will eventually include.
|
3998
4019
|
:param bundler_options: (experimental) Options for ``Bundler``.
|
4020
|
+
:param bun_version: (experimental) The version of Bun to use if using Bun as a package manager. Default: "latest"
|
3999
4021
|
:param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
|
4000
4022
|
:param clobber: (experimental) Add a ``clobber`` task which resets the repo to origin. Default: - true, but false for subprojects
|
4001
4023
|
:param code_artifact_options: (experimental) Options for npm packages using AWS CodeArtifact. This is required if publishing packages to, or installing scoped packages from AWS CodeArtifact Default: - undefined
|
@@ -4146,6 +4168,7 @@ class NpmPackage(
|
|
4146
4168
|
bump_package=bump_package,
|
4147
4169
|
bundled_deps=bundled_deps,
|
4148
4170
|
bundler_options=bundler_options,
|
4171
|
+
bun_version=bun_version,
|
4149
4172
|
check_licenses=check_licenses,
|
4150
4173
|
clobber=clobber,
|
4151
4174
|
code_artifact_options=code_artifact_options,
|
@@ -4315,6 +4338,7 @@ class NpmPackage(
|
|
4315
4338
|
"bump_package": "bumpPackage",
|
4316
4339
|
"bundled_deps": "bundledDeps",
|
4317
4340
|
"bundler_options": "bundlerOptions",
|
4341
|
+
"bun_version": "bunVersion",
|
4318
4342
|
"check_licenses": "checkLicenses",
|
4319
4343
|
"clobber": "clobber",
|
4320
4344
|
"code_artifact_options": "codeArtifactOptions",
|
@@ -4469,6 +4493,7 @@ class NpmPackageOptions:
|
|
4469
4493
|
bump_package: typing.Optional[builtins.str] = None,
|
4470
4494
|
bundled_deps: typing.Optional[typing.Sequence[builtins.str]] = None,
|
4471
4495
|
bundler_options: typing.Optional[typing.Union[_projen_javascript_04054675.BundlerOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
4496
|
+
bun_version: typing.Optional[builtins.str] = None,
|
4472
4497
|
check_licenses: typing.Optional[typing.Union[_projen_javascript_04054675.LicenseCheckerOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
4473
4498
|
clobber: typing.Optional[builtins.bool] = None,
|
4474
4499
|
code_artifact_options: typing.Optional[typing.Union[_projen_javascript_04054675.CodeArtifactOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
@@ -4620,6 +4645,7 @@ class NpmPackageOptions:
|
|
4620
4645
|
:param bump_package: (experimental) The ``commit-and-tag-version`` compatible package used to bump the package version, as a dependency string. This can be any compatible package version, including the deprecated ``standard-version@9``. Default: - A recent version of "commit-and-tag-version"
|
4621
4646
|
:param bundled_deps: (experimental) List of dependencies to bundle into this module. These modules will be added both to the ``dependencies`` section and ``bundledDependencies`` section of your ``package.json``. The recommendation is to only specify the module name here (e.g. ``express``). This will behave similar to ``yarn add`` or ``npm install`` in the sense that it will add the module as a dependency to your ``package.json`` file with the latest version (``^``). You can specify semver requirements in the same syntax passed to ``npm i`` or ``yarn add`` (e.g. ``express@^2``) and this will be what you ``package.json`` will eventually include.
|
4622
4647
|
:param bundler_options: (experimental) Options for ``Bundler``.
|
4648
|
+
:param bun_version: (experimental) The version of Bun to use if using Bun as a package manager. Default: "latest"
|
4623
4649
|
:param check_licenses: (experimental) Configure which licenses should be deemed acceptable for use by dependencies. This setting will cause the build to fail, if any prohibited or not allowed licenses ares encountered. Default: - no license checks are run during the build and all licenses will be accepted
|
4624
4650
|
:param clobber: (experimental) Add a ``clobber`` task which resets the repo to origin. Default: - true, but false for subprojects
|
4625
4651
|
:param code_artifact_options: (experimental) Options for npm packages using AWS CodeArtifact. This is required if publishing packages to, or installing scoped packages from AWS CodeArtifact Default: - undefined
|
@@ -4833,6 +4859,7 @@ class NpmPackageOptions:
|
|
4833
4859
|
check_type(argname="argument bump_package", value=bump_package, expected_type=type_hints["bump_package"])
|
4834
4860
|
check_type(argname="argument bundled_deps", value=bundled_deps, expected_type=type_hints["bundled_deps"])
|
4835
4861
|
check_type(argname="argument bundler_options", value=bundler_options, expected_type=type_hints["bundler_options"])
|
4862
|
+
check_type(argname="argument bun_version", value=bun_version, expected_type=type_hints["bun_version"])
|
4836
4863
|
check_type(argname="argument check_licenses", value=check_licenses, expected_type=type_hints["check_licenses"])
|
4837
4864
|
check_type(argname="argument clobber", value=clobber, expected_type=type_hints["clobber"])
|
4838
4865
|
check_type(argname="argument code_artifact_options", value=code_artifact_options, expected_type=type_hints["code_artifact_options"])
|
@@ -5003,6 +5030,8 @@ class NpmPackageOptions:
|
|
5003
5030
|
self._values["bundled_deps"] = bundled_deps
|
5004
5031
|
if bundler_options is not None:
|
5005
5032
|
self._values["bundler_options"] = bundler_options
|
5033
|
+
if bun_version is not None:
|
5034
|
+
self._values["bun_version"] = bun_version
|
5006
5035
|
if check_licenses is not None:
|
5007
5036
|
self._values["check_licenses"] = check_licenses
|
5008
5037
|
if clobber is not None:
|
@@ -5516,6 +5545,17 @@ class NpmPackageOptions:
|
|
5516
5545
|
result = self._values.get("bundler_options")
|
5517
5546
|
return typing.cast(typing.Optional[_projen_javascript_04054675.BundlerOptions], result)
|
5518
5547
|
|
5548
|
+
@builtins.property
|
5549
|
+
def bun_version(self) -> typing.Optional[builtins.str]:
|
5550
|
+
'''(experimental) The version of Bun to use if using Bun as a package manager.
|
5551
|
+
|
5552
|
+
:default: "latest"
|
5553
|
+
|
5554
|
+
:stability: experimental
|
5555
|
+
'''
|
5556
|
+
result = self._values.get("bun_version")
|
5557
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
5558
|
+
|
5519
5559
|
@builtins.property
|
5520
5560
|
def check_licenses(
|
5521
5561
|
self,
|
@@ -8686,6 +8726,7 @@ def _typecheckingstub__bcc0f0f3d874afabc142961b7ca192083fcad906385166f2e47f7e739
|
|
8686
8726
|
bump_package: typing.Optional[builtins.str] = None,
|
8687
8727
|
bundled_deps: typing.Optional[typing.Sequence[builtins.str]] = None,
|
8688
8728
|
bundler_options: typing.Optional[typing.Union[_projen_javascript_04054675.BundlerOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
8729
|
+
bun_version: typing.Optional[builtins.str] = None,
|
8689
8730
|
check_licenses: typing.Optional[typing.Union[_projen_javascript_04054675.LicenseCheckerOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
8690
8731
|
clobber: typing.Optional[builtins.bool] = None,
|
8691
8732
|
code_artifact_options: typing.Optional[typing.Union[_projen_javascript_04054675.CodeArtifactOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
@@ -8859,6 +8900,7 @@ def _typecheckingstub__b17dce6f2f04ceb519c781a818d66bcf4fef528d5b613028b126fd373
|
|
8859
8900
|
bump_package: typing.Optional[builtins.str] = None,
|
8860
8901
|
bundled_deps: typing.Optional[typing.Sequence[builtins.str]] = None,
|
8861
8902
|
bundler_options: typing.Optional[typing.Union[_projen_javascript_04054675.BundlerOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
8903
|
+
bun_version: typing.Optional[builtins.str] = None,
|
8862
8904
|
check_licenses: typing.Optional[typing.Union[_projen_javascript_04054675.LicenseCheckerOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
8863
8905
|
clobber: typing.Optional[builtins.bool] = None,
|
8864
8906
|
code_artifact_options: typing.Optional[typing.Union[_projen_javascript_04054675.CodeArtifactOptions, typing.Dict[builtins.str, typing.Any]]] = None,
|
projen_modules/_jsii/__init__.py
CHANGED
@@ -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.
|
35
|
+
"projen-modules", "0.1.13", __name__[0:-6], "projen-modules@0.1.13.jsii.tgz"
|
36
36
|
)
|
37
37
|
|
38
38
|
__all__ = [
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: projen_modules
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.13
|
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>
|
@@ -22,7 +22,7 @@ Description-Content-Type: text/markdown
|
|
22
22
|
License-File: LICENSE
|
23
23
|
Requires-Dist: constructs==10.4.2
|
24
24
|
Requires-Dist: jsii<2.0.0,>=1.106.0
|
25
|
-
Requires-Dist: projen==0.91.
|
25
|
+
Requires-Dist: projen==0.91.7
|
26
26
|
Requires-Dist: publication>=0.0.3
|
27
27
|
Requires-Dist: typeguard<4.3.0,>=2.13.3
|
28
28
|
|
@@ -0,0 +1,9 @@
|
|
1
|
+
projen_modules/__init__.py,sha256=QPz24qNpfGYERxlkRh0lM844ZbbCICP4x4e4Rbwx4kc,533631
|
2
|
+
projen_modules/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
+
projen_modules/_jsii/__init__.py,sha256=5Q1DAnz5qCenkbNmqcgP80mF94V4AnC10vJ6ZXjfZC0,1440
|
4
|
+
projen_modules/_jsii/projen-modules@0.1.13.jsii.tgz,sha256=fFUFOD7bmtnVHp6YgJ2ExWK1FY_ekeWvWDPVFBDN3FY,145306
|
5
|
+
projen_modules-0.1.13.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
6
|
+
projen_modules-0.1.13.dist-info/METADATA,sha256=zU7NFKXe_CrnVWtmPG9RhYI0KSGyJlyIRw4vKSTDLxU,3095
|
7
|
+
projen_modules-0.1.13.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
8
|
+
projen_modules-0.1.13.dist-info/top_level.txt,sha256=YhmVEeu2LoZS5cqGRszYa1QjC4sk2iA12CJBzxieX8I,15
|
9
|
+
projen_modules-0.1.13.dist-info/RECORD,,
|
Binary file
|
@@ -1,9 +0,0 @@
|
|
1
|
-
projen_modules/__init__.py,sha256=t8mxYhziRYWBnBvnux9Gy6AlvSza2KXTU5vwvtOLNrg,531519
|
2
|
-
projen_modules/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
3
|
-
projen_modules/_jsii/__init__.py,sha256=AMnxudPp-h5XPFTycsxHktK3AB37Z_9lnQ9X5j4mKQA,1440
|
4
|
-
projen_modules/_jsii/projen-modules@0.1.12.jsii.tgz,sha256=XT1FZnYhPFIdwvUtsNtELkAZeWUjBA_yrVy7xFHMifs,143720
|
5
|
-
projen_modules-0.1.12.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
6
|
-
projen_modules-0.1.12.dist-info/METADATA,sha256=ZVpVvP2zccgJWbZwBZBtUHQ2rQNTB6r_0BeuF2CwKI0,3095
|
7
|
-
projen_modules-0.1.12.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
8
|
-
projen_modules-0.1.12.dist-info/top_level.txt,sha256=YhmVEeu2LoZS5cqGRszYa1QjC4sk2iA12CJBzxieX8I,15
|
9
|
-
projen_modules-0.1.12.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|