lerna-projen 0.1.635 → 0.1.637

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 +4 -3
  2. package/API.md +78 -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.2",
18
- "projen": "^0.92.10"
18
+ "projen": "^0.93.0"
19
19
  },
20
20
  "dependencyClosure": {
21
21
  "constructs": {
@@ -56,6 +56,7 @@
56
56
  "projen.gitlab": {},
57
57
  "projen.java": {},
58
58
  "projen.javascript": {},
59
+ "projen.javascript.biome_config": {},
59
60
  "projen.python": {},
60
61
  "projen.release": {},
61
62
  "projen.typescript": {},
@@ -1031,6 +1032,6 @@
1031
1032
  "symbolId": "src/utils:AddNxTaskDependencyOptions"
1032
1033
  }
1033
1034
  },
1034
- "version": "0.1.635",
1035
- "fingerprint": "j6PgGjcI/f6ax3vKFzviKj66kjKdM1TecoJNH/oMj7s="
1035
+ "version": "0.1.637",
1036
+ "fingerprint": "EPJvgU097LW4yHqtt2+CxmB4++BW1jUeyJuVqm/LTik="
1036
1037
  }
package/API.md CHANGED
@@ -725,6 +725,7 @@ When given a project, this it the project itself.
725
725
  | <code><a href="#lerna-projen.LernaProject.property.packageManager">packageManager</a></code> | <code>projen.javascript.NodePackageManager</code> | The package manager to use. |
726
726
  | <code><a href="#lerna-projen.LernaProject.property.runScriptCommand">runScriptCommand</a></code> | <code>string</code> | The command to use to run scripts (e.g. `yarn run` or `npm run` depends on the package manager). |
727
727
  | <code><a href="#lerna-projen.LernaProject.property.autoMerge">autoMerge</a></code> | <code>projen.github.AutoMerge</code> | Component that sets up mergify for merging approved pull requests. |
728
+ | <code><a href="#lerna-projen.LernaProject.property.biome">biome</a></code> | <code>projen.javascript.Biome</code> | *No description.* |
728
729
  | <code><a href="#lerna-projen.LernaProject.property.buildWorkflow">buildWorkflow</a></code> | <code>projen.build.BuildWorkflow</code> | The PR build GitHub workflow. |
729
730
  | <code><a href="#lerna-projen.LernaProject.property.buildWorkflowJobId">buildWorkflowJobId</a></code> | <code>string</code> | The job ID of the build workflow. |
730
731
  | <code><a href="#lerna-projen.LernaProject.property.jest">jest</a></code> | <code>projen.javascript.Jest</code> | The Jest configuration (if enabled). |
@@ -1257,6 +1258,16 @@ Component that sets up mergify for merging approved pull requests.
1257
1258
 
1258
1259
  ---
1259
1260
 
1261
+ ##### `biome`<sup>Optional</sup> <a name="biome" id="lerna-projen.LernaProject.property.biome"></a>
1262
+
1263
+ ```typescript
1264
+ public readonly biome: Biome;
1265
+ ```
1266
+
1267
+ - *Type:* projen.javascript.Biome
1268
+
1269
+ ---
1270
+
1260
1271
  ##### `buildWorkflow`<sup>Optional</sup> <a name="buildWorkflow" id="lerna-projen.LernaProject.property.buildWorkflow"></a>
1261
1272
 
1262
1273
  ```typescript
@@ -2212,6 +2223,7 @@ When given a project, this it the project itself.
2212
2223
  | <code><a href="#lerna-projen.LernaTypescriptProject.property.packageManager">packageManager</a></code> | <code>projen.javascript.NodePackageManager</code> | The package manager to use. |
2213
2224
  | <code><a href="#lerna-projen.LernaTypescriptProject.property.runScriptCommand">runScriptCommand</a></code> | <code>string</code> | The command to use to run scripts (e.g. `yarn run` or `npm run` depends on the package manager). |
2214
2225
  | <code><a href="#lerna-projen.LernaTypescriptProject.property.autoMerge">autoMerge</a></code> | <code>projen.github.AutoMerge</code> | Component that sets up mergify for merging approved pull requests. |
2226
+ | <code><a href="#lerna-projen.LernaTypescriptProject.property.biome">biome</a></code> | <code>projen.javascript.Biome</code> | *No description.* |
2215
2227
  | <code><a href="#lerna-projen.LernaTypescriptProject.property.buildWorkflow">buildWorkflow</a></code> | <code>projen.build.BuildWorkflow</code> | The PR build GitHub workflow. |
2216
2228
  | <code><a href="#lerna-projen.LernaTypescriptProject.property.buildWorkflowJobId">buildWorkflowJobId</a></code> | <code>string</code> | The job ID of the build workflow. |
2217
2229
  | <code><a href="#lerna-projen.LernaTypescriptProject.property.jest">jest</a></code> | <code>projen.javascript.Jest</code> | The Jest configuration (if enabled). |
@@ -2752,6 +2764,16 @@ Component that sets up mergify for merging approved pull requests.
2752
2764
 
2753
2765
  ---
2754
2766
 
2767
+ ##### `biome`<sup>Optional</sup> <a name="biome" id="lerna-projen.LernaTypescriptProject.property.biome"></a>
2768
+
2769
+ ```typescript
2770
+ public readonly biome: Biome;
2771
+ ```
2772
+
2773
+ - *Type:* projen.javascript.Biome
2774
+
2775
+ ---
2776
+
2755
2777
  ##### `buildWorkflow`<sup>Optional</sup> <a name="buildWorkflow" id="lerna-projen.LernaTypescriptProject.property.buildWorkflow"></a>
2756
2778
 
2757
2779
  ```typescript
@@ -3440,6 +3462,8 @@ const lernaProjectOptions: LernaProjectOptions = { ... }
3440
3462
  | <code><a href="#lerna-projen.LernaProjectOptions.property.defaultReleaseBranch">defaultReleaseBranch</a></code> | <code>string</code> | The name of the main release branch. |
3441
3463
  | <code><a href="#lerna-projen.LernaProjectOptions.property.artifactsDirectory">artifactsDirectory</a></code> | <code>string</code> | A directory which will contain build artifacts. |
3442
3464
  | <code><a href="#lerna-projen.LernaProjectOptions.property.autoApproveUpgrades">autoApproveUpgrades</a></code> | <code>boolean</code> | Automatically approve deps upgrade PRs, allowing them to be merged by mergify (if configued). |
3465
+ | <code><a href="#lerna-projen.LernaProjectOptions.property.biome">biome</a></code> | <code>boolean</code> | Setup Biome. |
3466
+ | <code><a href="#lerna-projen.LernaProjectOptions.property.biomeOptions">biomeOptions</a></code> | <code>projen.javascript.BiomeOptions</code> | Biome options. |
3443
3467
  | <code><a href="#lerna-projen.LernaProjectOptions.property.buildWorkflow">buildWorkflow</a></code> | <code>boolean</code> | Define a GitHub workflow for building PRs. |
3444
3468
  | <code><a href="#lerna-projen.LernaProjectOptions.property.buildWorkflowOptions">buildWorkflowOptions</a></code> | <code>projen.javascript.BuildWorkflowOptions</code> | Options for PR build workflow. |
3445
3469
  | <code><a href="#lerna-projen.LernaProjectOptions.property.buildWorkflowTriggers">buildWorkflowTriggers</a></code> | <code>projen.github.workflows.Triggers</code> | Build workflow triggers. |
@@ -4897,6 +4921,32 @@ Throw if set to true but `autoApproveOptions` are not defined.
4897
4921
 
4898
4922
  ---
4899
4923
 
4924
+ ##### `biome`<sup>Optional</sup> <a name="biome" id="lerna-projen.LernaProjectOptions.property.biome"></a>
4925
+
4926
+ ```typescript
4927
+ public readonly biome: boolean;
4928
+ ```
4929
+
4930
+ - *Type:* boolean
4931
+ - *Default:* false
4932
+
4933
+ Setup Biome.
4934
+
4935
+ ---
4936
+
4937
+ ##### `biomeOptions`<sup>Optional</sup> <a name="biomeOptions" id="lerna-projen.LernaProjectOptions.property.biomeOptions"></a>
4938
+
4939
+ ```typescript
4940
+ public readonly biomeOptions: BiomeOptions;
4941
+ ```
4942
+
4943
+ - *Type:* projen.javascript.BiomeOptions
4944
+ - *Default:* default options
4945
+
4946
+ Biome options.
4947
+
4948
+ ---
4949
+
4900
4950
  ##### `buildWorkflow`<sup>Optional</sup> <a name="buildWorkflow" id="lerna-projen.LernaProjectOptions.property.buildWorkflow"></a>
4901
4951
 
4902
4952
  ```typescript
@@ -5594,6 +5644,8 @@ const lernaTypescriptProjectOptions: LernaTypescriptProjectOptions = { ... }
5594
5644
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.defaultReleaseBranch">defaultReleaseBranch</a></code> | <code>string</code> | The name of the main release branch. |
5595
5645
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.artifactsDirectory">artifactsDirectory</a></code> | <code>string</code> | A directory which will contain build artifacts. |
5596
5646
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.autoApproveUpgrades">autoApproveUpgrades</a></code> | <code>boolean</code> | Automatically approve deps upgrade PRs, allowing them to be merged by mergify (if configued). |
5647
+ | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.biome">biome</a></code> | <code>boolean</code> | Setup Biome. |
5648
+ | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.biomeOptions">biomeOptions</a></code> | <code>projen.javascript.BiomeOptions</code> | Biome options. |
5597
5649
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.buildWorkflow">buildWorkflow</a></code> | <code>boolean</code> | Define a GitHub workflow for building PRs. |
5598
5650
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.buildWorkflowOptions">buildWorkflowOptions</a></code> | <code>projen.javascript.BuildWorkflowOptions</code> | Options for PR build workflow. |
5599
5651
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.buildWorkflowTriggers">buildWorkflowTriggers</a></code> | <code>projen.github.workflows.Triggers</code> | Build workflow triggers. |
@@ -7067,6 +7119,32 @@ Throw if set to true but `autoApproveOptions` are not defined.
7067
7119
 
7068
7120
  ---
7069
7121
 
7122
+ ##### `biome`<sup>Optional</sup> <a name="biome" id="lerna-projen.LernaTypescriptProjectOptions.property.biome"></a>
7123
+
7124
+ ```typescript
7125
+ public readonly biome: boolean;
7126
+ ```
7127
+
7128
+ - *Type:* boolean
7129
+ - *Default:* false
7130
+
7131
+ Setup Biome.
7132
+
7133
+ ---
7134
+
7135
+ ##### `biomeOptions`<sup>Optional</sup> <a name="biomeOptions" id="lerna-projen.LernaTypescriptProjectOptions.property.biomeOptions"></a>
7136
+
7137
+ ```typescript
7138
+ public readonly biomeOptions: BiomeOptions;
7139
+ ```
7140
+
7141
+ - *Type:* projen.javascript.BiomeOptions
7142
+ - *Default:* default options
7143
+
7144
+ Biome options.
7145
+
7146
+ ---
7147
+
7070
7148
  ##### `buildWorkflow`<sup>Optional</sup> <a name="buildWorkflow" id="lerna-projen.LernaTypescriptProjectOptions.property.buildWorkflow"></a>
7071
7149
 
7072
7150
  ```typescript
package/lib/index.js CHANGED
@@ -97,7 +97,7 @@ class LernaProject extends projen_1.javascript.NodeProject {
97
97
  }
98
98
  exports.LernaProject = LernaProject;
99
99
  _a = JSII_RTTI_SYMBOL_1;
100
- LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.635" };
100
+ LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.637" };
101
101
  /**
102
102
  * @pjid lerna-ts-project
103
103
  */
@@ -132,7 +132,7 @@ class LernaTypescriptProject extends projen_1.typescript.TypeScriptProject {
132
132
  }
133
133
  exports.LernaTypescriptProject = LernaTypescriptProject;
134
134
  _b = JSII_RTTI_SYMBOL_1;
135
- LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.635" };
135
+ LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.637" };
136
136
  class LernaProjectFactory {
137
137
  constructor(project) {
138
138
  this.project = project;
package/package.json CHANGED
@@ -59,14 +59,14 @@
59
59
  "jsii-docgen": "^10.5.0",
60
60
  "jsii-pacmak": "^1.112.0",
61
61
  "jsii-rosetta": "5.8.x",
62
- "projen": "^0.92.10",
62
+ "projen": "^0.93.0",
63
63
  "ts-jest": "^29.4.0",
64
64
  "ts-node": "^10.9.2",
65
65
  "typescript": "^5.8.3"
66
66
  },
67
67
  "peerDependencies": {
68
68
  "constructs": "^10.4.2",
69
- "projen": "^0.92.10"
69
+ "projen": "^0.93.0"
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.635",
93
+ "version": "0.1.637",
94
94
  "jest": {
95
95
  "coverageProvider": "v8",
96
96
  "testMatch": [