lerna-projen 0.1.58 → 0.1.60
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/.gitattributes +1 -1
- package/.jsii +3 -3
- package/API.md +14 -0
- package/lib/index.js +2 -2
- package/package.json +5 -5
package/.gitattributes
CHANGED
package/.jsii
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"fs-extra": "^9.1.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"projen": "^0.70.
|
|
17
|
+
"projen": "^0.70.9"
|
|
18
18
|
},
|
|
19
19
|
"dependencyClosure": {
|
|
20
20
|
"projen": {
|
|
@@ -781,6 +781,6 @@
|
|
|
781
781
|
"symbolId": "src/types:TaskCustomization"
|
|
782
782
|
}
|
|
783
783
|
},
|
|
784
|
-
"version": "0.1.
|
|
785
|
-
"fingerprint": "
|
|
784
|
+
"version": "0.1.60",
|
|
785
|
+
"fingerprint": "Pp6L4dNoKkXEEbKjt28uCUlRg//8Z4nWLPVgG6XjijU="
|
|
786
786
|
}
|
package/API.md
CHANGED
|
@@ -2185,6 +2185,7 @@ const lernaTypescriptProjectOptions: LernaTypescriptProjectOptions = { ... }
|
|
|
2185
2185
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.workflowGitIdentity">workflowGitIdentity</a></code> | <code>projen.github.GitIdentity</code> | The git identity to use in workflows. |
|
|
2186
2186
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.workflowNodeVersion">workflowNodeVersion</a></code> | <code>string</code> | The node version to use in GitHub workflows. |
|
|
2187
2187
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.disableTsconfig">disableTsconfig</a></code> | <code>boolean</code> | Do not generate a `tsconfig.json` file (used by jsii projects since tsconfig.json is generated by the jsii compiler). |
|
|
2188
|
+
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.disableTsconfigDev">disableTsconfigDev</a></code> | <code>boolean</code> | Do not generate a `tsconfig.dev.json` file. |
|
|
2188
2189
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.docgen">docgen</a></code> | <code>boolean</code> | Docgen by Typedoc. |
|
|
2189
2190
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.docsDirectory">docsDirectory</a></code> | <code>string</code> | Docs directory. |
|
|
2190
2191
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.entrypointTypes">entrypointTypes</a></code> | <code>string</code> | The .d.ts file that includes the type declarations for this module. |
|
|
@@ -3933,6 +3934,19 @@ Do not generate a `tsconfig.json` file (used by jsii projects since tsconfig.jso
|
|
|
3933
3934
|
|
|
3934
3935
|
---
|
|
3935
3936
|
|
|
3937
|
+
##### `disableTsconfigDev`<sup>Optional</sup> <a name="disableTsconfigDev" id="lerna-projen.LernaTypescriptProjectOptions.property.disableTsconfigDev"></a>
|
|
3938
|
+
|
|
3939
|
+
```typescript
|
|
3940
|
+
public readonly disableTsconfigDev: boolean;
|
|
3941
|
+
```
|
|
3942
|
+
|
|
3943
|
+
- *Type:* boolean
|
|
3944
|
+
- *Default:* false
|
|
3945
|
+
|
|
3946
|
+
Do not generate a `tsconfig.dev.json` file.
|
|
3947
|
+
|
|
3948
|
+
---
|
|
3949
|
+
|
|
3936
3950
|
##### `docgen`<sup>Optional</sup> <a name="docgen" id="lerna-projen.LernaTypescriptProjectOptions.property.docgen"></a>
|
|
3937
3951
|
|
|
3938
3952
|
```typescript
|
package/lib/index.js
CHANGED
|
@@ -90,7 +90,7 @@ class LernaProject extends projen_1.javascript.NodeProject {
|
|
|
90
90
|
}
|
|
91
91
|
exports.LernaProject = LernaProject;
|
|
92
92
|
_a = JSII_RTTI_SYMBOL_1;
|
|
93
|
-
LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.
|
|
93
|
+
LernaProject[_a] = { fqn: "lerna-projen.LernaProject", version: "0.1.60" };
|
|
94
94
|
/**
|
|
95
95
|
* @pjid lerna-ts-project
|
|
96
96
|
*/
|
|
@@ -135,7 +135,7 @@ class LernaTypescriptProject extends projen_1.typescript.TypeScriptProject {
|
|
|
135
135
|
}
|
|
136
136
|
exports.LernaTypescriptProject = LernaTypescriptProject;
|
|
137
137
|
_b = JSII_RTTI_SYMBOL_1;
|
|
138
|
-
LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.
|
|
138
|
+
LernaTypescriptProject[_b] = { fqn: "lerna-projen.LernaTypescriptProject", version: "0.1.60" };
|
|
139
139
|
class LernaProjectFactory {
|
|
140
140
|
constructor(project) {
|
|
141
141
|
this.project = project;
|
package/package.json
CHANGED
|
@@ -54,17 +54,17 @@
|
|
|
54
54
|
"jest-junit": "^15",
|
|
55
55
|
"jsii": "1.x",
|
|
56
56
|
"jsii-diff": "^1.79.0",
|
|
57
|
-
"jsii-docgen": "^7.1.
|
|
57
|
+
"jsii-docgen": "^7.1.45",
|
|
58
58
|
"jsii-pacmak": "^1.79.0",
|
|
59
59
|
"npm-check-updates": "^16",
|
|
60
|
-
"projen": "^0.70.
|
|
60
|
+
"projen": "^0.70.9",
|
|
61
61
|
"standard-version": "^9",
|
|
62
62
|
"ts-jest": "^27",
|
|
63
63
|
"ts-node": "^10.9.1",
|
|
64
64
|
"typescript": "^4.9.5"
|
|
65
65
|
},
|
|
66
66
|
"peerDependencies": {
|
|
67
|
-
"projen": "^0.70.
|
|
67
|
+
"projen": "^0.70.9"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"commander": "^10.0.0",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
],
|
|
83
83
|
"main": "lib/index.js",
|
|
84
84
|
"license": "Apache-2.0",
|
|
85
|
-
"version": "0.1.
|
|
85
|
+
"version": "0.1.60",
|
|
86
86
|
"jest": {
|
|
87
87
|
"testMatch": [
|
|
88
88
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|
|
@@ -137,5 +137,5 @@
|
|
|
137
137
|
"@types/prettier": "2.6.0",
|
|
138
138
|
"@types/babel__traverse": "7.18.2"
|
|
139
139
|
},
|
|
140
|
-
"//": "~~ Generated by projen. To modify, edit .projenrc.
|
|
140
|
+
"//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"."
|
|
141
141
|
}
|