@cdktf/provider-acme 6.0.1 → 6.0.2
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/.copywrite.hcl +24 -0
- package/.gitattributes +2 -1
- package/.jsii +195 -195
- package/README.md +2 -1
- package/lib/certificate/index.d.ts +4 -0
- package/lib/certificate/index.js +8 -8
- package/lib/index.d.ts +4 -0
- package/lib/index.js +5 -1
- package/lib/provider/index.d.ts +4 -0
- package/lib/provider/index.js +2 -2
- package/lib/registration/index.d.ts +4 -0
- package/lib/registration/index.js +3 -3
- package/package.json +8 -8
- package/scripts/check-for-upgrades.js +4 -0
- package/scripts/should-release.js +4 -0
package/.copywrite.hcl
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
schema_version = 1
|
2
|
+
|
3
|
+
project {
|
4
|
+
license = "MPL-2.0"
|
5
|
+
copyright_year = 2021
|
6
|
+
|
7
|
+
# (OPTIONAL) A list of globs that should not have copyright/license headers.
|
8
|
+
# Supports doublestar glob patterns for more flexibility in defining which
|
9
|
+
# files or folders should be ignored
|
10
|
+
header_ignore = [
|
11
|
+
"**/node_modules/**",
|
12
|
+
"lib/**",
|
13
|
+
"dist/**",
|
14
|
+
"logs/**",
|
15
|
+
"build/**",
|
16
|
+
".gen/**",
|
17
|
+
".github/ISSUE_TEMPLATE/**",
|
18
|
+
".terraform/**",
|
19
|
+
"docs/**",
|
20
|
+
"API.md",
|
21
|
+
".mergify.yml",
|
22
|
+
"scripts/*.js"
|
23
|
+
]
|
24
|
+
}
|
package/.gitattributes
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen".
|
2
2
|
|
3
|
+
/.copywrite.hcl linguist-generated
|
3
4
|
/.gitattributes linguist-generated
|
4
5
|
/.github/CODEOWNERS linguist-generated
|
5
6
|
/.github/ISSUE_TEMPLATE/config.yml linguist-generated
|
@@ -22,8 +23,8 @@
|
|
22
23
|
/.projen/deps.json linguist-generated
|
23
24
|
/.projen/files.json linguist-generated
|
24
25
|
/.projen/tasks.json linguist-generated
|
25
|
-
/API.md linguist-generated
|
26
26
|
/cdktf.json linguist-generated
|
27
|
+
/docs/*.md linguist-generated
|
27
28
|
/LICENSE linguist-generated
|
28
29
|
/package.json linguist-generated
|
29
30
|
/README.md linguist-generated
|