@rio-cloud/cdk-v2-constructs 4.21.1 → 4.23.0
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 +81 -60
- package/API.md +10969 -3567
- package/CHANGELOG.md +14 -0
- package/lib/contributions/cop-frontend/cloudfront/rio-cloudfront-distribution.js +2 -2
- package/lib/contributions/team-transport-two/pipeline/buildspecs/buildspec-vulnerability-checks.yaml +1 -1
- package/lib/datadog/datadog-log-index-monitoring.d.ts +1 -0
- package/lib/datadog/datadog-log-index-monitoring.js +4 -1
- package/lib/datadog/datadog-monitor.d.ts +3 -0
- package/lib/datadog/datadog-monitor.js +5 -1
- package/lib/datadogv2/datadog-monitor.d.ts +8 -0
- package/lib/datadogv2/datadog-monitor.js +11 -2
- package/lib/watchful/watchful.d.ts +1 -0
- package/lib/watchful/watchful.js +3 -1
- package/package.json +10 -5
- package/version.json +1 -1
- package/scripts/.jsii-doc.mjs +0 -11
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
],
|
|
16
16
|
"main": "lib/index.js",
|
|
17
17
|
"license": "Apache-2.0",
|
|
18
|
-
"version": "4.
|
|
18
|
+
"version": "4.23.0",
|
|
19
19
|
"types": "lib/index.d.ts",
|
|
20
20
|
"stability": "stable",
|
|
21
21
|
"exports": {
|
|
@@ -38,23 +38,27 @@
|
|
|
38
38
|
"standard-version": {
|
|
39
39
|
"commitUrlFormat": "https://collaboration.msi.audi.com/stash/projects/RIODEV/repos/cdk-v2-constructs/commits/{{hash}}",
|
|
40
40
|
"compareUrlFormat": "{{host}}/stash/projects/RIODEV/repos/cdk-v2-constructs/compare/commits?targetBranch=refs%2Ftags%2F{{previousTag}}&sourceBranch=refs%2Ftags%2F{{currentTag}}",
|
|
41
|
-
"issueUrlFormat": "https://collaboration.msi.audi.com/jira/browse/{{id}}"
|
|
41
|
+
"issueUrlFormat": "https://collaboration.msi.audi.com/jira/browse/{{id}}",
|
|
42
|
+
"scripts": {
|
|
43
|
+
"postbump": "git add API.md"
|
|
44
|
+
}
|
|
42
45
|
},
|
|
43
46
|
"scripts": {
|
|
44
47
|
"compile": "jsii",
|
|
45
48
|
"build": "npm run compile && npm run copy-assets && npm run eslint && npm test",
|
|
46
49
|
"copy-assets": "copyfiles --error --up 1 src/contributions/team-transport-two/pipeline/buildspecs/buildspec*.yaml lib",
|
|
47
50
|
"watch": "jsii -w",
|
|
48
|
-
"bump": "standard-version",
|
|
51
|
+
"bump": "standard-version -a",
|
|
49
52
|
"test": "jest --coverage",
|
|
50
53
|
"test:watch": "jest --watch",
|
|
51
54
|
"eslint": "eslint --ext .ts,.tsx --fix --no-error-on-unmatched-pattern src test",
|
|
55
|
+
"docgen": "jsii-docgen",
|
|
52
56
|
"cdk": "cdk",
|
|
53
57
|
"release:check": "node release-commit-check.js",
|
|
54
|
-
"release:build": "npm run build && npm run bump",
|
|
58
|
+
"release:build": "npm run build && npm run docgen && npm run bump",
|
|
55
59
|
"release:push": "echo '✅ pushing release' && git push origin master --follow-tags",
|
|
56
60
|
"release": "npm run release:check && npm run release:build",
|
|
57
|
-
"release:dry-run": "npm run build && npm run release:check && standard-version --dry-run"
|
|
61
|
+
"release:dry-run": "npm run build && npm run docgen && npm run release:check && standard-version -a --dry-run"
|
|
58
62
|
},
|
|
59
63
|
"devDependencies": {
|
|
60
64
|
"@types/jest": "29.5.10",
|
|
@@ -76,6 +80,7 @@
|
|
|
76
80
|
"jest-junit": "16.0.0",
|
|
77
81
|
"jsii": "~5.2.32",
|
|
78
82
|
"jsii-diff": "~1.92.0",
|
|
83
|
+
"jsii-docgen": "^10.3.5",
|
|
79
84
|
"standard-version": "9.5.0",
|
|
80
85
|
"ts-jest": "^29.1.1",
|
|
81
86
|
"ts-node": "^10.9.1",
|
package/version.json
CHANGED
package/scripts/.jsii-doc.mjs
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Documentation, Language } from 'jsii-docgen';
|
|
2
|
-
|
|
3
|
-
const docs = await Documentation.forProject('.');
|
|
4
|
-
|
|
5
|
-
console.info("Step 1")
|
|
6
|
-
const markdown = (await docs.toMarkdown({ language: Language.TYPESCRIPT, })); // returns a markdown string
|
|
7
|
-
console.info("Step 2")
|
|
8
|
-
|
|
9
|
-
const json = (await docs.toJson({ language: Language.TYPESCRIPT })).render(); // returns a JSON object
|
|
10
|
-
|
|
11
|
-
console.log({markdown: markdown.render(), json})
|