lerna-projen 0.1.851 → 0.1.852
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 -0
- 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.6.0",
|
|
18
|
-
"projen": "^0.101.
|
|
18
|
+
"projen": "^0.101.4"
|
|
19
19
|
},
|
|
20
20
|
"dependencyClosure": {
|
|
21
21
|
"constructs": {
|
|
@@ -1125,6 +1125,6 @@
|
|
|
1125
1125
|
"symbolId": "src/utils:AddNxTaskDependencyOptions"
|
|
1126
1126
|
}
|
|
1127
1127
|
},
|
|
1128
|
-
"version": "0.1.
|
|
1129
|
-
"fingerprint": "
|
|
1128
|
+
"version": "0.1.852",
|
|
1129
|
+
"fingerprint": "D3nTWbuX2Ue1wD0zwRe5FFVYPR2OE0RdDAvI+/kddwk="
|
|
1130
1130
|
}
|
package/API.md
CHANGED
|
@@ -2040,6 +2040,7 @@ When given a project, this it the project itself.
|
|
|
2040
2040
|
| <code><a href="#lerna-projen.LernaTypescriptProject.property.upgradeWorkflow">upgradeWorkflow</a></code> | <code>projen.javascript.UpgradeDependencies</code> | The upgrade workflow. |
|
|
2041
2041
|
| <code><a href="#lerna-projen.LernaTypescriptProject.property.docsDirectory">docsDirectory</a></code> | <code>string</code> | *No description.* |
|
|
2042
2042
|
| <code><a href="#lerna-projen.LernaTypescriptProject.property.libdir">libdir</a></code> | <code>string</code> | The directory in which compiled .js files reside. |
|
|
2043
|
+
| <code><a href="#lerna-projen.LernaTypescriptProject.property.runner">runner</a></code> | <code>projen.typescript.TypeScriptRunner</code> | The TypeScript runner used for executing TypeScript files. |
|
|
2043
2044
|
| <code><a href="#lerna-projen.LernaTypescriptProject.property.srcdir">srcdir</a></code> | <code>string</code> | The directory in which the .ts sources reside. |
|
|
2044
2045
|
| <code><a href="#lerna-projen.LernaTypescriptProject.property.testdir">testdir</a></code> | <code>string</code> | The directory in which tests reside. |
|
|
2045
2046
|
| <code><a href="#lerna-projen.LernaTypescriptProject.property.tsconfigDev">tsconfigDev</a></code> | <code>projen.javascript.TypescriptConfig</code> | A typescript configuration file which covers all files (sources, tests, projen). |
|
|
@@ -2653,6 +2654,18 @@ The directory in which compiled .js files reside.
|
|
|
2653
2654
|
|
|
2654
2655
|
---
|
|
2655
2656
|
|
|
2657
|
+
##### `runner`<sup>Required</sup> <a name="runner" id="lerna-projen.LernaTypescriptProject.property.runner"></a>
|
|
2658
|
+
|
|
2659
|
+
```typescript
|
|
2660
|
+
public readonly runner: TypeScriptRunner;
|
|
2661
|
+
```
|
|
2662
|
+
|
|
2663
|
+
- *Type:* projen.typescript.TypeScriptRunner
|
|
2664
|
+
|
|
2665
|
+
The TypeScript runner used for executing TypeScript files.
|
|
2666
|
+
|
|
2667
|
+
---
|
|
2668
|
+
|
|
2656
2669
|
##### `srcdir`<sup>Required</sup> <a name="srcdir" id="lerna-projen.LernaTypescriptProject.property.srcdir"></a>
|
|
2657
2670
|
|
|
2658
2671
|
```typescript
|
|
@@ -5428,6 +5441,7 @@ const lernaTypescriptProjectOptions: LernaTypescriptProjectOptions = { ... }
|
|
|
5428
5441
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.libdir">libdir</a></code> | <code>string</code> | Typescript artifacts output directory. |
|
|
5429
5442
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.projenrcTs">projenrcTs</a></code> | <code>boolean</code> | Use TypeScript for your projenrc file (`.projenrc.ts`). |
|
|
5430
5443
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.projenrcTsOptions">projenrcTsOptions</a></code> | <code>projen.typescript.ProjenrcOptions</code> | Options for .projenrc.ts. |
|
|
5444
|
+
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.runner">runner</a></code> | <code>projen.typescript.TypeScriptRunner</code> | The TypeScript runner to use for executing TypeScript files. |
|
|
5431
5445
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.sampleCode">sampleCode</a></code> | <code>boolean</code> | Generate one-time sample in `src/` and `test/` if there are no files there. |
|
|
5432
5446
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.srcdir">srcdir</a></code> | <code>string</code> | Typescript sources directory. |
|
|
5433
5447
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.testdir">testdir</a></code> | <code>string</code> | Jest tests directory. Tests files should be named `xxx.test.ts`. |
|
|
@@ -7440,6 +7454,22 @@ Options for .projenrc.ts.
|
|
|
7440
7454
|
|
|
7441
7455
|
---
|
|
7442
7456
|
|
|
7457
|
+
##### `runner`<sup>Optional</sup> <a name="runner" id="lerna-projen.LernaTypescriptProjectOptions.property.runner"></a>
|
|
7458
|
+
|
|
7459
|
+
```typescript
|
|
7460
|
+
public readonly runner: TypeScriptRunner;
|
|
7461
|
+
```
|
|
7462
|
+
|
|
7463
|
+
- *Type:* projen.typescript.TypeScriptRunner
|
|
7464
|
+
- *Default:* TypeScriptRunner.tsNode()
|
|
7465
|
+
|
|
7466
|
+
The TypeScript runner to use for executing TypeScript files.
|
|
7467
|
+
|
|
7468
|
+
This is a project-level setting that components (e.g. projenrc) will
|
|
7469
|
+
use as their default runner.
|
|
7470
|
+
|
|
7471
|
+
---
|
|
7472
|
+
|
|
7443
7473
|
##### `sampleCode`<sup>Optional</sup> <a name="sampleCode" id="lerna-projen.LernaTypescriptProjectOptions.property.sampleCode"></a>
|
|
7444
7474
|
|
|
7445
7475
|
```typescript
|
package/lib/index.js
CHANGED
|
@@ -75,7 +75,7 @@ const lockedTaskNames = ['build', 'upgrade', 'upgrade-projen', 'clobber', 'post-
|
|
|
75
75
|
* @pjid lerna-project
|
|
76
76
|
*/
|
|
77
77
|
class LernaProject extends projen_1.javascript.NodeProject {
|
|
78
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaProject", version: "0.1.
|
|
78
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaProject", version: "0.1.852" };
|
|
79
79
|
projenrcTs;
|
|
80
80
|
docsDirectory;
|
|
81
81
|
docgen;
|
|
@@ -129,7 +129,7 @@ exports.LernaProject = LernaProject;
|
|
|
129
129
|
* @pjid lerna-ts-project
|
|
130
130
|
*/
|
|
131
131
|
class LernaTypescriptProject extends projen_1.typescript.TypeScriptProject {
|
|
132
|
-
static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.
|
|
132
|
+
static [JSII_RTTI_SYMBOL_1] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.852" };
|
|
133
133
|
sinceLastRelease;
|
|
134
134
|
useNx;
|
|
135
135
|
independentMode;
|
package/package.json
CHANGED
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"jsii-docgen": "^10.5.0",
|
|
34
34
|
"jsii-pacmak": "^1.137.0",
|
|
35
35
|
"jsii-rosetta": "5.9.x",
|
|
36
|
-
"projen": "^0.101.
|
|
36
|
+
"projen": "^0.101.4",
|
|
37
37
|
"ts-jest": "^29.4.11",
|
|
38
38
|
"ts-node": "^10.9.2",
|
|
39
39
|
"typescript": "^5.9.3"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"constructs": "^10.6.0",
|
|
43
|
-
"projen": "^0.101.
|
|
43
|
+
"projen": "^0.101.4"
|
|
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.852",
|
|
76
76
|
"jest": {
|
|
77
77
|
"coverageProvider": "v8",
|
|
78
78
|
"testMatch": [
|