cdktn-cli 0.25.0-pre.12 → 0.25.0-pre.13
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.
|
@@ -28,8 +28,9 @@ exports.post = (ctx) => {
|
|
|
28
28
|
throw new Error(`missing context "npm_cdktf"`);
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
//
|
|
32
|
-
//
|
|
31
|
+
// `constructs@10` resolves to the newest 10.x, which satisfies the `^10.6.0`
|
|
32
|
+
// peer range cdktn declares; that peer range is the real constraint, so
|
|
33
|
+
// only the major here has to follow cdktn's.
|
|
33
34
|
installDeps([npm_cdktf, `constructs@10`], false, silent);
|
|
34
35
|
// Capped below 7.x: that is the native port, which jsii does not support yet.
|
|
35
36
|
installDeps(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cdktn-cli",
|
|
3
|
-
"version": "0.25.0-pre.
|
|
3
|
+
"version": "0.25.0-pre.13",
|
|
4
4
|
"description": "CDK Terrain CLI",
|
|
5
5
|
"nx": {
|
|
6
6
|
"tags": [
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"is-ci": "^4.1.0",
|
|
44
44
|
"punycode": "2.3.1",
|
|
45
45
|
"yargs": "17.7.3",
|
|
46
|
-
"@cdktn/hcl-tools": "0.25.0-pre.
|
|
47
|
-
"@cdktn/
|
|
48
|
-
"@cdktn/
|
|
46
|
+
"@cdktn/hcl-tools": "0.25.0-pre.13",
|
|
47
|
+
"@cdktn/hcl2json": "0.25.0-pre.13",
|
|
48
|
+
"@cdktn/hcl2cdk": "0.25.0-pre.13"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
51
|
"jsii": "~6.0.0",
|
|
52
52
|
"jsii-pacmak": "1.140.0",
|
|
53
|
-
"cdktn": "0.25.0-pre.
|
|
53
|
+
"cdktn": "0.25.0-pre.13"
|
|
54
54
|
},
|
|
55
55
|
"lint-staged": {
|
|
56
56
|
"src/**/*.ts": [
|
|
@@ -80,10 +80,10 @@
|
|
|
80
80
|
"strip-ansi": "6.0.1",
|
|
81
81
|
"tsc-files": "1.1.4",
|
|
82
82
|
"typescript": "~6.0.0",
|
|
83
|
-
"@cdktn/cli-core": "0.25.0-pre.
|
|
84
|
-
"@cdktn/provider-generator": "0.25.0-pre.
|
|
85
|
-
"@cdktn/commons": "0.25.0-pre.
|
|
86
|
-
"@cdktn/provider-schema": "0.25.0-pre.
|
|
83
|
+
"@cdktn/cli-core": "0.25.0-pre.13",
|
|
84
|
+
"@cdktn/provider-generator": "0.25.0-pre.13",
|
|
85
|
+
"@cdktn/commons": "0.25.0-pre.13",
|
|
86
|
+
"@cdktn/provider-schema": "0.25.0-pre.13"
|
|
87
87
|
},
|
|
88
88
|
"scripts": {
|
|
89
89
|
"compile-build-config": "tsc build.ts --outDir build-config --ignoreConfig --module commonjs --target es2022",
|