lerna-projen 0.1.883 → 0.1.885
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.
- package/.jsii +3 -3
- package/API.md +30 -8
- package/lib/index.js +2 -2
- 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.
|
|
18
|
+
"projen": "^0.103.1"
|
|
19
19
|
},
|
|
20
20
|
"dependencyClosure": {
|
|
21
21
|
"constructs": {
|
|
@@ -1127,6 +1127,6 @@
|
|
|
1127
1127
|
"symbolId": "src/utils:AddNxTaskDependencyOptions"
|
|
1128
1128
|
}
|
|
1129
1129
|
},
|
|
1130
|
-
"version": "0.1.
|
|
1131
|
-
"fingerprint": "
|
|
1130
|
+
"version": "0.1.885",
|
|
1131
|
+
"fingerprint": "sePefosKQDd+uZUz85vqUwu+F1H08SU5hv+LqT/W2nU="
|
|
1132
1132
|
}
|
package/API.md
CHANGED
|
@@ -3273,7 +3273,7 @@ const lernaProjectOptions: LernaProjectOptions = { ... }
|
|
|
3273
3273
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.buildWorkflowOptions">buildWorkflowOptions</a></code> | <code>projen.javascript.BuildWorkflowOptions</code> | Options for PR build workflow. |
|
|
3274
3274
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.bundlerOptions">bundlerOptions</a></code> | <code>projen.javascript.BundlerOptions</code> | Options for `Bundler`. |
|
|
3275
3275
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.checkLicenses">checkLicenses</a></code> | <code>projen.javascript.LicenseCheckerOptions</code> | Configure which licenses should be deemed acceptable for use by dependencies. |
|
|
3276
|
-
| <code><a href="#lerna-projen.LernaProjectOptions.property.codeCov">codeCov</a></code> | <code>boolean</code> | Define a GitHub workflow step for sending code coverage metrics to https://codecov.io
|
|
3276
|
+
| <code><a href="#lerna-projen.LernaProjectOptions.property.codeCov">codeCov</a></code> | <code>boolean</code> | Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/. |
|
|
3277
3277
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.codeCovTokenSecret">codeCovTokenSecret</a></code> | <code>string</code> | Define the secret name for a specified https://codecov.io/ token. |
|
|
3278
3278
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.copyrightOwner">copyrightOwner</a></code> | <code>string</code> | License copyright owner. |
|
|
3279
3279
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.copyrightPeriod">copyrightPeriod</a></code> | <code>string</code> | The copyright years to put in the LICENSE file. |
|
|
@@ -3432,6 +3432,10 @@ public readonly projenCommand: string;
|
|
|
3432
3432
|
|
|
3433
3433
|
The shell command to use in order to run the projen CLI.
|
|
3434
3434
|
|
|
3435
|
+
Inserted verbatim into task steps, workflows and IDE configuration, and run
|
|
3436
|
+
by each of their shells - locally, in CI and in dev containers. Keep it a
|
|
3437
|
+
plain unquoted command, since shell syntax in it executes in all of them.
|
|
3438
|
+
|
|
3435
3439
|
Can be used to customize in special environments.
|
|
3436
3440
|
|
|
3437
3441
|
---
|
|
@@ -4716,7 +4720,9 @@ Container image to use for GitHub workflows.
|
|
|
4716
4720
|
|
|
4717
4721
|
---
|
|
4718
4722
|
|
|
4719
|
-
#####
|
|
4723
|
+
##### ~~`workflowRunsOn`~~<sup>Optional</sup> <a name="workflowRunsOn" id="lerna-projen.LernaProjectOptions.property.workflowRunsOn"></a>
|
|
4724
|
+
|
|
4725
|
+
- *Deprecated:* use `githubOptions.workflowRunsOn` on the project, or `runsOn` on `ReleaseOptions`
|
|
4720
4726
|
|
|
4721
4727
|
```typescript
|
|
4722
4728
|
public readonly workflowRunsOn: string[];
|
|
@@ -4729,7 +4735,9 @@ Github Runner selection labels.
|
|
|
4729
4735
|
|
|
4730
4736
|
---
|
|
4731
4737
|
|
|
4732
|
-
#####
|
|
4738
|
+
##### ~~`workflowRunsOnGroup`~~<sup>Optional</sup> <a name="workflowRunsOnGroup" id="lerna-projen.LernaProjectOptions.property.workflowRunsOnGroup"></a>
|
|
4739
|
+
|
|
4740
|
+
- *Deprecated:* use `githubOptions.workflowRunsOnGroup` on the project, or `runsOnGroup` on `ReleaseOptions`
|
|
4733
4741
|
|
|
4734
4742
|
```typescript
|
|
4735
4743
|
public readonly workflowRunsOnGroup: GroupRunnerOptions;
|
|
@@ -4886,7 +4894,10 @@ public readonly codeCov: boolean;
|
|
|
4886
4894
|
- *Type:* boolean
|
|
4887
4895
|
- *Default:* false
|
|
4888
4896
|
|
|
4889
|
-
Define a GitHub workflow step for sending code coverage metrics to https://codecov.io
|
|
4897
|
+
Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/.
|
|
4898
|
+
|
|
4899
|
+
Uses codecov/codecov-action. By default, OIDC auth is used.
|
|
4900
|
+
Alternatively a token can be provided via `codeCovTokenSecret`.
|
|
4890
4901
|
|
|
4891
4902
|
---
|
|
4892
4903
|
|
|
@@ -5503,7 +5514,7 @@ const lernaTypescriptProjectOptions: LernaTypescriptProjectOptions = { ... }
|
|
|
5503
5514
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.buildWorkflowOptions">buildWorkflowOptions</a></code> | <code>projen.javascript.BuildWorkflowOptions</code> | Options for PR build workflow. |
|
|
5504
5515
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.bundlerOptions">bundlerOptions</a></code> | <code>projen.javascript.BundlerOptions</code> | Options for `Bundler`. |
|
|
5505
5516
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.checkLicenses">checkLicenses</a></code> | <code>projen.javascript.LicenseCheckerOptions</code> | Configure which licenses should be deemed acceptable for use by dependencies. |
|
|
5506
|
-
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.codeCov">codeCov</a></code> | <code>boolean</code> | Define a GitHub workflow step for sending code coverage metrics to https://codecov.io
|
|
5517
|
+
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.codeCov">codeCov</a></code> | <code>boolean</code> | Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/. |
|
|
5507
5518
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.codeCovTokenSecret">codeCovTokenSecret</a></code> | <code>string</code> | Define the secret name for a specified https://codecov.io/ token. |
|
|
5508
5519
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.copyrightOwner">copyrightOwner</a></code> | <code>string</code> | License copyright owner. |
|
|
5509
5520
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.copyrightPeriod">copyrightPeriod</a></code> | <code>string</code> | The copyright years to put in the LICENSE file. |
|
|
@@ -5679,6 +5690,10 @@ public readonly projenCommand: string;
|
|
|
5679
5690
|
|
|
5680
5691
|
The shell command to use in order to run the projen CLI.
|
|
5681
5692
|
|
|
5693
|
+
Inserted verbatim into task steps, workflows and IDE configuration, and run
|
|
5694
|
+
by each of their shells - locally, in CI and in dev containers. Keep it a
|
|
5695
|
+
plain unquoted command, since shell syntax in it executes in all of them.
|
|
5696
|
+
|
|
5682
5697
|
Can be used to customize in special environments.
|
|
5683
5698
|
|
|
5684
5699
|
---
|
|
@@ -6963,7 +6978,9 @@ Container image to use for GitHub workflows.
|
|
|
6963
6978
|
|
|
6964
6979
|
---
|
|
6965
6980
|
|
|
6966
|
-
#####
|
|
6981
|
+
##### ~~`workflowRunsOn`~~<sup>Optional</sup> <a name="workflowRunsOn" id="lerna-projen.LernaTypescriptProjectOptions.property.workflowRunsOn"></a>
|
|
6982
|
+
|
|
6983
|
+
- *Deprecated:* use `githubOptions.workflowRunsOn` on the project, or `runsOn` on `ReleaseOptions`
|
|
6967
6984
|
|
|
6968
6985
|
```typescript
|
|
6969
6986
|
public readonly workflowRunsOn: string[];
|
|
@@ -6976,7 +6993,9 @@ Github Runner selection labels.
|
|
|
6976
6993
|
|
|
6977
6994
|
---
|
|
6978
6995
|
|
|
6979
|
-
#####
|
|
6996
|
+
##### ~~`workflowRunsOnGroup`~~<sup>Optional</sup> <a name="workflowRunsOnGroup" id="lerna-projen.LernaTypescriptProjectOptions.property.workflowRunsOnGroup"></a>
|
|
6997
|
+
|
|
6998
|
+
- *Deprecated:* use `githubOptions.workflowRunsOnGroup` on the project, or `runsOnGroup` on `ReleaseOptions`
|
|
6980
6999
|
|
|
6981
7000
|
```typescript
|
|
6982
7001
|
public readonly workflowRunsOnGroup: GroupRunnerOptions;
|
|
@@ -7133,7 +7152,10 @@ public readonly codeCov: boolean;
|
|
|
7133
7152
|
- *Type:* boolean
|
|
7134
7153
|
- *Default:* false
|
|
7135
7154
|
|
|
7136
|
-
Define a GitHub workflow step for sending code coverage metrics to https://codecov.io
|
|
7155
|
+
Define a GitHub workflow step for sending code coverage metrics to https://codecov.io/.
|
|
7156
|
+
|
|
7157
|
+
Uses codecov/codecov-action. By default, OIDC auth is used.
|
|
7158
|
+
Alternatively a token can be provided via `codeCovTokenSecret`.
|
|
7137
7159
|
|
|
7138
7160
|
---
|
|
7139
7161
|
|
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.
|
|
98
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaProject", version: "0.1.885" };
|
|
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.
|
|
152
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.885" };
|
|
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.139.0",
|
|
35
35
|
"jsii-rosetta": "5.9.x",
|
|
36
|
-
"projen": "^0.
|
|
36
|
+
"projen": "^0.103.1",
|
|
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.
|
|
43
|
+
"projen": "^0.103.1"
|
|
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.
|
|
75
|
+
"version": "0.1.885",
|
|
76
76
|
"jest": {
|
|
77
77
|
"coverageProvider": "v8",
|
|
78
78
|
"testMatch": [
|