lerna-projen 0.1.39 → 0.1.40
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 +52 -0
- package/lib/index.js +2 -2
- package/package.json +4 -4
package/.jsii
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"fs-extra": "^9.1.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"projen": "^0.68.
|
|
17
|
+
"projen": "^0.68.5"
|
|
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.40",
|
|
785
|
+
"fingerprint": "+nkkRKPcAkInNWTVY8IF7ZB0PNjW0L+Ss8LB8PuSwXg="
|
|
786
786
|
}
|
package/API.md
CHANGED
|
@@ -106,6 +106,7 @@ const lernaProjectOptions: LernaProjectOptions = { ... }
|
|
|
106
106
|
| --- | --- | --- |
|
|
107
107
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.name">name</a></code> | <code>string</code> | This is the name of your project. |
|
|
108
108
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.commitGenerated">commitGenerated</a></code> | <code>boolean</code> | Whether to commit the managed files by default. |
|
|
109
|
+
| <code><a href="#lerna-projen.LernaProjectOptions.property.gitIgnoreOptions">gitIgnoreOptions</a></code> | <code>projen.IgnoreFileOptions</code> | Configuration options for .gitignore file. |
|
|
109
110
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.gitOptions">gitOptions</a></code> | <code>projen.GitOptions</code> | Configuration options for git. |
|
|
110
111
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.logging">logging</a></code> | <code>projen.LoggerOptions</code> | Configure logging options such as verbosity. |
|
|
111
112
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.outdir">outdir</a></code> | <code>string</code> | The root directory of the project. |
|
|
@@ -207,6 +208,7 @@ const lernaProjectOptions: LernaProjectOptions = { ... }
|
|
|
207
208
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.mutableBuild">mutableBuild</a></code> | <code>boolean</code> | Automatically update files modified during builds to pull-request branches. |
|
|
208
209
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.npmignore">npmignore</a></code> | <code>string[]</code> | Additional entries to .npmignore. |
|
|
209
210
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.npmignoreEnabled">npmignoreEnabled</a></code> | <code>boolean</code> | Defines an .npmignore file. Normally this is only needed for libraries that are packaged as tarballs. |
|
|
211
|
+
| <code><a href="#lerna-projen.LernaProjectOptions.property.npmIgnoreOptions">npmIgnoreOptions</a></code> | <code>projen.IgnoreFileOptions</code> | Configuration options for .npmignore file. |
|
|
210
212
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.package">package</a></code> | <code>boolean</code> | Defines a `package` task that will produce an npm tarball under the artifacts directory (e.g. `dist`). |
|
|
211
213
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.prettier">prettier</a></code> | <code>boolean</code> | Setup prettier. |
|
|
212
214
|
| <code><a href="#lerna-projen.LernaProjectOptions.property.prettierOptions">prettierOptions</a></code> | <code>projen.javascript.PrettierOptions</code> | Prettier options. |
|
|
@@ -259,6 +261,18 @@ Whether to commit the managed files by default.
|
|
|
259
261
|
|
|
260
262
|
---
|
|
261
263
|
|
|
264
|
+
##### `gitIgnoreOptions`<sup>Optional</sup> <a name="gitIgnoreOptions" id="lerna-projen.LernaProjectOptions.property.gitIgnoreOptions"></a>
|
|
265
|
+
|
|
266
|
+
```typescript
|
|
267
|
+
public readonly gitIgnoreOptions: IgnoreFileOptions;
|
|
268
|
+
```
|
|
269
|
+
|
|
270
|
+
- *Type:* projen.IgnoreFileOptions
|
|
271
|
+
|
|
272
|
+
Configuration options for .gitignore file.
|
|
273
|
+
|
|
274
|
+
---
|
|
275
|
+
|
|
262
276
|
##### `gitOptions`<sup>Optional</sup> <a name="gitOptions" id="lerna-projen.LernaProjectOptions.property.gitOptions"></a>
|
|
263
277
|
|
|
264
278
|
```typescript
|
|
@@ -1723,6 +1737,18 @@ Defines an .npmignore file. Normally this is only needed for libraries that are
|
|
|
1723
1737
|
|
|
1724
1738
|
---
|
|
1725
1739
|
|
|
1740
|
+
##### `npmIgnoreOptions`<sup>Optional</sup> <a name="npmIgnoreOptions" id="lerna-projen.LernaProjectOptions.property.npmIgnoreOptions"></a>
|
|
1741
|
+
|
|
1742
|
+
```typescript
|
|
1743
|
+
public readonly npmIgnoreOptions: IgnoreFileOptions;
|
|
1744
|
+
```
|
|
1745
|
+
|
|
1746
|
+
- *Type:* projen.IgnoreFileOptions
|
|
1747
|
+
|
|
1748
|
+
Configuration options for .npmignore file.
|
|
1749
|
+
|
|
1750
|
+
---
|
|
1751
|
+
|
|
1726
1752
|
##### `package`<sup>Optional</sup> <a name="package" id="lerna-projen.LernaProjectOptions.property.package"></a>
|
|
1727
1753
|
|
|
1728
1754
|
```typescript
|
|
@@ -2040,6 +2066,7 @@ const lernaTypescriptProjectOptions: LernaTypescriptProjectOptions = { ... }
|
|
|
2040
2066
|
| --- | --- | --- |
|
|
2041
2067
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.name">name</a></code> | <code>string</code> | This is the name of your project. |
|
|
2042
2068
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.commitGenerated">commitGenerated</a></code> | <code>boolean</code> | Whether to commit the managed files by default. |
|
|
2069
|
+
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.gitIgnoreOptions">gitIgnoreOptions</a></code> | <code>projen.IgnoreFileOptions</code> | Configuration options for .gitignore file. |
|
|
2043
2070
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.gitOptions">gitOptions</a></code> | <code>projen.GitOptions</code> | Configuration options for git. |
|
|
2044
2071
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.logging">logging</a></code> | <code>projen.LoggerOptions</code> | Configure logging options such as verbosity. |
|
|
2045
2072
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.outdir">outdir</a></code> | <code>string</code> | The root directory of the project. |
|
|
@@ -2141,6 +2168,7 @@ const lernaTypescriptProjectOptions: LernaTypescriptProjectOptions = { ... }
|
|
|
2141
2168
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.mutableBuild">mutableBuild</a></code> | <code>boolean</code> | Automatically update files modified during builds to pull-request branches. |
|
|
2142
2169
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.npmignore">npmignore</a></code> | <code>string[]</code> | Additional entries to .npmignore. |
|
|
2143
2170
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.npmignoreEnabled">npmignoreEnabled</a></code> | <code>boolean</code> | Defines an .npmignore file. Normally this is only needed for libraries that are packaged as tarballs. |
|
|
2171
|
+
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.npmIgnoreOptions">npmIgnoreOptions</a></code> | <code>projen.IgnoreFileOptions</code> | Configuration options for .npmignore file. |
|
|
2144
2172
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.package">package</a></code> | <code>boolean</code> | Defines a `package` task that will produce an npm tarball under the artifacts directory (e.g. `dist`). |
|
|
2145
2173
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.prettier">prettier</a></code> | <code>boolean</code> | Setup prettier. |
|
|
2146
2174
|
| <code><a href="#lerna-projen.LernaTypescriptProjectOptions.property.prettierOptions">prettierOptions</a></code> | <code>projen.javascript.PrettierOptions</code> | Prettier options. |
|
|
@@ -2207,6 +2235,18 @@ Whether to commit the managed files by default.
|
|
|
2207
2235
|
|
|
2208
2236
|
---
|
|
2209
2237
|
|
|
2238
|
+
##### `gitIgnoreOptions`<sup>Optional</sup> <a name="gitIgnoreOptions" id="lerna-projen.LernaTypescriptProjectOptions.property.gitIgnoreOptions"></a>
|
|
2239
|
+
|
|
2240
|
+
```typescript
|
|
2241
|
+
public readonly gitIgnoreOptions: IgnoreFileOptions;
|
|
2242
|
+
```
|
|
2243
|
+
|
|
2244
|
+
- *Type:* projen.IgnoreFileOptions
|
|
2245
|
+
|
|
2246
|
+
Configuration options for .gitignore file.
|
|
2247
|
+
|
|
2248
|
+
---
|
|
2249
|
+
|
|
2210
2250
|
##### `gitOptions`<sup>Optional</sup> <a name="gitOptions" id="lerna-projen.LernaTypescriptProjectOptions.property.gitOptions"></a>
|
|
2211
2251
|
|
|
2212
2252
|
```typescript
|
|
@@ -3671,6 +3711,18 @@ Defines an .npmignore file. Normally this is only needed for libraries that are
|
|
|
3671
3711
|
|
|
3672
3712
|
---
|
|
3673
3713
|
|
|
3714
|
+
##### `npmIgnoreOptions`<sup>Optional</sup> <a name="npmIgnoreOptions" id="lerna-projen.LernaTypescriptProjectOptions.property.npmIgnoreOptions"></a>
|
|
3715
|
+
|
|
3716
|
+
```typescript
|
|
3717
|
+
public readonly npmIgnoreOptions: IgnoreFileOptions;
|
|
3718
|
+
```
|
|
3719
|
+
|
|
3720
|
+
- *Type:* projen.IgnoreFileOptions
|
|
3721
|
+
|
|
3722
|
+
Configuration options for .npmignore file.
|
|
3723
|
+
|
|
3724
|
+
---
|
|
3725
|
+
|
|
3674
3726
|
##### `package`<sup>Optional</sup> <a name="package" id="lerna-projen.LernaTypescriptProjectOptions.property.package"></a>
|
|
3675
3727
|
|
|
3676
3728
|
```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.40" };
|
|
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.40" };
|
|
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": "^13",
|
|
55
55
|
"jsii": "^1.77.0",
|
|
56
56
|
"jsii-diff": "^1.77.0",
|
|
57
|
-
"jsii-docgen": "^7.1.
|
|
57
|
+
"jsii-docgen": "^7.1.27",
|
|
58
58
|
"jsii-pacmak": "^1.77.0",
|
|
59
59
|
"npm-check-updates": "^16",
|
|
60
|
-
"projen": "^0.68.
|
|
60
|
+
"projen": "^0.68.5",
|
|
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.68.
|
|
67
|
+
"projen": "^0.68.5"
|
|
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.40",
|
|
86
86
|
"jest": {
|
|
87
87
|
"testMatch": [
|
|
88
88
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|