projen 0.95.5__tar.gz → 0.95.6__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.95.5/src/projen.egg-info → projen-0.95.6}/PKG-INFO +1 -1
- {projen-0.95.5 → projen-0.95.6}/setup.py +2 -2
- {projen-0.95.5 → projen-0.95.6}/src/projen/__init__.py +24 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/_jsii/__init__.py +1 -1
- {projen-0.95.5 → projen-0.95.6}/src/projen/_jsii/bin/projen +1 -1
- projen-0.95.6/src/projen/_jsii/projen@0.95.6.jsii.tgz +0 -0
- {projen-0.95.5 → projen-0.95.6/src/projen.egg-info}/PKG-INFO +1 -1
- {projen-0.95.5 → projen-0.95.6}/src/projen.egg-info/SOURCES.txt +1 -1
- projen-0.95.5/src/projen/_jsii/projen@0.95.5.jsii.tgz +0 -0
- {projen-0.95.5 → projen-0.95.6}/LICENSE +0 -0
- {projen-0.95.5 → projen-0.95.6}/MANIFEST.in +0 -0
- {projen-0.95.5 → projen-0.95.6}/README.md +0 -0
- {projen-0.95.5 → projen-0.95.6}/pyproject.toml +0 -0
- {projen-0.95.5 → projen-0.95.6}/setup.cfg +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/awscdk/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/build/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/cdk/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/cdk8s/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/cdktf/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/circleci/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/github/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/github/workflows/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/gitlab/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/java/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/javascript/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/javascript/biome_config/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/py.typed +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/python/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/release/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/typescript/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/vscode/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen/web/__init__.py +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen.egg-info/dependency_links.txt +0 -0
- {projen-0.95.5 → projen-0.95.6}/src/projen.egg-info/requires.txt +0 -0
- {projen-0.95.5 → projen-0.95.6}/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.95.
|
|
8
|
+
"version": "0.95.6",
|
|
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.95.
|
|
46
|
+
"projen@0.95.6.jsii.tgz"
|
|
47
47
|
],
|
|
48
48
|
"projen": [
|
|
49
49
|
"py.typed"
|
|
@@ -3012,6 +3012,23 @@ class GitAttributesFile(
|
|
|
3012
3012
|
'''
|
|
3013
3013
|
return typing.cast(None, jsii.invoke(self, "preSynthesize", []))
|
|
3014
3014
|
|
|
3015
|
+
@jsii.member(jsii_name="removeAttributes")
|
|
3016
|
+
def remove_attributes(self, glob: builtins.str, *attributes: builtins.str) -> None:
|
|
3017
|
+
'''(experimental) Removes attributes from a set of files.
|
|
3018
|
+
|
|
3019
|
+
If no attributes are provided, the glob pattern will be removed completely.
|
|
3020
|
+
|
|
3021
|
+
:param glob: Glob pattern to modify.
|
|
3022
|
+
:param attributes: Attributes to remove from matched files.
|
|
3023
|
+
|
|
3024
|
+
:stability: experimental
|
|
3025
|
+
'''
|
|
3026
|
+
if __debug__:
|
|
3027
|
+
type_hints = typing.get_type_hints(_typecheckingstub__573b65747d3cd070f990730baa2e2b06016818d32122c7fbc2696b8513582a7d)
|
|
3028
|
+
check_type(argname="argument glob", value=glob, expected_type=type_hints["glob"])
|
|
3029
|
+
check_type(argname="argument attributes", value=attributes, expected_type=typing.Tuple[type_hints["attributes"], ...]) # pyright: ignore [reportGeneralTypeIssues]
|
|
3030
|
+
return typing.cast(None, jsii.invoke(self, "removeAttributes", [glob, *attributes]))
|
|
3031
|
+
|
|
3015
3032
|
@jsii.member(jsii_name="synthesizeContent")
|
|
3016
3033
|
def _synthesize_content(self, _: "IResolver") -> typing.Optional[builtins.str]:
|
|
3017
3034
|
'''(experimental) Implemented by derived classes and returns the contents of the file to emit.
|
|
@@ -13065,6 +13082,13 @@ def _typecheckingstub__ed3c05c2bc87434261501604cb4ca8386e08b16567b40f693170ab90f
|
|
|
13065
13082
|
"""Type checking stubs"""
|
|
13066
13083
|
pass
|
|
13067
13084
|
|
|
13085
|
+
def _typecheckingstub__573b65747d3cd070f990730baa2e2b06016818d32122c7fbc2696b8513582a7d(
|
|
13086
|
+
glob: builtins.str,
|
|
13087
|
+
*attributes: builtins.str,
|
|
13088
|
+
) -> None:
|
|
13089
|
+
"""Type checking stubs"""
|
|
13090
|
+
pass
|
|
13091
|
+
|
|
13068
13092
|
def _typecheckingstub__4d57ceb4d14bb3b3eac67478ac542d99ca5c6994286fdea034dacdf4b64fd14b(
|
|
13069
13093
|
_: IResolver,
|
|
13070
13094
|
) -> None:
|
|
@@ -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.95.
|
|
34
|
+
"projen", "0.95.6", __name__[0:-6], "projen@0.95.6.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.95.
|
|
11
|
+
"projen", "0.95.6", "projen", "projen@0.95.6.jsii.tgz"
|
|
12
12
|
)
|
|
13
13
|
|
|
14
14
|
exit_code = __jsii_assembly__.invokeBinScript("projen", "projen", sys.argv[1:])
|
|
Binary file
|
|
@@ -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.95.
|
|
14
|
+
src/projen/_jsii/projen@0.95.6.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
|
|
File without changes
|