@cdktn/cli-core 0.24.0-pre.3 → 0.24.0-pre.31
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/.spec.swcrc +22 -0
- package/build/lib/cdktf-config.d.ts +2 -1
- package/build/lib/cdktf-config.d.ts.map +1 -1
- package/build/lib/cdktf-config.js +11 -1
- package/build/lib/dependencies/dependency-manager.js +2 -2
- package/build/lib/dependencies/package-manager.js +6 -6
- package/build/lib/get.d.ts.map +1 -1
- package/build/lib/get.js +2 -1
- package/build/lib/init.d.ts +1 -1
- package/build/lib/init.d.ts.map +1 -1
- package/build/lib/init.js +22 -4
- package/build/lib/local-provider-constraints.d.ts +3 -3
- package/build/lib/models/interactive-process.d.ts.map +1 -1
- package/build/lib/models/interactive-process.js +7 -6
- package/build/lib/models/schema.d.ts +150 -150
- package/build/lib/terraform-json.d.ts +48 -48
- package/jest.config.js +25 -11
- package/package.json +12 -17
- package/templates/csharp/TestProgram.cs +1 -1
- package/templates/csharp/help +9 -9
- package/templates/go/help +3 -3
- package/templates/go/main_test.go +1 -1
- package/templates/java/help +4 -4
- package/templates/java/src/test/java/com/company/app/MainTest.java +1 -1
- package/templates/python/help +3 -3
- package/templates/python/main-test.py +1 -1
- package/templates/python-pip/help +3 -3
- package/templates/python-pip/main-test.py +1 -1
- package/templates/typescript/__tests__/main-test.ts +1 -1
- package/templates/typescript/help +2 -2
|
@@ -5,7 +5,7 @@ import "cdktn/lib/testing/adapters/jest"; // Load types for expect matchers
|
|
|
5
5
|
|
|
6
6
|
describe("My CDKTN Application", () => {
|
|
7
7
|
// The tests below are example tests, you can find more information at
|
|
8
|
-
// https://
|
|
8
|
+
// https://cdktn.io/docs/test/unit-tests
|
|
9
9
|
it.todo("should be tested");
|
|
10
10
|
|
|
11
11
|
// // All Unit tests test the synthesised terraform code, it does not create real-world resources
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
|
|
37
37
|
cdktn provider add "aws@~>3.0" null kreuzwerker/docker
|
|
38
38
|
|
|
39
|
-
You can find all prebuilt providers on npm: https://www.npmjs.com/search?q=keywords:
|
|
39
|
+
You can find all prebuilt providers on npm: https://www.npmjs.com/search?q=keywords:cdktn
|
|
40
40
|
You can also install these providers directly through npm:
|
|
41
41
|
|
|
42
42
|
npm install @cdktn/provider-aws
|
|
@@ -46,6 +46,6 @@
|
|
|
46
46
|
npm install @cdktn/provider-github
|
|
47
47
|
npm install @cdktn/provider-null
|
|
48
48
|
|
|
49
|
-
You can also build any module or provider locally. Learn more https://
|
|
49
|
+
You can also build any module or provider locally. Learn more https://cdktn.io/docs/concepts/providers
|
|
50
50
|
|
|
51
51
|
========================================================================================================
|