lerna-projen 0.1.81 → 0.1.83
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 +3 -3
- package/API.md +26 -0
- package/lib/index.js +2 -2
- package/package.json +3 -3
package/.jsii
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"fs-extra": "^9.1.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"projen": "^0.71.
|
|
17
|
+
"projen": "^0.71.43"
|
|
18
18
|
},
|
|
19
19
|
"dependencyClosure": {
|
|
20
20
|
"projen": {
|
|
@@ -781,6 +781,6 @@
|
|
|
781
781
|
"symbolId": "src/types:TaskCustomization"
|
|
782
782
|
}
|
|
783
783
|
},
|
|
784
|
-
"version": "0.1.
|
|
785
|
-
"fingerprint": "
|
|
784
|
+
"version": "0.1.83",
|
|
785
|
+
"fingerprint": "M6uePUGK9Hdt5FCpwDlUSrLeorDxV4D99ABxBVRSF2Q="
|
|
786
786
|
}
|
package/API.md
CHANGED
|
@@ -4984,6 +4984,7 @@ TaskCustomization options.
|
|
|
4984
4984
|
| <code><a href="#lerna-projen.LernaProject.property.projectBuild">projectBuild</a></code> | <code>projen.ProjectBuild</code> | Manages the build process of the project. |
|
|
4985
4985
|
| <code><a href="#lerna-projen.LernaProject.property.projenCommand">projenCommand</a></code> | <code>string</code> | The command to use in order to run the projen CLI. |
|
|
4986
4986
|
| <code><a href="#lerna-projen.LernaProject.property.root">root</a></code> | <code>projen.Project</code> | The root project. |
|
|
4987
|
+
| <code><a href="#lerna-projen.LernaProject.property.subprojects">subprojects</a></code> | <code>projen.Project[]</code> | Returns all the subprojects within this project. |
|
|
4987
4988
|
| <code><a href="#lerna-projen.LernaProject.property.tasks">tasks</a></code> | <code>projen.Tasks</code> | Project tasks. |
|
|
4988
4989
|
| <code><a href="#lerna-projen.LernaProject.property.testTask">testTask</a></code> | <code>projen.Task</code> | *No description.* |
|
|
4989
4990
|
| <code><a href="#lerna-projen.LernaProject.property.defaultTask">defaultTask</a></code> | <code>projen.Task</code> | This is the "default" task, the one that executes "projen". |
|
|
@@ -5232,6 +5233,18 @@ The root project.
|
|
|
5232
5233
|
|
|
5233
5234
|
---
|
|
5234
5235
|
|
|
5236
|
+
##### `subprojects`<sup>Required</sup> <a name="subprojects" id="lerna-projen.LernaProject.property.subprojects"></a>
|
|
5237
|
+
|
|
5238
|
+
```typescript
|
|
5239
|
+
public readonly subprojects: Project[];
|
|
5240
|
+
```
|
|
5241
|
+
|
|
5242
|
+
- *Type:* projen.Project[]
|
|
5243
|
+
|
|
5244
|
+
Returns all the subprojects within this project.
|
|
5245
|
+
|
|
5246
|
+
---
|
|
5247
|
+
|
|
5235
5248
|
##### `tasks`<sup>Required</sup> <a name="tasks" id="lerna-projen.LernaProject.property.tasks"></a>
|
|
5236
5249
|
|
|
5237
5250
|
```typescript
|
|
@@ -6347,6 +6360,7 @@ TaskCustomization options.
|
|
|
6347
6360
|
| <code><a href="#lerna-projen.LernaTypescriptProject.property.projectBuild">projectBuild</a></code> | <code>projen.ProjectBuild</code> | Manages the build process of the project. |
|
|
6348
6361
|
| <code><a href="#lerna-projen.LernaTypescriptProject.property.projenCommand">projenCommand</a></code> | <code>string</code> | The command to use in order to run the projen CLI. |
|
|
6349
6362
|
| <code><a href="#lerna-projen.LernaTypescriptProject.property.root">root</a></code> | <code>projen.Project</code> | The root project. |
|
|
6363
|
+
| <code><a href="#lerna-projen.LernaTypescriptProject.property.subprojects">subprojects</a></code> | <code>projen.Project[]</code> | Returns all the subprojects within this project. |
|
|
6350
6364
|
| <code><a href="#lerna-projen.LernaTypescriptProject.property.tasks">tasks</a></code> | <code>projen.Tasks</code> | Project tasks. |
|
|
6351
6365
|
| <code><a href="#lerna-projen.LernaTypescriptProject.property.testTask">testTask</a></code> | <code>projen.Task</code> | *No description.* |
|
|
6352
6366
|
| <code><a href="#lerna-projen.LernaTypescriptProject.property.defaultTask">defaultTask</a></code> | <code>projen.Task</code> | This is the "default" task, the one that executes "projen". |
|
|
@@ -6603,6 +6617,18 @@ The root project.
|
|
|
6603
6617
|
|
|
6604
6618
|
---
|
|
6605
6619
|
|
|
6620
|
+
##### `subprojects`<sup>Required</sup> <a name="subprojects" id="lerna-projen.LernaTypescriptProject.property.subprojects"></a>
|
|
6621
|
+
|
|
6622
|
+
```typescript
|
|
6623
|
+
public readonly subprojects: Project[];
|
|
6624
|
+
```
|
|
6625
|
+
|
|
6626
|
+
- *Type:* projen.Project[]
|
|
6627
|
+
|
|
6628
|
+
Returns all the subprojects within this project.
|
|
6629
|
+
|
|
6630
|
+
---
|
|
6631
|
+
|
|
6606
6632
|
##### `tasks`<sup>Required</sup> <a name="tasks" id="lerna-projen.LernaTypescriptProject.property.tasks"></a>
|
|
6607
6633
|
|
|
6608
6634
|
```typescript
|
package/lib/index.js
CHANGED
|
@@ -93,7 +93,7 @@ class LernaProject extends projen_1.javascript.NodeProject {
|
|
|
93
93
|
}
|
|
94
94
|
}
|
|
95
95
|
_a = JSII_RTTI_SYMBOL_1;
|
|
96
|
-
LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.
|
|
96
|
+
LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.83" };
|
|
97
97
|
exports.LernaProject = LernaProject;
|
|
98
98
|
/**
|
|
99
99
|
* @pjid lerna-ts-project
|
|
@@ -138,7 +138,7 @@ class LernaTypescriptProject extends projen_1.typescript.TypeScriptProject {
|
|
|
138
138
|
}
|
|
139
139
|
}
|
|
140
140
|
_b = JSII_RTTI_SYMBOL_1;
|
|
141
|
-
LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.
|
|
141
|
+
LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.83" };
|
|
142
142
|
exports.LernaTypescriptProject = LernaTypescriptProject;
|
|
143
143
|
class LernaProjectFactory {
|
|
144
144
|
constructor(project) {
|
package/package.json
CHANGED
|
@@ -57,14 +57,14 @@
|
|
|
57
57
|
"jsii-docgen": "^7.2.9",
|
|
58
58
|
"jsii-pacmak": "^1.80.0",
|
|
59
59
|
"npm-check-updates": "^16",
|
|
60
|
-
"projen": "^0.71.
|
|
60
|
+
"projen": "^0.71.43",
|
|
61
61
|
"standard-version": "^9",
|
|
62
62
|
"ts-jest": "^27",
|
|
63
63
|
"ts-node": "^10.9.1",
|
|
64
64
|
"typescript": "^4.9.5"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
|
-
"projen": "^0.71.
|
|
67
|
+
"projen": "^0.71.43"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"commander": "^10.0.1",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
],
|
|
83
83
|
"main": "lib/index.js",
|
|
84
84
|
"license": "Apache-2.0",
|
|
85
|
-
"version": "0.1.
|
|
85
|
+
"version": "0.1.83",
|
|
86
86
|
"jest": {
|
|
87
87
|
"testMatch": [
|
|
88
88
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|