lerna-projen 0.1.867 → 0.1.869
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 +6 -6
- package/API.md +16 -0
- package/lib/index.js +2 -2
- package/package.json +5 -5
package/.jsii
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"fs-extra": "^9.1.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"constructs": "^10.7.
|
|
18
|
-
"projen": "^0.101.
|
|
17
|
+
"constructs": "^10.7.2",
|
|
18
|
+
"projen": "^0.101.22"
|
|
19
19
|
},
|
|
20
20
|
"dependencyClosure": {
|
|
21
21
|
"constructs": {
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"stability": "stable"
|
|
91
91
|
},
|
|
92
92
|
"homepage": "https://github.com/AminFazlMondo/Lerna-Projen.git",
|
|
93
|
-
"jsiiVersion": "5.9.
|
|
93
|
+
"jsiiVersion": "5.9.49 (build 09a22a8)",
|
|
94
94
|
"keywords": [
|
|
95
95
|
"lerna",
|
|
96
96
|
"monorepo",
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
"hasDefaultInterfaces": true
|
|
105
105
|
}
|
|
106
106
|
},
|
|
107
|
-
"tscRootDir": "
|
|
107
|
+
"tscRootDir": "src"
|
|
108
108
|
},
|
|
109
109
|
"name": "lerna-projen",
|
|
110
110
|
"readme": {
|
|
@@ -1125,6 +1125,6 @@
|
|
|
1125
1125
|
"symbolId": "src/utils:AddNxTaskDependencyOptions"
|
|
1126
1126
|
}
|
|
1127
1127
|
},
|
|
1128
|
-
"version": "0.1.
|
|
1129
|
-
"fingerprint": "
|
|
1128
|
+
"version": "0.1.869",
|
|
1129
|
+
"fingerprint": "rcwEWrs+6BYjvdE8KG5Q7UDwduRl3y3aGho/Ifv0c1Q="
|
|
1130
1130
|
}
|
package/API.md
CHANGED
|
@@ -4885,6 +4885,10 @@ public readonly copyrightOwner: string;
|
|
|
4885
4885
|
|
|
4886
4886
|
License copyright owner.
|
|
4887
4887
|
|
|
4888
|
+
This value is only used if the selected license text contains the
|
|
4889
|
+
`$copyright_owner` placeholder. For example, it has no effect on the
|
|
4890
|
+
MPL-2.0 license text.
|
|
4891
|
+
|
|
4888
4892
|
---
|
|
4889
4893
|
|
|
4890
4894
|
##### `copyrightPeriod`<sup>Optional</sup> <a name="copyrightPeriod" id="lerna-projen.LernaProjectOptions.property.copyrightPeriod"></a>
|
|
@@ -4898,6 +4902,10 @@ public readonly copyrightPeriod: string;
|
|
|
4898
4902
|
|
|
4899
4903
|
The copyright years to put in the LICENSE file.
|
|
4900
4904
|
|
|
4905
|
+
This value is only used if the selected license text contains the
|
|
4906
|
+
`$copyright_period` placeholder. For example, it has no effect on the
|
|
4907
|
+
MPL-2.0 license text.
|
|
4908
|
+
|
|
4901
4909
|
---
|
|
4902
4910
|
|
|
4903
4911
|
##### `defaultReleaseBranch`<sup>Optional</sup> <a name="defaultReleaseBranch" id="lerna-projen.LernaProjectOptions.property.defaultReleaseBranch"></a>
|
|
@@ -7095,6 +7103,10 @@ public readonly copyrightOwner: string;
|
|
|
7095
7103
|
|
|
7096
7104
|
License copyright owner.
|
|
7097
7105
|
|
|
7106
|
+
This value is only used if the selected license text contains the
|
|
7107
|
+
`$copyright_owner` placeholder. For example, it has no effect on the
|
|
7108
|
+
MPL-2.0 license text.
|
|
7109
|
+
|
|
7098
7110
|
---
|
|
7099
7111
|
|
|
7100
7112
|
##### `copyrightPeriod`<sup>Optional</sup> <a name="copyrightPeriod" id="lerna-projen.LernaTypescriptProjectOptions.property.copyrightPeriod"></a>
|
|
@@ -7108,6 +7120,10 @@ public readonly copyrightPeriod: string;
|
|
|
7108
7120
|
|
|
7109
7121
|
The copyright years to put in the LICENSE file.
|
|
7110
7122
|
|
|
7123
|
+
This value is only used if the selected license text contains the
|
|
7124
|
+
`$copyright_period` placeholder. For example, it has no effect on the
|
|
7125
|
+
MPL-2.0 license text.
|
|
7126
|
+
|
|
7111
7127
|
---
|
|
7112
7128
|
|
|
7113
7129
|
##### `defaultReleaseBranch`<sup>Optional</sup> <a name="defaultReleaseBranch" id="lerna-projen.LernaTypescriptProjectOptions.property.defaultReleaseBranch"></a>
|
package/lib/index.js
CHANGED
|
@@ -95,7 +95,7 @@ const lockedTaskNames = ['build', 'upgrade', 'upgrade-projen', 'clobber', 'post-
|
|
|
95
95
|
* @pjid lerna-project
|
|
96
96
|
*/
|
|
97
97
|
class LernaProject extends projen_1.javascript.NodeProject {
|
|
98
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaProject", version: "0.1.
|
|
98
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaProject", version: "0.1.869" };
|
|
99
99
|
projenrcTs;
|
|
100
100
|
docsDirectory;
|
|
101
101
|
docgen;
|
|
@@ -149,7 +149,7 @@ exports.LernaProject = LernaProject;
|
|
|
149
149
|
* @pjid lerna-ts-project
|
|
150
150
|
*/
|
|
151
151
|
class LernaTypescriptProject extends projen_1.typescript.TypeScriptProject {
|
|
152
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.
|
|
152
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.869" };
|
|
153
153
|
sinceLastRelease;
|
|
154
154
|
useNx;
|
|
155
155
|
independentMode;
|
package/package.json
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@typescript-eslint/eslint-plugin": "^8",
|
|
23
23
|
"@typescript-eslint/parser": "^8",
|
|
24
24
|
"commit-and-tag-version": "^12",
|
|
25
|
-
"constructs": "^10.7.
|
|
25
|
+
"constructs": "^10.7.2",
|
|
26
26
|
"eslint": "^9",
|
|
27
27
|
"eslint-import-resolver-typescript": "^3.10.1",
|
|
28
28
|
"eslint-plugin-import": "^2.32.0",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"jsii-docgen": "^10.5.0",
|
|
34
34
|
"jsii-pacmak": "^1.139.0",
|
|
35
35
|
"jsii-rosetta": "5.9.x",
|
|
36
|
-
"projen": "^0.101.
|
|
36
|
+
"projen": "^0.101.22",
|
|
37
37
|
"ts-jest": "^29.4.12",
|
|
38
38
|
"ts-node": "^10.9.2",
|
|
39
39
|
"typescript": "^5.9.3"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"constructs": "^10.7.
|
|
43
|
-
"projen": "^0.101.
|
|
42
|
+
"constructs": "^10.7.2",
|
|
43
|
+
"projen": "^0.101.22"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"commander": "^11.1.0",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"publishConfig": {
|
|
73
73
|
"access": "public"
|
|
74
74
|
},
|
|
75
|
-
"version": "0.1.
|
|
75
|
+
"version": "0.1.869",
|
|
76
76
|
"jest": {
|
|
77
77
|
"coverageProvider": "v8",
|
|
78
78
|
"testMatch": [
|