lerna-projen 0.1.751 → 0.1.753

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.
Files changed (4) hide show
  1. package/.jsii +3 -3
  2. package/API.md +28 -0
  3. package/lib/index.js +2 -2
  4. package/package.json +3 -3
package/.jsii CHANGED
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "constructs": "^10.4.4",
18
- "projen": "^0.99.1"
18
+ "projen": "^0.99.3"
19
19
  },
20
20
  "dependencyClosure": {
21
21
  "constructs": {
@@ -1125,6 +1125,6 @@
1125
1125
  "symbolId": "src/utils:AddNxTaskDependencyOptions"
1126
1126
  }
1127
1127
  },
1128
- "version": "0.1.751",
1129
- "fingerprint": "bLa0IkRUz8OmDBscG9fiGXAH5L/KDUfLImrWs1xEeyY="
1128
+ "version": "0.1.753",
1129
+ "fingerprint": "aJPC3H+2C2qN1Tm5CwaC0llSXDznnCekoeOeIMXV7uU="
1130
1130
  }
package/API.md CHANGED
@@ -3440,6 +3440,7 @@ const lernaProjectOptions: LernaProjectOptions = { ... }
3440
3440
  | <code><a href="#lerna-projen.LernaProjectOptions.property.logging">logging</a></code> | <code>projen.LoggerOptions</code> | Configure logging options such as verbosity. |
3441
3441
  | <code><a href="#lerna-projen.LernaProjectOptions.property.outdir">outdir</a></code> | <code>string</code> | The root directory of the project. |
3442
3442
  | <code><a href="#lerna-projen.LernaProjectOptions.property.parent">parent</a></code> | <code>projen.Project</code> | The parent project, if this project is part of a bigger project. |
3443
+ | <code><a href="#lerna-projen.LernaProjectOptions.property.projectTree">projectTree</a></code> | <code>boolean</code> | Generate a project tree file (`.projen/tree.json`) that shows all components and their relationships. Useful for understanding your project structure and debugging. |
3443
3444
  | <code><a href="#lerna-projen.LernaProjectOptions.property.projenCommand">projenCommand</a></code> | <code>string</code> | The shell command to use in order to run the projen CLI. |
3444
3445
  | <code><a href="#lerna-projen.LernaProjectOptions.property.projenrcJson">projenrcJson</a></code> | <code>boolean</code> | Generate (once) .projenrc.json (in JSON). Set to `false` in order to disable .projenrc.json generation. |
3445
3446
  | <code><a href="#lerna-projen.LernaProjectOptions.property.projenrcJsonOptions">projenrcJsonOptions</a></code> | <code>projen.ProjenrcJsonOptions</code> | Options for .projenrc.json. |
@@ -3676,6 +3677,19 @@ The parent project, if this project is part of a bigger project.
3676
3677
 
3677
3678
  ---
3678
3679
 
3680
+ ##### `projectTree`<sup>Optional</sup> <a name="projectTree" id="lerna-projen.LernaProjectOptions.property.projectTree"></a>
3681
+
3682
+ ```typescript
3683
+ public readonly projectTree: boolean;
3684
+ ```
3685
+
3686
+ - *Type:* boolean
3687
+ - *Default:* false
3688
+
3689
+ Generate a project tree file (`.projen/tree.json`) that shows all components and their relationships. Useful for understanding your project structure and debugging.
3690
+
3691
+ ---
3692
+
3679
3693
  ##### `projenCommand`<sup>Optional</sup> <a name="projenCommand" id="lerna-projen.LernaProjectOptions.property.projenCommand"></a>
3680
3694
 
3681
3695
  ```typescript
@@ -5719,6 +5733,7 @@ const lernaTypescriptProjectOptions: LernaTypescriptProjectOptions = { ... }
5719
5733
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.logging">logging</a></code> | <code>projen.LoggerOptions</code> | Configure logging options such as verbosity. |
5720
5734
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.outdir">outdir</a></code> | <code>string</code> | The root directory of the project. |
5721
5735
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.parent">parent</a></code> | <code>projen.Project</code> | The parent project, if this project is part of a bigger project. |
5736
+ | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.projectTree">projectTree</a></code> | <code>boolean</code> | Generate a project tree file (`.projen/tree.json`) that shows all components and their relationships. Useful for understanding your project structure and debugging. |
5722
5737
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.projenCommand">projenCommand</a></code> | <code>string</code> | The shell command to use in order to run the projen CLI. |
5723
5738
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.projenrcJson">projenrcJson</a></code> | <code>boolean</code> | Generate (once) .projenrc.json (in JSON). Set to `false` in order to disable .projenrc.json generation. |
5724
5739
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.projenrcJsonOptions">projenrcJsonOptions</a></code> | <code>projen.ProjenrcJsonOptions</code> | Options for .projenrc.json. |
@@ -5971,6 +5986,19 @@ The parent project, if this project is part of a bigger project.
5971
5986
 
5972
5987
  ---
5973
5988
 
5989
+ ##### `projectTree`<sup>Optional</sup> <a name="projectTree" id="lerna-projen.LernaTypescriptProjectOptions.property.projectTree"></a>
5990
+
5991
+ ```typescript
5992
+ public readonly projectTree: boolean;
5993
+ ```
5994
+
5995
+ - *Type:* boolean
5996
+ - *Default:* false
5997
+
5998
+ Generate a project tree file (`.projen/tree.json`) that shows all components and their relationships. Useful for understanding your project structure and debugging.
5999
+
6000
+ ---
6001
+
5974
6002
  ##### `projenCommand`<sup>Optional</sup> <a name="projenCommand" id="lerna-projen.LernaTypescriptProjectOptions.property.projenCommand"></a>
5975
6003
 
5976
6004
  ```typescript
package/lib/index.js CHANGED
@@ -98,7 +98,7 @@ class LernaProject extends projen_1.javascript.NodeProject {
98
98
  }
99
99
  exports.LernaProject = LernaProject;
100
100
  _a = JSII_RTTI_SYMBOL_1;
101
- LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.751" };
101
+ LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.753" };
102
102
  /**
103
103
  * @pjid lerna-ts-project
104
104
  */
@@ -134,7 +134,7 @@ class LernaTypescriptProject extends projen_1.typescript.TypeScriptProject {
134
134
  }
135
135
  exports.LernaTypescriptProject = LernaTypescriptProject;
136
136
  _b = JSII_RTTI_SYMBOL_1;
137
- LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.751" };
137
+ LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.753" };
138
138
  class LernaProjectFactory {
139
139
  constructor(project) {
140
140
  this.project = project;
package/package.json CHANGED
@@ -59,14 +59,14 @@
59
59
  "jsii-docgen": "^10.5.0",
60
60
  "jsii-pacmak": "^1.125.0",
61
61
  "jsii-rosetta": "5.9.x",
62
- "projen": "^0.99.1",
62
+ "projen": "^0.99.3",
63
63
  "ts-jest": "^29.4.6",
64
64
  "ts-node": "^10.9.2",
65
65
  "typescript": "^5.9.3"
66
66
  },
67
67
  "peerDependencies": {
68
68
  "constructs": "^10.4.4",
69
- "projen": "^0.99.1"
69
+ "projen": "^0.99.3"
70
70
  },
71
71
  "dependencies": {
72
72
  "commander": "^11.1.0",
@@ -90,7 +90,7 @@
90
90
  "publishConfig": {
91
91
  "access": "public"
92
92
  },
93
- "version": "0.1.751",
93
+ "version": "0.1.753",
94
94
  "jest": {
95
95
  "coverageProvider": "v8",
96
96
  "testMatch": [