cdk8s-cli 2.207.41 → 2.207.43
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.
- package/package.json +22 -18
- package/templates/java-app/pom.xml +13 -1
package/package.json
CHANGED
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"scripts": {
|
|
12
12
|
"build": "projen build",
|
|
13
13
|
"bump": "projen bump",
|
|
14
|
+
"bump:releasable-commits": "projen bump:releasable-commits",
|
|
14
15
|
"clobber": "projen clobber",
|
|
15
16
|
"compile": "projen compile",
|
|
16
17
|
"default": "projen default",
|
|
@@ -49,12 +50,13 @@
|
|
|
49
50
|
"organization": false
|
|
50
51
|
},
|
|
51
52
|
"devDependencies": {
|
|
52
|
-
"@cdk8s/projen-common": "^0.
|
|
53
|
+
"@cdk8s/projen-common": "^0.1.13",
|
|
53
54
|
"@stylistic/eslint-plugin": "^2",
|
|
54
55
|
"@types/fs-extra": "^8",
|
|
55
|
-
"@types/jest": "^
|
|
56
|
+
"@types/jest": "^29",
|
|
56
57
|
"@types/json-schema": "^7.0.15",
|
|
57
58
|
"@types/semver": "^7.7.1",
|
|
59
|
+
"@types/yargs": "^15",
|
|
58
60
|
"@typescript-eslint/eslint-plugin": "^8",
|
|
59
61
|
"@typescript-eslint/parser": "^8",
|
|
60
62
|
"commit-and-tag-version": "^12",
|
|
@@ -63,25 +65,25 @@
|
|
|
63
65
|
"eslint-import-resolver-typescript": "^2.7.1",
|
|
64
66
|
"eslint-plugin-import": "^2.32.0",
|
|
65
67
|
"fast-glob": "^3.3.3",
|
|
66
|
-
"jest": "^
|
|
68
|
+
"jest": "^29",
|
|
67
69
|
"jest-junit": "^17",
|
|
68
|
-
"projen": "^0.
|
|
69
|
-
"ts-jest": "^
|
|
70
|
+
"projen": "^0.101.22",
|
|
71
|
+
"ts-jest": "^29",
|
|
70
72
|
"ts-node": "^10.9.2",
|
|
71
73
|
"typescript": "~5.9",
|
|
72
|
-
"typescript-json-schema": "^0.
|
|
74
|
+
"typescript-json-schema": "^0.68.0"
|
|
73
75
|
},
|
|
74
76
|
"dependencies": {
|
|
75
77
|
"@types/node": "^16",
|
|
76
78
|
"ajv": "^8.20.0",
|
|
77
|
-
"cdk8s": "^2.70.
|
|
78
|
-
"cdk8s-plus-33": "^2.5.
|
|
79
|
-
"codemaker": "^1.
|
|
79
|
+
"cdk8s": "^2.70.87",
|
|
80
|
+
"cdk8s-plus-33": "^2.5.43",
|
|
81
|
+
"codemaker": "^1.139.0",
|
|
80
82
|
"colors": "1.4.0",
|
|
81
|
-
"constructs": "^10.
|
|
83
|
+
"constructs": "^10.7.2",
|
|
82
84
|
"fs-extra": "^8",
|
|
83
|
-
"jsii-pacmak": "^1.
|
|
84
|
-
"jsii-rosetta": "^5.9.
|
|
85
|
+
"jsii-pacmak": "^1.139.0",
|
|
86
|
+
"jsii-rosetta": "^5.9.58",
|
|
85
87
|
"jsii-srcmak": "0.1.1319",
|
|
86
88
|
"json2jsii": "0.5.19",
|
|
87
89
|
"semver": "^7.8.5",
|
|
@@ -106,7 +108,7 @@
|
|
|
106
108
|
"publishConfig": {
|
|
107
109
|
"access": "public"
|
|
108
110
|
},
|
|
109
|
-
"version": "2.207.
|
|
111
|
+
"version": "2.207.43",
|
|
110
112
|
"jest": {
|
|
111
113
|
"coverageProvider": "v8",
|
|
112
114
|
"testMatch": [
|
|
@@ -145,11 +147,13 @@
|
|
|
145
147
|
}
|
|
146
148
|
]
|
|
147
149
|
],
|
|
148
|
-
"
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
150
|
+
"transform": {
|
|
151
|
+
"^.+\\.[t]sx?$": [
|
|
152
|
+
"ts-jest",
|
|
153
|
+
{
|
|
154
|
+
"tsconfig": "test/tsconfig.json"
|
|
155
|
+
}
|
|
156
|
+
]
|
|
153
157
|
}
|
|
154
158
|
},
|
|
155
159
|
"exports": {
|
|
@@ -28,6 +28,18 @@
|
|
|
28
28
|
<artifactId>guava</artifactId>
|
|
29
29
|
<version>32.0.1-jre</version>
|
|
30
30
|
</dependency>
|
|
31
|
+
<dependency>
|
|
32
|
+
<groupId>javax.annotation</groupId>
|
|
33
|
+
<artifactId>javax.annotation-api</artifactId>
|
|
34
|
+
<version>1.3.2</version>
|
|
35
|
+
<scope>provided</scope>
|
|
36
|
+
</dependency>
|
|
37
|
+
<dependency>
|
|
38
|
+
<groupId>org.jetbrains</groupId>
|
|
39
|
+
<artifactId>annotations</artifactId>
|
|
40
|
+
<version>26.0.2</version>
|
|
41
|
+
<scope>provided</scope>
|
|
42
|
+
</dependency>
|
|
31
43
|
</dependencies>
|
|
32
44
|
<properties>
|
|
33
45
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
@@ -37,4 +49,4 @@
|
|
|
37
49
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
38
50
|
<testSourceDirectory>src/test/java</testSourceDirectory>
|
|
39
51
|
</build>
|
|
40
|
-
</project>
|
|
52
|
+
</project>
|