lerna-projen 0.1.544 → 0.1.546

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 +4 -4
package/.jsii CHANGED
@@ -15,7 +15,7 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "constructs": "^10.4.2",
18
- "projen": "^0.91.5"
18
+ "projen": "^0.91.6"
19
19
  },
20
20
  "dependencyClosure": {
21
21
  "constructs": {
@@ -1031,6 +1031,6 @@
1031
1031
  "symbolId": "src/utils:AddNxTaskDependencyOptions"
1032
1032
  }
1033
1033
  },
1034
- "version": "0.1.544",
1035
- "fingerprint": "eXRuEqOvxsWyNSVbtCZ4XDysxykcbGkTzWEAXmS1CK0="
1034
+ "version": "0.1.546",
1035
+ "fingerprint": "Bm67EzgryeU2fKYrvZzbi+A93bq4Omi+l8uWUgZ6+d0="
1036
1036
  }
package/API.md CHANGED
@@ -3385,6 +3385,7 @@ const lernaProjectOptions: LernaProjectOptions = { ... }
3385
3385
  | <code><a href="#lerna-projen.LernaProjectOptions.property.bugsEmail">bugsEmail</a></code> | <code>string</code> | The email address to which issues should be reported. |
3386
3386
  | <code><a href="#lerna-projen.LernaProjectOptions.property.bugsUrl">bugsUrl</a></code> | <code>string</code> | The url to your project's issue tracker. |
3387
3387
  | <code><a href="#lerna-projen.LernaProjectOptions.property.bundledDeps">bundledDeps</a></code> | <code>string[]</code> | List of dependencies to bundle into this module. |
3388
+ | <code><a href="#lerna-projen.LernaProjectOptions.property.bunVersion">bunVersion</a></code> | <code>string</code> | The version of Bun to use if using Bun as a package manager. |
3388
3389
  | <code><a href="#lerna-projen.LernaProjectOptions.property.codeArtifactOptions">codeArtifactOptions</a></code> | <code>projen.javascript.CodeArtifactOptions</code> | Options for npm packages using AWS CodeArtifact. |
3389
3390
  | <code><a href="#lerna-projen.LernaProjectOptions.property.deps">deps</a></code> | <code>string[]</code> | Runtime dependencies of this module. |
3390
3391
  | <code><a href="#lerna-projen.LernaProjectOptions.property.description">description</a></code> | <code>string</code> | The description is just a string that helps people understand the purpose of the package. |
@@ -4040,6 +4041,19 @@ this will be what you `package.json` will eventually include.
4040
4041
 
4041
4042
  ---
4042
4043
 
4044
+ ##### `bunVersion`<sup>Optional</sup> <a name="bunVersion" id="lerna-projen.LernaProjectOptions.property.bunVersion"></a>
4045
+
4046
+ ```typescript
4047
+ public readonly bunVersion: string;
4048
+ ```
4049
+
4050
+ - *Type:* string
4051
+ - *Default:* "latest"
4052
+
4053
+ The version of Bun to use if using Bun as a package manager.
4054
+
4055
+ ---
4056
+
4043
4057
  ##### `codeArtifactOptions`<sup>Optional</sup> <a name="codeArtifactOptions" id="lerna-projen.LernaProjectOptions.property.codeArtifactOptions"></a>
4044
4058
 
4045
4059
  ```typescript
@@ -5524,6 +5538,7 @@ const lernaTypescriptProjectOptions: LernaTypescriptProjectOptions = { ... }
5524
5538
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.bugsEmail">bugsEmail</a></code> | <code>string</code> | The email address to which issues should be reported. |
5525
5539
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.bugsUrl">bugsUrl</a></code> | <code>string</code> | The url to your project's issue tracker. |
5526
5540
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.bundledDeps">bundledDeps</a></code> | <code>string[]</code> | List of dependencies to bundle into this module. |
5541
+ | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.bunVersion">bunVersion</a></code> | <code>string</code> | The version of Bun to use if using Bun as a package manager. |
5527
5542
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.codeArtifactOptions">codeArtifactOptions</a></code> | <code>projen.javascript.CodeArtifactOptions</code> | Options for npm packages using AWS CodeArtifact. |
5528
5543
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.deps">deps</a></code> | <code>string[]</code> | Runtime dependencies of this module. |
5529
5544
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.description">description</a></code> | <code>string</code> | The description is just a string that helps people understand the purpose of the package. |
@@ -6195,6 +6210,19 @@ this will be what you `package.json` will eventually include.
6195
6210
 
6196
6211
  ---
6197
6212
 
6213
+ ##### `bunVersion`<sup>Optional</sup> <a name="bunVersion" id="lerna-projen.LernaTypescriptProjectOptions.property.bunVersion"></a>
6214
+
6215
+ ```typescript
6216
+ public readonly bunVersion: string;
6217
+ ```
6218
+
6219
+ - *Type:* string
6220
+ - *Default:* "latest"
6221
+
6222
+ The version of Bun to use if using Bun as a package manager.
6223
+
6224
+ ---
6225
+
6198
6226
  ##### `codeArtifactOptions`<sup>Optional</sup> <a name="codeArtifactOptions" id="lerna-projen.LernaTypescriptProjectOptions.property.codeArtifactOptions"></a>
6199
6227
 
6200
6228
  ```typescript
package/lib/index.js CHANGED
@@ -93,7 +93,7 @@ class LernaProject extends projen_1.javascript.NodeProject {
93
93
  }
94
94
  exports.LernaProject = LernaProject;
95
95
  _a = JSII_RTTI_SYMBOL_1;
96
- LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.544" };
96
+ LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.546" };
97
97
  /**
98
98
  * @pjid lerna-ts-project
99
99
  */
@@ -127,7 +127,7 @@ class LernaTypescriptProject extends projen_1.typescript.TypeScriptProject {
127
127
  }
128
128
  exports.LernaTypescriptProject = LernaTypescriptProject;
129
129
  _b = JSII_RTTI_SYMBOL_1;
130
- LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.544" };
130
+ LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.546" };
131
131
  class LernaProjectFactory {
132
132
  constructor(project) {
133
133
  this.project = project;
package/package.json CHANGED
@@ -53,20 +53,20 @@
53
53
  "eslint-import-resolver-typescript": "^3.7.0",
54
54
  "eslint-plugin-import": "^2.31.0",
55
55
  "jest": "^29.7.0",
56
- "jest-junit": "^15",
56
+ "jest-junit": "^16",
57
57
  "jsii": "5.4.x",
58
58
  "jsii-diff": "^1.106.0",
59
59
  "jsii-docgen": "^10.5.0",
60
60
  "jsii-pacmak": "^1.106.0",
61
61
  "jsii-rosetta": "5.4.x",
62
- "projen": "^0.91.5",
62
+ "projen": "^0.91.6",
63
63
  "ts-jest": "^29.2.5",
64
64
  "ts-node": "^10.9.2",
65
65
  "typescript": "^5.7.3"
66
66
  },
67
67
  "peerDependencies": {
68
68
  "constructs": "^10.4.2",
69
- "projen": "^0.91.5"
69
+ "projen": "^0.91.6"
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.544",
93
+ "version": "0.1.546",
94
94
  "jest": {
95
95
  "coverageProvider": "v8",
96
96
  "testMatch": [