mrpj 0.2.5 → 0.2.7
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 +526 -291
- package/API.md +210 -2
- package/lib/components/SelfMutationOnForks.d.ts +29 -0
- package/lib/components/SelfMutationOnForks.js +101 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/components/index.js +18 -0
- package/lib/construct-project-options.d.ts +15 -0
- package/lib/construct-project-options.js +1 -1
- package/lib/construct-project.js +1 -1
- package/lib/features/automation.d.ts +4 -1
- package/lib/features/automation.js +12 -2
- package/lib/features/index.d.ts +1 -0
- package/lib/features/index.js +4 -2
- package/lib/features/self-mutation.d.ts +7 -0
- package/lib/features/self-mutation.js +14 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +3 -2
- package/lib/logo/Logo.js +1 -1
- package/lib/logo/SvgFile.js +1 -1
- package/lib/logo/Wordmark.js +1 -1
- package/lib/projen-project-options.d.ts +22 -1
- package/lib/projen-project-options.js +1 -1
- package/lib/projen-project.js +6 -5
- package/lib/typescript-project-options.d.ts +22 -1
- package/lib/typescript-project-options.js +1 -1
- package/lib/typescript-project.js +5 -4
- package/package.json +11 -11
- package/resources/node-versions.json +5 -4
package/package.json
CHANGED
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"organization": false
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@jsii/spec": "^1.
|
|
41
|
-
"@mrgrain/jsii-struct-builder": "^0.7.
|
|
40
|
+
"@jsii/spec": "^1.121.0",
|
|
41
|
+
"@mrgrain/jsii-struct-builder": "^0.7.64",
|
|
42
42
|
"@stylistic/eslint-plugin": "^2",
|
|
43
43
|
"@types/jest": "^27",
|
|
44
|
-
"@types/node": "ts5.
|
|
44
|
+
"@types/node": "ts5.9",
|
|
45
45
|
"@typescript-eslint/eslint-plugin": "^8",
|
|
46
46
|
"@typescript-eslint/parser": "^8",
|
|
47
47
|
"commit-and-tag-version": "^12",
|
|
@@ -51,16 +51,16 @@
|
|
|
51
51
|
"eslint-plugin-import": "^2.32.0",
|
|
52
52
|
"jest": "^29",
|
|
53
53
|
"jest-junit": "^16",
|
|
54
|
-
"jsii": "5.
|
|
55
|
-
"jsii-diff": "^1.
|
|
54
|
+
"jsii": "5.9.x",
|
|
55
|
+
"jsii-diff": "^1.121.0",
|
|
56
56
|
"jsii-docgen": "^10",
|
|
57
|
-
"jsii-pacmak": "^1.
|
|
58
|
-
"jsii-rosetta": "5.
|
|
59
|
-
"projen": "^0.98.
|
|
57
|
+
"jsii-pacmak": "^1.121.0",
|
|
58
|
+
"jsii-rosetta": "5.9.x",
|
|
59
|
+
"projen": "^0.98.30",
|
|
60
60
|
"ts-jest": "^29",
|
|
61
61
|
"ts-node": "^10.9.2",
|
|
62
|
-
"tsx": "^4.
|
|
63
|
-
"typescript": "5.
|
|
62
|
+
"tsx": "^4.21.0",
|
|
63
|
+
"typescript": "5.9.x"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
66
|
"constructs": "^10.0.0",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"publishConfig": {
|
|
73
73
|
"access": "public"
|
|
74
74
|
},
|
|
75
|
-
"version": "0.2.
|
|
75
|
+
"version": "0.2.7",
|
|
76
76
|
"jest": {
|
|
77
77
|
"coverageProvider": "v8",
|
|
78
78
|
"testMatch": [
|
|
@@ -48,19 +48,20 @@
|
|
|
48
48
|
},
|
|
49
49
|
{
|
|
50
50
|
"major": "20",
|
|
51
|
-
"version": "20.19.
|
|
51
|
+
"version": "20.19.6",
|
|
52
52
|
"stable": true,
|
|
53
53
|
"lts": "Iron"
|
|
54
54
|
},
|
|
55
55
|
{
|
|
56
56
|
"major": "22",
|
|
57
|
-
"version": "22.
|
|
57
|
+
"version": "22.21.1",
|
|
58
58
|
"stable": true,
|
|
59
59
|
"lts": "Jod"
|
|
60
60
|
},
|
|
61
61
|
{
|
|
62
62
|
"major": "24",
|
|
63
|
-
"version": "24.
|
|
64
|
-
"stable": true
|
|
63
|
+
"version": "24.12.0",
|
|
64
|
+
"stable": true,
|
|
65
|
+
"lts": "Krypton"
|
|
65
66
|
}
|
|
66
67
|
]
|