cdk-simplewebsite-deploy 2.1.10 → 2.2.1
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 +5144 -264
- package/.tool-versions +3 -0
- package/API.md +34 -4
- package/README.md +114 -96
- package/lib/cdk-simplewebsite-deploy.d.ts +13 -0
- package/lib/cdk-simplewebsite-deploy.js +10 -4
- package/package.json +15 -13
package/package.json
CHANGED
|
@@ -17,7 +17,6 @@
|
|
|
17
17
|
"eslint": "npx projen eslint",
|
|
18
18
|
"package": "npx projen package",
|
|
19
19
|
"package-all": "npx projen package-all",
|
|
20
|
-
"package:dotnet": "npx projen package:dotnet",
|
|
21
20
|
"package:java": "npx projen package:java",
|
|
22
21
|
"package:js": "npx projen package:js",
|
|
23
22
|
"package:python": "npx projen package:python",
|
|
@@ -43,36 +42,43 @@
|
|
|
43
42
|
"@types/node": "^16 <= 16.18.78",
|
|
44
43
|
"@typescript-eslint/eslint-plugin": "^8",
|
|
45
44
|
"@typescript-eslint/parser": "^8",
|
|
46
|
-
"aws-cdk-lib": "2.
|
|
45
|
+
"aws-cdk-lib": "2.248.0",
|
|
47
46
|
"commit-and-tag-version": "^12",
|
|
48
|
-
"constructs": "10.
|
|
47
|
+
"constructs": "10.6.0",
|
|
49
48
|
"eslint": "^9",
|
|
50
49
|
"eslint-import-resolver-typescript": "^2.7.1",
|
|
51
50
|
"eslint-plugin-import": "^2.32.0",
|
|
52
51
|
"jest": "^27",
|
|
53
52
|
"jest-junit": "^16",
|
|
54
|
-
"jsii": "~5.9.
|
|
53
|
+
"jsii": "~5.9.37",
|
|
55
54
|
"jsii-diff": "^1.127.0",
|
|
56
55
|
"jsii-docgen": "^10.5.0",
|
|
57
56
|
"jsii-pacmak": "^1.127.0",
|
|
58
|
-
"jsii-rosetta": "~5.9.
|
|
59
|
-
"projen": "^0.99.
|
|
57
|
+
"jsii-rosetta": "~5.9.37",
|
|
58
|
+
"projen": "^0.99.38",
|
|
60
59
|
"ts-jest": "^27",
|
|
61
60
|
"typescript": "^4.9.5"
|
|
62
61
|
},
|
|
63
62
|
"peerDependencies": {
|
|
64
|
-
"aws-cdk-lib": "^2.
|
|
65
|
-
"constructs": "^10.
|
|
63
|
+
"aws-cdk-lib": "^2.248.0",
|
|
64
|
+
"constructs": "^10.6.0"
|
|
66
65
|
},
|
|
67
66
|
"keywords": [
|
|
68
67
|
"cdk"
|
|
69
68
|
],
|
|
69
|
+
"devEngines": {
|
|
70
|
+
"packageManager": {
|
|
71
|
+
"name": "yarn",
|
|
72
|
+
"version": "1.22.22",
|
|
73
|
+
"onFail": "ignore"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
70
76
|
"main": "lib/index.js",
|
|
71
77
|
"license": "Apache-2.0",
|
|
72
78
|
"publishConfig": {
|
|
73
79
|
"access": "public"
|
|
74
80
|
},
|
|
75
|
-
"version": "2.1
|
|
81
|
+
"version": "2.2.1",
|
|
76
82
|
"jest": {
|
|
77
83
|
"coverageProvider": "v8",
|
|
78
84
|
"testMatch": [
|
|
@@ -129,10 +135,6 @@
|
|
|
129
135
|
"python": {
|
|
130
136
|
"distName": "cdk-simplewebsite-deploy",
|
|
131
137
|
"module": "cdk_simplewebsite_deploy"
|
|
132
|
-
},
|
|
133
|
-
"dotnet": {
|
|
134
|
-
"namespace": "ThonBecker.CDK.SimpleWebsiteDeploy",
|
|
135
|
-
"packageId": "ThonBecker.CDK.SimpleWebsiteDeploy"
|
|
136
138
|
}
|
|
137
139
|
},
|
|
138
140
|
"tsc": {
|