@nikovirtala/projen-constructs 0.3.2 → 0.3.4
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/.jsii +271 -283
- package/README.md +144 -11
- package/docs/api/classes/AwsCdkConstructLibraryProject.html +1 -1
- package/docs/api/classes/AwsCdkTypeScriptAppProject.html +1 -1
- package/docs/api/classes/JsiiProject.html +1 -1
- package/docs/api/classes/TypeScriptProject.html +1 -1
- package/docs/api/index.html +152 -12
- package/docs/api/interfaces/AwsCdkConstructLibraryProjectOptions.html +4 -7
- package/docs/api/interfaces/AwsCdkTypeScriptAppProjectOptions.html +4 -7
- package/docs/api/interfaces/JsiiProjectOptions.html +4 -7
- package/docs/api/interfaces/TypeScriptProjectOptions.html +4 -7
- package/lib/components/bundle-lambda-function-code.js +3 -3
- package/lib/components/colima.js +1 -1
- package/lib/components/homebrew.js +1 -1
- package/lib/components/lambda-function-construct-generator.js +1 -1
- package/lib/components/localstack.js +1 -1
- package/lib/components/mise.js +1 -1
- package/lib/components/typedoc.js +1 -1
- package/lib/components/vitest.js +1 -1
- package/lib/project-generator.d.ts +17 -1
- package/lib/project-generator.js +47 -4
- package/lib/projects/awscdk-construct-library-options.generated.d.ts +1 -2
- package/lib/projects/awscdk-construct-library-options.generated.js +1 -1
- package/lib/projects/awscdk-construct-library.generated.js +1 -1
- package/lib/projects/awscdk-typescript-app-options.generated.d.ts +1 -2
- package/lib/projects/awscdk-typescript-app-options.generated.js +1 -1
- package/lib/projects/awscdk-typescript-app.generated.js +1 -1
- package/lib/projects/jsii-options.generated.d.ts +1 -2
- package/lib/projects/jsii-options.generated.js +1 -1
- package/lib/projects/jsii.generated.js +1 -1
- package/lib/projects/typescript-options.generated.d.ts +1 -2
- package/lib/projects/typescript-options.generated.js +1 -1
- package/lib/projects/typescript.generated.js +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"jsii-docgen": "^10.5.0",
|
|
25
25
|
"jsii-pacmak": "^1.139.0",
|
|
26
26
|
"jsii-rosetta": "~6.0.3",
|
|
27
|
-
"projen": "^0.101.
|
|
28
|
-
"tsx": "^4.23.
|
|
27
|
+
"projen": "^0.101.28",
|
|
28
|
+
"tsx": "^4.23.10",
|
|
29
29
|
"typedoc": "^0.28",
|
|
30
30
|
"typescript": "6.0.3",
|
|
31
31
|
"vitest": "^4"
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"@mrgrain/cdk-esbuild": "^5.8.1",
|
|
35
35
|
"constructs": "^10.8.1",
|
|
36
|
-
"projen": "^0.101.
|
|
36
|
+
"projen": "^0.101.28"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@mrgrain/jsii-struct-builder": "^0.7.64",
|
|
40
40
|
"case": "^1.6.3",
|
|
41
|
-
"projen": "^0.101.
|
|
41
|
+
"projen": "^0.101.28"
|
|
42
42
|
},
|
|
43
43
|
"bundledDependencies": [
|
|
44
44
|
"@mrgrain/jsii-struct-builder",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"publishConfig": {
|
|
61
61
|
"access": "public"
|
|
62
62
|
},
|
|
63
|
-
"version": "0.3.
|
|
63
|
+
"version": "0.3.4",
|
|
64
64
|
"types": "lib/index.d.ts",
|
|
65
65
|
"jsii": {
|
|
66
66
|
"outdir": "dist",
|