lerna-projen 0.1.893 → 0.1.894

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 +36 -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.8.1",
18
- "projen": "^0.103.15"
18
+ "projen": "^0.103.18"
19
19
  },
20
20
  "dependencyClosure": {
21
21
  "constructs": {
@@ -1129,6 +1129,6 @@
1129
1129
  "symbolId": "src/utils:AddNxTaskDependencyOptions"
1130
1130
  }
1131
1131
  },
1132
- "version": "0.1.893",
1133
- "fingerprint": "D4iSBSPM7R63O64G7iUTHXhEU9rztFeWGTOVpEgHaVA="
1132
+ "version": "0.1.894",
1133
+ "fingerprint": "OKk/UStDikQsDO3V9xIxGofAjth1yjSKssXDLUmz/Qc="
1134
1134
  }
package/API.md CHANGED
@@ -3210,6 +3210,7 @@ const lernaProjectOptions: LernaProjectOptions = { ... }
3210
3210
  | <code><a href="#lerna-projen.LernaProjectOptions.property.bundledDeps">bundledDeps</a></code> | <code>string[]</code> | List of dependencies to bundle into this module. |
3211
3211
  | <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. |
3212
3212
  | <code><a href="#lerna-projen.LernaProjectOptions.property.codeArtifactOptions">codeArtifactOptions</a></code> | <code>projen.javascript.CodeArtifactOptions</code> | Options for npm packages using AWS CodeArtifact. |
3213
+ | <code><a href="#lerna-projen.LernaProjectOptions.property.config">config</a></code> | <code>{[ key: string ]: any}</code> | Configuration values available to package scripts at runtime. |
3213
3214
  | <code><a href="#lerna-projen.LernaProjectOptions.property.dedupeDeps">dedupeDeps</a></code> | <code>boolean</code> | Add a `dedupe` task that deduplicates project dependencies. |
3214
3215
  | <code><a href="#lerna-projen.LernaProjectOptions.property.deleteOrphanedLockFiles">deleteOrphanedLockFiles</a></code> | <code>boolean</code> | Automatically delete lockfiles from package managers that are not the active one. |
3215
3216
  | <code><a href="#lerna-projen.LernaProjectOptions.property.deps">deps</a></code> | <code>string[]</code> | Runtime dependencies of this module. |
@@ -3902,6 +3903,23 @@ This is required if publishing packages to, or installing scoped packages from A
3902
3903
 
3903
3904
  ---
3904
3905
 
3906
+ ##### `config`<sup>Optional</sup> <a name="config" id="lerna-projen.LernaProjectOptions.property.config"></a>
3907
+
3908
+ ```typescript
3909
+ public readonly config: {[ key: string ]: any};
3910
+ ```
3911
+
3912
+ - *Type:* {[ key: string ]: any}
3913
+ - *Default:* no package configuration
3914
+
3915
+ Configuration values available to package scripts at runtime.
3916
+
3917
+ Values should be JSON-serializable.
3918
+
3919
+ > [https://docs.npmjs.com/cli/v11/configuring-npm/package-json#config](https://docs.npmjs.com/cli/v11/configuring-npm/package-json#config)
3920
+
3921
+ ---
3922
+
3905
3923
  ##### `dedupeDeps`<sup>Optional</sup> <a name="dedupeDeps" id="lerna-projen.LernaProjectOptions.property.dedupeDeps"></a>
3906
3924
 
3907
3925
  ```typescript
@@ -5468,6 +5486,7 @@ const lernaTypescriptProjectOptions: LernaTypescriptProjectOptions = { ... }
5468
5486
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.bundledDeps">bundledDeps</a></code> | <code>string[]</code> | List of dependencies to bundle into this module. |
5469
5487
  | <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. |
5470
5488
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.codeArtifactOptions">codeArtifactOptions</a></code> | <code>projen.javascript.CodeArtifactOptions</code> | Options for npm packages using AWS CodeArtifact. |
5489
+ | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.config">config</a></code> | <code>{[ key: string ]: any}</code> | Configuration values available to package scripts at runtime. |
5471
5490
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.dedupeDeps">dedupeDeps</a></code> | <code>boolean</code> | Add a `dedupe` task that deduplicates project dependencies. |
5472
5491
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.deleteOrphanedLockFiles">deleteOrphanedLockFiles</a></code> | <code>boolean</code> | Automatically delete lockfiles from package managers that are not the active one. |
5473
5492
  | <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.deps">deps</a></code> | <code>string[]</code> | Runtime dependencies of this module. |
@@ -6178,6 +6197,23 @@ This is required if publishing packages to, or installing scoped packages from A
6178
6197
 
6179
6198
  ---
6180
6199
 
6200
+ ##### `config`<sup>Optional</sup> <a name="config" id="lerna-projen.LernaTypescriptProjectOptions.property.config"></a>
6201
+
6202
+ ```typescript
6203
+ public readonly config: {[ key: string ]: any};
6204
+ ```
6205
+
6206
+ - *Type:* {[ key: string ]: any}
6207
+ - *Default:* no package configuration
6208
+
6209
+ Configuration values available to package scripts at runtime.
6210
+
6211
+ Values should be JSON-serializable.
6212
+
6213
+ > [https://docs.npmjs.com/cli/v11/configuring-npm/package-json#config](https://docs.npmjs.com/cli/v11/configuring-npm/package-json#config)
6214
+
6215
+ ---
6216
+
6181
6217
  ##### `dedupeDeps`<sup>Optional</sup> <a name="dedupeDeps" id="lerna-projen.LernaTypescriptProjectOptions.property.dedupeDeps"></a>
6182
6218
 
6183
6219
  ```typescript
package/lib/index.js CHANGED
@@ -95,7 +95,7 @@ const lockedTaskNames = ['build', 'upgrade', 'upgrade-projen', 'clobber', 'post-
95
95
  * @pjid lerna-project
96
96
  */
97
97
  class LernaProject extends projen_1.javascript.NodeProject {
98
- static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaProject", version: "0.1.893" };
98
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaProject", version: "0.1.894" };
99
99
  projenrcTs;
100
100
  docsDirectory;
101
101
  docgen;
@@ -149,7 +149,7 @@ exports.LernaProject = LernaProject;
149
149
  * @pjid lerna-ts-project
150
150
  */
151
151
  class LernaTypescriptProject extends projen_1.typescript.TypeScriptProject {
152
- static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.893" };
152
+ static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.894" };
153
153
  sinceLastRelease;
154
154
  useNx;
155
155
  independentMode;
package/package.json CHANGED
@@ -33,14 +33,14 @@
33
33
  "jsii-docgen": "^10.5.0",
34
34
  "jsii-pacmak": "^1.140.0",
35
35
  "jsii-rosetta": "5.9.x",
36
- "projen": "^0.103.15",
36
+ "projen": "^0.103.18",
37
37
  "ts-jest": "^29.4.12",
38
38
  "ts-node": "^10.9.2",
39
39
  "typescript": "^5.9.3"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "constructs": "^10.8.1",
43
- "projen": "^0.103.15"
43
+ "projen": "^0.103.18"
44
44
  },
45
45
  "dependencies": {
46
46
  "commander": "^11.1.0",
@@ -72,7 +72,7 @@
72
72
  "publishConfig": {
73
73
  "access": "public"
74
74
  },
75
- "version": "0.1.893",
75
+ "version": "0.1.894",
76
76
  "jest": {
77
77
  "coverageProvider": "v8",
78
78
  "testMatch": [