lerna-projen 0.1.708 → 0.1.710

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 -4
  2. package/API.md +64 -0
  3. package/lib/index.js +2 -2
  4. 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.4.2",
18
- "projen": "^0.98.6"
17
+ "constructs": "^10.4.3",
18
+ "projen": "^0.98.8"
19
19
  },
20
20
  "dependencyClosure": {
21
21
  "constructs": {
@@ -1124,6 +1124,6 @@
1124
1124
  "symbolId": "src/utils:AddNxTaskDependencyOptions"
1125
1125
  }
1126
1126
  },
1127
- "version": "0.1.708",
1128
- "fingerprint": "dLUjZH0wpIwFjw3RGP/XPYKLEa5dBgKN3i4cWV8+wck="
1127
+ "version": "0.1.710",
1128
+ "fingerprint": "ifZ2qjkAsLLZ8svJ/1+KNwNdiUrkNt87KpMR6FLxKWQ="
1129
1129
  }
package/API.md CHANGED
@@ -3529,6 +3529,8 @@ const lernaProjectOptions: LernaProjectOptions = { ... }
3529
3529
  | <code><a href="#lerna-projen.LernaProjectOptions.property.workflowRunsOnGroup">workflowRunsOnGroup</a></code> | <code>projen.GroupRunnerOptions</code> | Github Runner Group selection options. |
3530
3530
  | <code><a href="#lerna-projen.LernaProjectOptions.property.defaultReleaseBranch">defaultReleaseBranch</a></code> | <code>string</code> | The name of the main release branch. |
3531
3531
  | <code><a href="#lerna-projen.LernaProjectOptions.property.artifactsDirectory">artifactsDirectory</a></code> | <code>string</code> | A directory which will contain build artifacts. |
3532
+ | <code><a href="#lerna-projen.LernaProjectOptions.property.auditDeps">auditDeps</a></code> | <code>boolean</code> | Run security audit on dependencies. |
3533
+ | <code><a href="#lerna-projen.LernaProjectOptions.property.auditDepsOptions">auditDepsOptions</a></code> | <code>projen.javascript.AuditOptions</code> | Security audit options. |
3532
3534
  | <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). |
3533
3535
  | <code><a href="#lerna-projen.LernaProjectOptions.property.biome">biome</a></code> | <code>boolean</code> | Setup Biome. |
3534
3536
  | <code><a href="#lerna-projen.LernaProjectOptions.property.biomeOptions">biomeOptions</a></code> | <code>projen.javascript.BiomeOptions</code> | Biome options. |
@@ -5020,6 +5022,36 @@ A directory which will contain build artifacts.
5020
5022
 
5021
5023
  ---
5022
5024
 
5025
+ ##### `auditDeps`<sup>Optional</sup> <a name="auditDeps" id="lerna-projen.LernaProjectOptions.property.auditDeps"></a>
5026
+
5027
+ ```typescript
5028
+ public readonly auditDeps: boolean;
5029
+ ```
5030
+
5031
+ - *Type:* boolean
5032
+ - *Default:* false
5033
+
5034
+ Run security audit on dependencies.
5035
+
5036
+ When enabled, creates an "audit" task that checks for known security vulnerabilities
5037
+ in dependencies. By default, runs during every build and checks for "high" severity
5038
+ vulnerabilities or above in all dependencies (including dev dependencies).
5039
+
5040
+ ---
5041
+
5042
+ ##### `auditDepsOptions`<sup>Optional</sup> <a name="auditDepsOptions" id="lerna-projen.LernaProjectOptions.property.auditDepsOptions"></a>
5043
+
5044
+ ```typescript
5045
+ public readonly auditDepsOptions: AuditOptions;
5046
+ ```
5047
+
5048
+ - *Type:* projen.javascript.AuditOptions
5049
+ - *Default:* default options
5050
+
5051
+ Security audit options.
5052
+
5053
+ ---
5054
+
5023
5055
  ##### `autoApproveUpgrades`<sup>Optional</sup> <a name="autoApproveUpgrades" id="lerna-projen.LernaProjectOptions.property.autoApproveUpgrades"></a>
5024
5056
 
5025
5057
  ```typescript
@@ -5776,6 +5808,8 @@ const lernaTypescriptProjectOptions: LernaTypescriptProjectOptions = { ... }
5776
5808
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.workflowRunsOnGroup">workflowRunsOnGroup</a></code> | <code>projen.GroupRunnerOptions</code> | Github Runner Group selection options. |
5777
5809
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.defaultReleaseBranch">defaultReleaseBranch</a></code> | <code>string</code> | The name of the main release branch. |
5778
5810
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.artifactsDirectory">artifactsDirectory</a></code> | <code>string</code> | A directory which will contain build artifacts. |
5811
+ | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.auditDeps">auditDeps</a></code> | <code>boolean</code> | Run security audit on dependencies. |
5812
+ | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.auditDepsOptions">auditDepsOptions</a></code> | <code>projen.javascript.AuditOptions</code> | Security audit options. |
5779
5813
  | <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). |
5780
5814
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.biome">biome</a></code> | <code>boolean</code> | Setup Biome. |
5781
5815
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.biomeOptions">biomeOptions</a></code> | <code>projen.javascript.BiomeOptions</code> | Biome options. |
@@ -7283,6 +7317,36 @@ A directory which will contain build artifacts.
7283
7317
 
7284
7318
  ---
7285
7319
 
7320
+ ##### `auditDeps`<sup>Optional</sup> <a name="auditDeps" id="lerna-projen.LernaTypescriptProjectOptions.property.auditDeps"></a>
7321
+
7322
+ ```typescript
7323
+ public readonly auditDeps: boolean;
7324
+ ```
7325
+
7326
+ - *Type:* boolean
7327
+ - *Default:* false
7328
+
7329
+ Run security audit on dependencies.
7330
+
7331
+ When enabled, creates an "audit" task that checks for known security vulnerabilities
7332
+ in dependencies. By default, runs during every build and checks for "high" severity
7333
+ vulnerabilities or above in all dependencies (including dev dependencies).
7334
+
7335
+ ---
7336
+
7337
+ ##### `auditDepsOptions`<sup>Optional</sup> <a name="auditDepsOptions" id="lerna-projen.LernaTypescriptProjectOptions.property.auditDepsOptions"></a>
7338
+
7339
+ ```typescript
7340
+ public readonly auditDepsOptions: AuditOptions;
7341
+ ```
7342
+
7343
+ - *Type:* projen.javascript.AuditOptions
7344
+ - *Default:* default options
7345
+
7346
+ Security audit options.
7347
+
7348
+ ---
7349
+
7286
7350
  ##### `autoApproveUpgrades`<sup>Optional</sup> <a name="autoApproveUpgrades" id="lerna-projen.LernaTypescriptProjectOptions.property.autoApproveUpgrades"></a>
7287
7351
 
7288
7352
  ```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.708" };
101
+ LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.710" };
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.708" };
137
+ LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.710" };
138
138
  class LernaProjectFactory {
139
139
  constructor(project) {
140
140
  this.project = project;
package/package.json CHANGED
@@ -48,7 +48,7 @@
48
48
  "@typescript-eslint/eslint-plugin": "^8",
49
49
  "@typescript-eslint/parser": "^8",
50
50
  "commit-and-tag-version": "^12",
51
- "constructs": "^10.4.2",
51
+ "constructs": "^10.4.3",
52
52
  "eslint": "^9",
53
53
  "eslint-import-resolver-typescript": "^3.10.1",
54
54
  "eslint-plugin-import": "^2.32.0",
@@ -59,14 +59,14 @@
59
59
  "jsii-docgen": "^10.5.0",
60
60
  "jsii-pacmak": "^1.118.0",
61
61
  "jsii-rosetta": "5.9.x",
62
- "projen": "^0.98.6",
62
+ "projen": "^0.98.8",
63
63
  "ts-jest": "^29.4.5",
64
64
  "ts-node": "^10.9.2",
65
65
  "typescript": "^5.9.3"
66
66
  },
67
67
  "peerDependencies": {
68
- "constructs": "^10.4.2",
69
- "projen": "^0.98.6"
68
+ "constructs": "^10.4.3",
69
+ "projen": "^0.98.8"
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.708",
93
+ "version": "0.1.710",
94
94
  "jest": {
95
95
  "coverageProvider": "v8",
96
96
  "testMatch": [