projen 0.96.5__tar.gz → 0.97.0__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.
Potentially problematic release.
This version of projen might be problematic. Click here for more details.
- {projen-0.96.5/src/projen.egg-info → projen-0.97.0}/PKG-INFO +1 -1
- {projen-0.96.5 → projen-0.97.0}/setup.py +2 -2
- {projen-0.96.5 → projen-0.97.0}/src/projen/_jsii/__init__.py +1 -1
- {projen-0.96.5 → projen-0.97.0}/src/projen/_jsii/bin/projen +1 -1
- projen-0.97.0/src/projen/_jsii/projen@0.97.0.jsii.tgz +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/awscdk/__init__.py +8 -8
- {projen-0.96.5 → projen-0.97.0}/src/projen/javascript/__init__.py +4 -4
- {projen-0.96.5 → projen-0.97.0/src/projen.egg-info}/PKG-INFO +1 -1
- {projen-0.96.5 → projen-0.97.0}/src/projen.egg-info/SOURCES.txt +1 -1
- projen-0.96.5/src/projen/_jsii/projen@0.96.5.jsii.tgz +0 -0
- {projen-0.96.5 → projen-0.97.0}/LICENSE +0 -0
- {projen-0.96.5 → projen-0.97.0}/MANIFEST.in +0 -0
- {projen-0.96.5 → projen-0.97.0}/README.md +0 -0
- {projen-0.96.5 → projen-0.97.0}/pyproject.toml +0 -0
- {projen-0.96.5 → projen-0.97.0}/setup.cfg +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/__init__.py +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/build/__init__.py +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/cdk/__init__.py +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/cdk8s/__init__.py +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/cdktf/__init__.py +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/circleci/__init__.py +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/github/__init__.py +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/github/workflows/__init__.py +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/gitlab/__init__.py +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/java/__init__.py +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/javascript/biome_config/__init__.py +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/py.typed +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/python/__init__.py +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/release/__init__.py +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/typescript/__init__.py +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/vscode/__init__.py +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen/web/__init__.py +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen.egg-info/dependency_links.txt +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen.egg-info/requires.txt +0 -0
- {projen-0.96.5 → projen-0.97.0}/src/projen.egg-info/top_level.txt +0 -0
|
@@ -5,7 +5,7 @@ kwargs = json.loads(
|
|
|
5
5
|
"""
|
|
6
6
|
{
|
|
7
7
|
"name": "projen",
|
|
8
|
-
"version": "0.
|
|
8
|
+
"version": "0.97.0",
|
|
9
9
|
"description": "CDK for software projects",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"url": "https://github.com/projen/projen.git",
|
|
@@ -43,7 +43,7 @@ kwargs = json.loads(
|
|
|
43
43
|
],
|
|
44
44
|
"package_data": {
|
|
45
45
|
"projen._jsii": [
|
|
46
|
-
"projen@0.
|
|
46
|
+
"projen@0.97.0.jsii.tgz"
|
|
47
47
|
],
|
|
48
48
|
"projen": [
|
|
49
49
|
"py.typed"
|
|
@@ -31,7 +31,7 @@ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing
|
|
|
31
31
|
import constructs._jsii
|
|
32
32
|
|
|
33
33
|
__jsii_assembly__ = jsii.JSIIAssembly.load(
|
|
34
|
-
"projen", "0.
|
|
34
|
+
"projen", "0.97.0", __name__[0:-6], "projen@0.97.0.jsii.tgz"
|
|
35
35
|
)
|
|
36
36
|
|
|
37
37
|
__all__ = [
|
|
@@ -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.97.0", "projen", "projen@0.97.0.jsii.tgz"
|
|
12
12
|
)
|
|
13
13
|
|
|
14
14
|
exit_code = __jsii_assembly__.invokeBinScript("projen", "projen", sys.argv[1:])
|
|
Binary file
|
|
@@ -5326,7 +5326,7 @@ class LambdaFunction(
|
|
|
5326
5326
|
:param aws_sdk_connection_reuse: (experimental) Whether to automatically reuse TCP connections when working with the AWS SDK for JavaScript. This sets the ``AWS_NODEJS_CONNECTION_REUSE_ENABLED`` environment variable to ``1``. Not applicable when ``edgeLambda`` is set to ``true`` because environment variables are not supported in Lambda@Edge. Default: true
|
|
5327
5327
|
:param bundling_options: (experimental) Bundling options for this AWS Lambda function. If not specified the default bundling options specified for the project ``Bundler`` instance will be used. Default: - defaults
|
|
5328
5328
|
:param edge_lambda: (experimental) Whether to create a ``cloudfront.experimental.EdgeFunction`` instead of a ``lambda.Function``. Default: false
|
|
5329
|
-
:param runtime: (experimental) The node.js version to target. Default: Runtime.
|
|
5329
|
+
:param runtime: (experimental) The node.js version to target. Default: Runtime.NODEJS_22_X
|
|
5330
5330
|
|
|
5331
5331
|
:stability: experimental
|
|
5332
5332
|
'''
|
|
@@ -5374,7 +5374,7 @@ class LambdaFunctionCommonOptions:
|
|
|
5374
5374
|
:param aws_sdk_connection_reuse: (experimental) Whether to automatically reuse TCP connections when working with the AWS SDK for JavaScript. This sets the ``AWS_NODEJS_CONNECTION_REUSE_ENABLED`` environment variable to ``1``. Not applicable when ``edgeLambda`` is set to ``true`` because environment variables are not supported in Lambda@Edge. Default: true
|
|
5375
5375
|
:param bundling_options: (experimental) Bundling options for this AWS Lambda function. If not specified the default bundling options specified for the project ``Bundler`` instance will be used. Default: - defaults
|
|
5376
5376
|
:param edge_lambda: (experimental) Whether to create a ``cloudfront.experimental.EdgeFunction`` instead of a ``lambda.Function``. Default: false
|
|
5377
|
-
:param runtime: (experimental) The node.js version to target. Default: Runtime.
|
|
5377
|
+
:param runtime: (experimental) The node.js version to target. Default: Runtime.NODEJS_22_X
|
|
5378
5378
|
|
|
5379
5379
|
:stability: experimental
|
|
5380
5380
|
'''
|
|
@@ -5443,7 +5443,7 @@ class LambdaFunctionCommonOptions:
|
|
|
5443
5443
|
def runtime(self) -> typing.Optional["LambdaRuntime"]:
|
|
5444
5444
|
'''(experimental) The node.js version to target.
|
|
5445
5445
|
|
|
5446
|
-
:default: Runtime.
|
|
5446
|
+
:default: Runtime.NODEJS_22_X
|
|
5447
5447
|
|
|
5448
5448
|
:stability: experimental
|
|
5449
5449
|
'''
|
|
@@ -5494,7 +5494,7 @@ class LambdaFunctionOptions(LambdaFunctionCommonOptions):
|
|
|
5494
5494
|
:param aws_sdk_connection_reuse: (experimental) Whether to automatically reuse TCP connections when working with the AWS SDK for JavaScript. This sets the ``AWS_NODEJS_CONNECTION_REUSE_ENABLED`` environment variable to ``1``. Not applicable when ``edgeLambda`` is set to ``true`` because environment variables are not supported in Lambda@Edge. Default: true
|
|
5495
5495
|
:param bundling_options: (experimental) Bundling options for this AWS Lambda function. If not specified the default bundling options specified for the project ``Bundler`` instance will be used. Default: - defaults
|
|
5496
5496
|
:param edge_lambda: (experimental) Whether to create a ``cloudfront.experimental.EdgeFunction`` instead of a ``lambda.Function``. Default: false
|
|
5497
|
-
:param runtime: (experimental) The node.js version to target. Default: Runtime.
|
|
5497
|
+
:param runtime: (experimental) The node.js version to target. Default: Runtime.NODEJS_22_X
|
|
5498
5498
|
:param cdk_deps: (experimental) AWS CDK dependency manager.
|
|
5499
5499
|
:param entrypoint: (experimental) A path from the project root directory to a TypeScript file which contains the AWS Lambda handler entrypoint (exports a ``handler`` function). This is relative to the root directory of the project.
|
|
5500
5500
|
:param construct_file: (experimental) The name of the generated TypeScript source file. This file should also be under the source tree. Default: - The name of the entrypoint file, with the ``-function.ts`` suffix instead of ``.lambda.ts``.
|
|
@@ -5578,7 +5578,7 @@ class LambdaFunctionOptions(LambdaFunctionCommonOptions):
|
|
|
5578
5578
|
def runtime(self) -> typing.Optional["LambdaRuntime"]:
|
|
5579
5579
|
'''(experimental) The node.js version to target.
|
|
5580
5580
|
|
|
5581
|
-
:default: Runtime.
|
|
5581
|
+
:default: Runtime.NODEJS_22_X
|
|
5582
5582
|
|
|
5583
5583
|
:stability: experimental
|
|
5584
5584
|
'''
|
|
@@ -5729,11 +5729,11 @@ class LambdaRuntime(metaclass=jsii.JSIIMeta, jsii_type="projen.awscdk.LambdaRunt
|
|
|
5729
5729
|
@jsii.python.classproperty
|
|
5730
5730
|
@jsii.member(jsii_name="NODEJS_18_X")
|
|
5731
5731
|
def NODEJS_18_X(cls) -> "LambdaRuntime":
|
|
5732
|
-
'''(
|
|
5732
|
+
'''(deprecated) Node.js 18.x.
|
|
5733
5733
|
|
|
5734
|
-
|
|
5734
|
+
:deprecated: : Node.js 18 runtime has been deprecated on Sep 1, 2025
|
|
5735
5735
|
|
|
5736
|
-
:stability:
|
|
5736
|
+
:stability: deprecated
|
|
5737
5737
|
'''
|
|
5738
5738
|
return typing.cast("LambdaRuntime", jsii.sget(cls, "NODEJS_18_X"))
|
|
5739
5739
|
|
|
@@ -751,7 +751,7 @@ class Bundler(
|
|
|
751
751
|
:param banner: (experimental) Use this to insert an arbitrary string at the beginning of generated JavaScript files. This is similar to footer which inserts at the end instead of the beginning. This is commonly used to insert comments: Default: - no comments are passed
|
|
752
752
|
:param charset: (experimental) The charset to use for esbuild's output. By default esbuild's output is ASCII-only. Any non-ASCII characters are escaped using backslash escape sequences. Using escape sequences makes the generated output slightly bigger, and also makes it harder to read. If you would like for esbuild to print the original characters without using escape sequences, use ``Charset.UTF8``. Default: Charset.ASCII
|
|
753
753
|
:param define: (experimental) Replace global identifiers with constant expressions. For example, ``{ 'process.env.DEBUG': 'true' }``. Another example, ``{ 'process.env.API_KEY': JSON.stringify('xxx-xxxx-xxx') }``. Default: - no replacements are made
|
|
754
|
-
:param esbuild_args: (experimental) Build arguments to pass into esbuild. For example, to add the `--log-limit <https://esbuild.github.io/api/#log-limit>`_ flag:: project.bundler.addBundle("./src/hello.ts", { platform: "node", target: "
|
|
754
|
+
:param esbuild_args: (experimental) Build arguments to pass into esbuild. For example, to add the `--log-limit <https://esbuild.github.io/api/#log-limit>`_ flag:: project.bundler.addBundle("./src/hello.ts", { platform: "node", target: "node22", sourcemap: true, format: "esm", esbuildArgs: { "--log-limit": "0", }, }); Default: - no additional esbuild arguments are passed
|
|
755
755
|
:param executable: (experimental) Mark the output file as executable. Default: false
|
|
756
756
|
:param footer: (experimental) Use this to insert an arbitrary string at the end of generated JavaScript files. This is similar to banner which inserts at the beginning instead of the end. This is commonly used to insert comments Default: - no comments are passed
|
|
757
757
|
:param format: (experimental) Output format for the generated JavaScript files. There are currently three possible values that can be configured: ``"iife"``, ``"cjs"``, and ``"esm"``. If not set (``undefined``), esbuild picks an output format for you based on ``platform``: - ``"cjs"`` if ``platform`` is ``"node"`` - ``"iife"`` if ``platform`` is ``"browser"`` - ``"esm"`` if ``platform`` is ``"neutral"`` Note: If making a bundle to run under node with ESM, set ``format`` to ``"esm"`` instead of setting ``platform`` to ``"neutral"``. Default: undefined
|
|
@@ -10443,7 +10443,7 @@ class RunBundleTask(enum.Enum):
|
|
|
10443
10443
|
// Tell the bundler to bundle the compiled results (from the "lib" directory)
|
|
10444
10444
|
project.bundler.addBundle("./lib/index.js", {
|
|
10445
10445
|
platform: "node",
|
|
10446
|
-
target: "
|
|
10446
|
+
target: "node22",
|
|
10447
10447
|
sourcemap: false,
|
|
10448
10448
|
format: "esm",
|
|
10449
10449
|
});
|
|
@@ -15703,7 +15703,7 @@ class AddBundleOptions(BundlingOptions):
|
|
|
15703
15703
|
:param banner: (experimental) Use this to insert an arbitrary string at the beginning of generated JavaScript files. This is similar to footer which inserts at the end instead of the beginning. This is commonly used to insert comments: Default: - no comments are passed
|
|
15704
15704
|
:param charset: (experimental) The charset to use for esbuild's output. By default esbuild's output is ASCII-only. Any non-ASCII characters are escaped using backslash escape sequences. Using escape sequences makes the generated output slightly bigger, and also makes it harder to read. If you would like for esbuild to print the original characters without using escape sequences, use ``Charset.UTF8``. Default: Charset.ASCII
|
|
15705
15705
|
:param define: (experimental) Replace global identifiers with constant expressions. For example, ``{ 'process.env.DEBUG': 'true' }``. Another example, ``{ 'process.env.API_KEY': JSON.stringify('xxx-xxxx-xxx') }``. Default: - no replacements are made
|
|
15706
|
-
:param esbuild_args: (experimental) Build arguments to pass into esbuild. For example, to add the `--log-limit <https://esbuild.github.io/api/#log-limit>`_ flag:: project.bundler.addBundle("./src/hello.ts", { platform: "node", target: "
|
|
15706
|
+
:param esbuild_args: (experimental) Build arguments to pass into esbuild. For example, to add the `--log-limit <https://esbuild.github.io/api/#log-limit>`_ flag:: project.bundler.addBundle("./src/hello.ts", { platform: "node", target: "node22", sourcemap: true, format: "esm", esbuildArgs: { "--log-limit": "0", }, }); Default: - no additional esbuild arguments are passed
|
|
15707
15707
|
:param executable: (experimental) Mark the output file as executable. Default: false
|
|
15708
15708
|
:param footer: (experimental) Use this to insert an arbitrary string at the end of generated JavaScript files. This is similar to banner which inserts at the beginning instead of the end. This is commonly used to insert comments Default: - no comments are passed
|
|
15709
15709
|
:param format: (experimental) Output format for the generated JavaScript files. There are currently three possible values that can be configured: ``"iife"``, ``"cjs"``, and ``"esm"``. If not set (``undefined``), esbuild picks an output format for you based on ``platform``: - ``"cjs"`` if ``platform`` is ``"node"`` - ``"iife"`` if ``platform`` is ``"browser"`` - ``"esm"`` if ``platform`` is ``"neutral"`` Note: If making a bundle to run under node with ESM, set ``format`` to ``"esm"`` instead of setting ``platform`` to ``"neutral"``. Default: undefined
|
|
@@ -15926,7 +15926,7 @@ class AddBundleOptions(BundlingOptions):
|
|
|
15926
15926
|
|
|
15927
15927
|
project.bundler.addBundle("./src/hello.ts", {
|
|
15928
15928
|
platform: "node",
|
|
15929
|
-
target: "
|
|
15929
|
+
target: "node22",
|
|
15930
15930
|
sourcemap: true,
|
|
15931
15931
|
format: "esm",
|
|
15932
15932
|
esbuildArgs: {
|
|
@@ -11,7 +11,7 @@ src/projen.egg-info/dependency_links.txt
|
|
|
11
11
|
src/projen.egg-info/requires.txt
|
|
12
12
|
src/projen.egg-info/top_level.txt
|
|
13
13
|
src/projen/_jsii/__init__.py
|
|
14
|
-
src/projen/_jsii/projen@0.
|
|
14
|
+
src/projen/_jsii/projen@0.97.0.jsii.tgz
|
|
15
15
|
src/projen/_jsii/bin/projen
|
|
16
16
|
src/projen/awscdk/__init__.py
|
|
17
17
|
src/projen/build/__init__.py
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|