projen 0.93.3__py3-none-any.whl → 0.94.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of projen might be problematic. Click here for more details.
- projen/_jsii/__init__.py +1 -1
- projen/_jsii/projen@0.94.0.jsii.tgz +0 -0
- projen/awscdk/__init__.py +9 -9
- projen/cdk/__init__.py +6 -6
- projen/cdk8s/__init__.py +6 -6
- projen/cdktf/__init__.py +3 -3
- projen/javascript/__init__.py +51 -57
- projen/javascript/biome_config/__init__.py +3794 -22860
- projen/typescript/__init__.py +7 -7
- projen/web/__init__.py +6 -6
- {projen-0.93.3.data → projen-0.94.0.data}/scripts/projen +1 -1
- {projen-0.93.3.dist-info → projen-0.94.0.dist-info}/METADATA +1 -1
- projen-0.94.0.dist-info/RECORD +27 -0
- projen/_jsii/projen@0.93.3.jsii.tgz +0 -0
- projen-0.93.3.dist-info/RECORD +0 -27
- {projen-0.93.3.dist-info → projen-0.94.0.dist-info}/LICENSE +0 -0
- {projen-0.93.3.dist-info → projen-0.94.0.dist-info}/WHEEL +0 -0
- {projen-0.93.3.dist-info → projen-0.94.0.dist-info}/top_level.txt +0 -0
projen/typescript/__init__.py
CHANGED
|
@@ -969,7 +969,7 @@ class TypeScriptProject(
|
|
|
969
969
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
970
970
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
971
971
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
972
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
972
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
973
973
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
974
974
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
975
975
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -1825,7 +1825,7 @@ class TypeScriptProjectOptions(_NodeProjectOptions_d12f6f3b):
|
|
|
1825
1825
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
1826
1826
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
1827
1827
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
1828
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
1828
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
1829
1829
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
1830
1830
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
1831
1831
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -4072,7 +4072,7 @@ class TypeScriptProjectOptions(_NodeProjectOptions_d12f6f3b):
|
|
|
4072
4072
|
def eslint(self) -> typing.Optional[builtins.bool]:
|
|
4073
4073
|
'''(experimental) Setup eslint.
|
|
4074
4074
|
|
|
4075
|
-
:default: true
|
|
4075
|
+
:default: - true, unless biome is enabled
|
|
4076
4076
|
|
|
4077
4077
|
:stability: experimental
|
|
4078
4078
|
'''
|
|
@@ -4420,7 +4420,7 @@ class TypeScriptAppProject(
|
|
|
4420
4420
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
4421
4421
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
4422
4422
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
4423
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
4423
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
4424
4424
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
4425
4425
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
4426
4426
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -4895,7 +4895,7 @@ class TypeScriptLibraryProject(
|
|
|
4895
4895
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
4896
4896
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
4897
4897
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
4898
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
4898
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
4899
4899
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
4900
4900
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
4901
4901
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -5648,7 +5648,7 @@ class TypeScriptLibraryProjectOptions(TypeScriptProjectOptions):
|
|
|
5648
5648
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
5649
5649
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
5650
5650
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
5651
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
5651
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
5652
5652
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
5653
5653
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
5654
5654
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -7897,7 +7897,7 @@ class TypeScriptLibraryProjectOptions(TypeScriptProjectOptions):
|
|
|
7897
7897
|
def eslint(self) -> typing.Optional[builtins.bool]:
|
|
7898
7898
|
'''(experimental) Setup eslint.
|
|
7899
7899
|
|
|
7900
|
-
:default: true
|
|
7900
|
+
:default: - true, unless biome is enabled
|
|
7901
7901
|
|
|
7902
7902
|
:stability: experimental
|
|
7903
7903
|
'''
|
projen/web/__init__.py
CHANGED
|
@@ -3487,7 +3487,7 @@ class NextJsTypeScriptProject(
|
|
|
3487
3487
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
3488
3488
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
3489
3489
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
3490
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
3490
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
3491
3491
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
3492
3492
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
3493
3493
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -4279,7 +4279,7 @@ class NextJsTypeScriptProjectOptions(
|
|
|
4279
4279
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
4280
4280
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
4281
4281
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
4282
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
4282
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
4283
4283
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
4284
4284
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
4285
4285
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -6556,7 +6556,7 @@ class NextJsTypeScriptProjectOptions(
|
|
|
6556
6556
|
def eslint(self) -> typing.Optional[builtins.bool]:
|
|
6557
6557
|
'''(experimental) Setup eslint.
|
|
6558
6558
|
|
|
6559
|
-
:default: true
|
|
6559
|
+
:default: - true, unless biome is enabled
|
|
6560
6560
|
|
|
6561
6561
|
:stability: experimental
|
|
6562
6562
|
'''
|
|
@@ -7746,7 +7746,7 @@ class ReactTypeScriptProject(
|
|
|
7746
7746
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
7747
7747
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
7748
7748
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
7749
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
7749
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
7750
7750
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
7751
7751
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
7752
7752
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -8515,7 +8515,7 @@ class ReactTypeScriptProjectOptions(
|
|
|
8515
8515
|
:param docgen: (experimental) Docgen by Typedoc. Default: false
|
|
8516
8516
|
:param docs_directory: (experimental) Docs directory. Default: "docs"
|
|
8517
8517
|
:param entrypoint_types: (experimental) The .d.ts file that includes the type declarations for this module. Default: - .d.ts file derived from the project's entrypoint (usually lib/index.d.ts)
|
|
8518
|
-
:param eslint: (experimental) Setup eslint. Default: true
|
|
8518
|
+
:param eslint: (experimental) Setup eslint. Default: - true, unless biome is enabled
|
|
8519
8519
|
:param eslint_options: (experimental) Eslint options. Default: - opinionated default options
|
|
8520
8520
|
:param libdir: (experimental) Typescript artifacts output directory. Default: "lib"
|
|
8521
8521
|
:param projenrc_ts: (experimental) Use TypeScript for your projenrc file (``.projenrc.ts``). Default: false
|
|
@@ -10766,7 +10766,7 @@ class ReactTypeScriptProjectOptions(
|
|
|
10766
10766
|
def eslint(self) -> typing.Optional[builtins.bool]:
|
|
10767
10767
|
'''(experimental) Setup eslint.
|
|
10768
10768
|
|
|
10769
|
-
:default: true
|
|
10769
|
+
:default: - true, unless biome is enabled
|
|
10770
10770
|
|
|
10771
10771
|
:stability: experimental
|
|
10772
10772
|
'''
|
|
@@ -8,7 +8,7 @@ if "JSII_RUNTIME_PACKAGE_CACHE" not in os.environ:
|
|
|
8
8
|
os.environ["JSII_RUNTIME_PACKAGE_CACHE"] = "disabled"
|
|
9
9
|
|
|
10
10
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
11
|
-
"projen", "0.
|
|
11
|
+
"projen", "0.94.0", "projen", "projen@0.94.0.jsii.tgz"
|
|
12
12
|
)
|
|
13
13
|
|
|
14
14
|
exit_code = __jsii_assembly__.invokeBinScript("projen", "projen", sys.argv[1:])
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
projen/__init__.py,sha256=enk9OVj1wwybFoSxSFFljuOcgiHWh-_izr2fj57oBdw,682920
|
|
2
|
+
projen/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
projen/_jsii/__init__.py,sha256=RQJD4r9LupsKaNOnve5pSv4DfElikhM8I-GTKZdFyfA,1404
|
|
4
|
+
projen/_jsii/projen@0.94.0.jsii.tgz,sha256=bqTMLqBaH34tRExuT2WNQVGj0Er4Q2Fn4ywFmIoRjeE,2922518
|
|
5
|
+
projen/awscdk/__init__.py,sha256=rb8Yb-qH9bHRJ-4uobUbtsobw0GlWwYTLy7sqcEP0bI,1134229
|
|
6
|
+
projen/build/__init__.py,sha256=CW4d2sEJXpP5DAOJKdOt8jaRSfdDjiWdb66k8JBsvRI,54225
|
|
7
|
+
projen/cdk/__init__.py,sha256=uFE70xdYN4nK_yrCOFW8gkcuHWM4JHaD4pziZIChAJA,538333
|
|
8
|
+
projen/cdk8s/__init__.py,sha256=nVyeVTm-Rp5qSnpnpsd0F_lH1AgdvTlI7YmwfIhjSEE,624813
|
|
9
|
+
projen/cdktf/__init__.py,sha256=CMMPuagj_w1y9pNjhiYG5soU4xFrurhL9QOgA_HT0mA,238088
|
|
10
|
+
projen/circleci/__init__.py,sha256=RvY_jD_QyDzURlD54vqebZrodhRv86Mn-I_YKH9ccw4,77781
|
|
11
|
+
projen/github/__init__.py,sha256=3QsckjxLjN3dXgMtcZIstIxBX8YlKDV75rZkydTVUr4,475267
|
|
12
|
+
projen/github/workflows/__init__.py,sha256=FvVHeCQ1lGQaMoXNsAQSOomS80eM5KO53JzEMRRJMtk,270268
|
|
13
|
+
projen/gitlab/__init__.py,sha256=BiiBQonVYZgdGo3NLXxJ6WcW47UuGQjBkTRLGm09Ozk,207826
|
|
14
|
+
projen/java/__init__.py,sha256=Y8yfXiL4RNXtxIc0LB7O3K0CKyw9TkQKkVXgJ57A9Fw,195299
|
|
15
|
+
projen/javascript/__init__.py,sha256=OP3nsrUAD1p1r4ouLnZges7MqmoSDuAczJA2qDYKm5k,893574
|
|
16
|
+
projen/javascript/biome_config/__init__.py,sha256=tO8ofUMIbI5OREKmA-AytyomEGHbaU6bRcvqW55azV8,220208
|
|
17
|
+
projen/python/__init__.py,sha256=Qir5Sm6lrXrWSveA26s7iDp57DGa4JLde37I2EZMRJU,220487
|
|
18
|
+
projen/release/__init__.py,sha256=r7qrI9gWkD8MQkBmRIwEiMBqoCQrP8d4v_NPDz15go0,295939
|
|
19
|
+
projen/typescript/__init__.py,sha256=Rfx-CAX9fnQET1wR-GHEqFeNFFvMtaVBYYB6VXJYvsU,504529
|
|
20
|
+
projen/vscode/__init__.py,sha256=eY_k2L0CXCqe1MKhP9syyb1qJyESBFg4ru2KlzuJ2m8,70008
|
|
21
|
+
projen/web/__init__.py,sha256=yUiT39q3emLQXMLKpRgW2vX9xdBgTOKyVScr29BJHoI,848698
|
|
22
|
+
projen-0.94.0.data/scripts/projen,sha256=JhBjDuwmwDftva0EkkJxXO_802xG0imdn742BR9MHzs,356
|
|
23
|
+
projen-0.94.0.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
24
|
+
projen-0.94.0.dist-info/METADATA,sha256=KnKotfu6zlf37aw8b3bf1tmN42Jnl5XQSZyEoFT80EU,79605
|
|
25
|
+
projen-0.94.0.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
26
|
+
projen-0.94.0.dist-info/top_level.txt,sha256=Ul8VGUArFqejE5BMSked3l6NMBO6gjQEWywhM5gw1zw,7
|
|
27
|
+
projen-0.94.0.dist-info/RECORD,,
|
|
Binary file
|
projen-0.93.3.dist-info/RECORD
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
projen/__init__.py,sha256=enk9OVj1wwybFoSxSFFljuOcgiHWh-_izr2fj57oBdw,682920
|
|
2
|
-
projen/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
-
projen/_jsii/__init__.py,sha256=s2pIB-cCGbx-FXpyduW5rBCE_RI-Kn5fBIc9x1hI9mk,1404
|
|
4
|
-
projen/_jsii/projen@0.93.3.jsii.tgz,sha256=OsdlvA6z3sbOQzKVuwnUkO5thHlEkZ-p9gL-34GEaWw,2943268
|
|
5
|
-
projen/awscdk/__init__.py,sha256=UYKtmojaM74EcUGzI9Z7bhYU2x8X5Jzg7PcEMz_CMVE,1133986
|
|
6
|
-
projen/build/__init__.py,sha256=CW4d2sEJXpP5DAOJKdOt8jaRSfdDjiWdb66k8JBsvRI,54225
|
|
7
|
-
projen/cdk/__init__.py,sha256=qCYr2RD-Y7g6n5fx9usQsbcIySNuCPqXAt_aT2m58Q0,538171
|
|
8
|
-
projen/cdk8s/__init__.py,sha256=WmxD0bz3xcdgdKKg_iuWJ4NWow_GHIdg2ZY4FncAfOk,624651
|
|
9
|
-
projen/cdktf/__init__.py,sha256=-DV__m-1Um_Du008d8FWKxcF0nu_0lHIwImOZM-sQ1o,238007
|
|
10
|
-
projen/circleci/__init__.py,sha256=RvY_jD_QyDzURlD54vqebZrodhRv86Mn-I_YKH9ccw4,77781
|
|
11
|
-
projen/github/__init__.py,sha256=3QsckjxLjN3dXgMtcZIstIxBX8YlKDV75rZkydTVUr4,475267
|
|
12
|
-
projen/github/workflows/__init__.py,sha256=FvVHeCQ1lGQaMoXNsAQSOomS80eM5KO53JzEMRRJMtk,270268
|
|
13
|
-
projen/gitlab/__init__.py,sha256=BiiBQonVYZgdGo3NLXxJ6WcW47UuGQjBkTRLGm09Ozk,207826
|
|
14
|
-
projen/java/__init__.py,sha256=Y8yfXiL4RNXtxIc0LB7O3K0CKyw9TkQKkVXgJ57A9Fw,195299
|
|
15
|
-
projen/javascript/__init__.py,sha256=Tf45YS4Fe_lP6U88IA7y0UlugP9IfV2zcYiav0IZ_U0,893229
|
|
16
|
-
projen/javascript/biome_config/__init__.py,sha256=HatY6bMNQ0sbZJEDn147vsXm9udCQ4VqUy0BmJswH1c,903934
|
|
17
|
-
projen/python/__init__.py,sha256=Qir5Sm6lrXrWSveA26s7iDp57DGa4JLde37I2EZMRJU,220487
|
|
18
|
-
projen/release/__init__.py,sha256=r7qrI9gWkD8MQkBmRIwEiMBqoCQrP8d4v_NPDz15go0,295939
|
|
19
|
-
projen/typescript/__init__.py,sha256=1CiWMyFGWfs_Uv_s-wMzMj6iuwWKB8UOrbkifECacjo,504340
|
|
20
|
-
projen/vscode/__init__.py,sha256=eY_k2L0CXCqe1MKhP9syyb1qJyESBFg4ru2KlzuJ2m8,70008
|
|
21
|
-
projen/web/__init__.py,sha256=HaU07EvLbpP3u_Sxjpb5_wDZTIl78nDCKSwvdYj4Sv4,848536
|
|
22
|
-
projen-0.93.3.data/scripts/projen,sha256=3kFKoDWCXjgVBs7PiXxjfTa3j4ygoExR-xc04U_Af5w,356
|
|
23
|
-
projen-0.93.3.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
24
|
-
projen-0.93.3.dist-info/METADATA,sha256=mfM7Hv3DSY8pPAJdcfsHQdh1OXlM4mXqqDiRHJJjIZ8,79605
|
|
25
|
-
projen-0.93.3.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
26
|
-
projen-0.93.3.dist-info/top_level.txt,sha256=Ul8VGUArFqejE5BMSked3l6NMBO6gjQEWywhM5gw1zw,7
|
|
27
|
-
projen-0.93.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|