lerna-projen 0.1.12 → 0.1.14
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 +130 -112
- package/API.md +196 -121
- package/lib/index.js +2 -2
- package/lib/types.d.ts +25 -23
- package/lib/types.js +1 -1
- package/package.json +3 -3
package/.jsii
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"fs-extra": "^9.1.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"projen": "^0.67.
|
|
17
|
+
"projen": "^0.67.60"
|
|
18
18
|
},
|
|
19
19
|
"dependencyClosure": {
|
|
20
20
|
"projen": {
|
|
@@ -93,6 +93,118 @@
|
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
95
|
"types": {
|
|
96
|
+
"lerna-projen.LernaCommonProjectOptions": {
|
|
97
|
+
"assembly": "lerna-projen",
|
|
98
|
+
"datatype": true,
|
|
99
|
+
"docs": {
|
|
100
|
+
"stability": "stable"
|
|
101
|
+
},
|
|
102
|
+
"fqn": "lerna-projen.LernaCommonProjectOptions",
|
|
103
|
+
"kind": "interface",
|
|
104
|
+
"locationInModule": {
|
|
105
|
+
"filename": "src/types.ts",
|
|
106
|
+
"line": 3
|
|
107
|
+
},
|
|
108
|
+
"name": "LernaCommonProjectOptions",
|
|
109
|
+
"properties": [
|
|
110
|
+
{
|
|
111
|
+
"abstract": true,
|
|
112
|
+
"docs": {
|
|
113
|
+
"default": "false",
|
|
114
|
+
"stability": "stable",
|
|
115
|
+
"summary": "Whether or not to use independent versioning for sub-projects https://lerna.js.org/docs/features/version-and-publish#independent-mode."
|
|
116
|
+
},
|
|
117
|
+
"immutable": true,
|
|
118
|
+
"locationInModule": {
|
|
119
|
+
"filename": "src/types.ts",
|
|
120
|
+
"line": 26
|
|
121
|
+
},
|
|
122
|
+
"name": "independentMode",
|
|
123
|
+
"optional": true,
|
|
124
|
+
"type": {
|
|
125
|
+
"primitive": "boolean"
|
|
126
|
+
}
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"abstract": true,
|
|
130
|
+
"docs": {
|
|
131
|
+
"default": "false",
|
|
132
|
+
"stability": "experimental",
|
|
133
|
+
"summary": "(experimental) Flag to run tasks only for the packages that has changes since last release."
|
|
134
|
+
},
|
|
135
|
+
"immutable": true,
|
|
136
|
+
"locationInModule": {
|
|
137
|
+
"filename": "src/types.ts",
|
|
138
|
+
"line": 10
|
|
139
|
+
},
|
|
140
|
+
"name": "sinceLastRelease",
|
|
141
|
+
"optional": true,
|
|
142
|
+
"type": {
|
|
143
|
+
"primitive": "boolean"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"abstract": true,
|
|
148
|
+
"docs": {
|
|
149
|
+
"default": "{} \"No task customizations\"",
|
|
150
|
+
"stability": "stable",
|
|
151
|
+
"summary": "Key value pair of task name and TaskCustomization to customize the lerna run step added to the task."
|
|
152
|
+
},
|
|
153
|
+
"immutable": true,
|
|
154
|
+
"locationInModule": {
|
|
155
|
+
"filename": "src/types.ts",
|
|
156
|
+
"line": 41
|
|
157
|
+
},
|
|
158
|
+
"name": "taskCustomizations",
|
|
159
|
+
"optional": true,
|
|
160
|
+
"type": {
|
|
161
|
+
"collection": {
|
|
162
|
+
"elementtype": {
|
|
163
|
+
"fqn": "lerna-projen.TaskCustomization"
|
|
164
|
+
},
|
|
165
|
+
"kind": "map"
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
{
|
|
170
|
+
"abstract": true,
|
|
171
|
+
"docs": {
|
|
172
|
+
"default": "false",
|
|
173
|
+
"stability": "stable",
|
|
174
|
+
"summary": "Whether or not to use Nx for task scheduling https://lerna.js.org/docs/lerna-and-nx."
|
|
175
|
+
},
|
|
176
|
+
"immutable": true,
|
|
177
|
+
"locationInModule": {
|
|
178
|
+
"filename": "src/types.ts",
|
|
179
|
+
"line": 18
|
|
180
|
+
},
|
|
181
|
+
"name": "useNx",
|
|
182
|
+
"optional": true,
|
|
183
|
+
"type": {
|
|
184
|
+
"primitive": "boolean"
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"abstract": true,
|
|
189
|
+
"docs": {
|
|
190
|
+
"default": "false",
|
|
191
|
+
"stability": "stable",
|
|
192
|
+
"summary": "Whether or not to use workspaces in the package.json file Otherwise, will add packages to lerna.json."
|
|
193
|
+
},
|
|
194
|
+
"immutable": true,
|
|
195
|
+
"locationInModule": {
|
|
196
|
+
"filename": "src/types.ts",
|
|
197
|
+
"line": 34
|
|
198
|
+
},
|
|
199
|
+
"name": "useWorkspaces",
|
|
200
|
+
"optional": true,
|
|
201
|
+
"type": {
|
|
202
|
+
"primitive": "boolean"
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
],
|
|
206
|
+
"symbolId": "src/types:LernaCommonProjectOptions"
|
|
207
|
+
},
|
|
96
208
|
"lerna-projen.LernaProject": {
|
|
97
209
|
"assembly": "lerna-projen",
|
|
98
210
|
"base": "projen.javascript.NodeProject",
|
|
@@ -305,12 +417,13 @@
|
|
|
305
417
|
},
|
|
306
418
|
"fqn": "lerna-projen.LernaProjectOptions",
|
|
307
419
|
"interfaces": [
|
|
308
|
-
"projen.javascript.NodeProjectOptions"
|
|
420
|
+
"projen.javascript.NodeProjectOptions",
|
|
421
|
+
"lerna-projen.LernaCommonProjectOptions"
|
|
309
422
|
],
|
|
310
423
|
"kind": "interface",
|
|
311
424
|
"locationInModule": {
|
|
312
425
|
"filename": "src/types.ts",
|
|
313
|
-
"line":
|
|
426
|
+
"line": 45
|
|
314
427
|
},
|
|
315
428
|
"name": "LernaProjectOptions",
|
|
316
429
|
"properties": [
|
|
@@ -324,7 +437,7 @@
|
|
|
324
437
|
"immutable": true,
|
|
325
438
|
"locationInModule": {
|
|
326
439
|
"filename": "src/types.ts",
|
|
327
|
-
"line":
|
|
440
|
+
"line": 60
|
|
328
441
|
},
|
|
329
442
|
"name": "docgen",
|
|
330
443
|
"optional": true,
|
|
@@ -342,7 +455,7 @@
|
|
|
342
455
|
"immutable": true,
|
|
343
456
|
"locationInModule": {
|
|
344
457
|
"filename": "src/types.ts",
|
|
345
|
-
"line":
|
|
458
|
+
"line": 68
|
|
346
459
|
},
|
|
347
460
|
"name": "docsDirectory",
|
|
348
461
|
"optional": true,
|
|
@@ -350,24 +463,6 @@
|
|
|
350
463
|
"primitive": "string"
|
|
351
464
|
}
|
|
352
465
|
},
|
|
353
|
-
{
|
|
354
|
-
"abstract": true,
|
|
355
|
-
"docs": {
|
|
356
|
-
"default": "false",
|
|
357
|
-
"stability": "stable",
|
|
358
|
-
"summary": "Whether or not to use independent versioning for sub-projects https://lerna.js.org/docs/features/version-and-publish#independent-mode."
|
|
359
|
-
},
|
|
360
|
-
"immutable": true,
|
|
361
|
-
"locationInModule": {
|
|
362
|
-
"filename": "src/types.ts",
|
|
363
|
-
"line": 50
|
|
364
|
-
},
|
|
365
|
-
"name": "independentMode",
|
|
366
|
-
"optional": true,
|
|
367
|
-
"type": {
|
|
368
|
-
"primitive": "boolean"
|
|
369
|
-
}
|
|
370
|
-
},
|
|
371
466
|
{
|
|
372
467
|
"abstract": true,
|
|
373
468
|
"docs": {
|
|
@@ -378,90 +473,13 @@
|
|
|
378
473
|
"immutable": true,
|
|
379
474
|
"locationInModule": {
|
|
380
475
|
"filename": "src/types.ts",
|
|
381
|
-
"line":
|
|
476
|
+
"line": 52
|
|
382
477
|
},
|
|
383
478
|
"name": "projenrcTs",
|
|
384
479
|
"optional": true,
|
|
385
480
|
"type": {
|
|
386
481
|
"primitive": "boolean"
|
|
387
482
|
}
|
|
388
|
-
},
|
|
389
|
-
{
|
|
390
|
-
"abstract": true,
|
|
391
|
-
"docs": {
|
|
392
|
-
"default": "false",
|
|
393
|
-
"stability": "experimental",
|
|
394
|
-
"summary": "(experimental) Flag to run tasks only for the packages that has changes since last release."
|
|
395
|
-
},
|
|
396
|
-
"immutable": true,
|
|
397
|
-
"locationInModule": {
|
|
398
|
-
"filename": "src/types.ts",
|
|
399
|
-
"line": 34
|
|
400
|
-
},
|
|
401
|
-
"name": "sinceLastRelease",
|
|
402
|
-
"optional": true,
|
|
403
|
-
"type": {
|
|
404
|
-
"primitive": "boolean"
|
|
405
|
-
}
|
|
406
|
-
},
|
|
407
|
-
{
|
|
408
|
-
"abstract": true,
|
|
409
|
-
"docs": {
|
|
410
|
-
"default": "{} \"No task customizations\"",
|
|
411
|
-
"stability": "stable",
|
|
412
|
-
"summary": "Key value pair of task name and TaskCustomization to customize the lerna run step added to the task."
|
|
413
|
-
},
|
|
414
|
-
"immutable": true,
|
|
415
|
-
"locationInModule": {
|
|
416
|
-
"filename": "src/types.ts",
|
|
417
|
-
"line": 65
|
|
418
|
-
},
|
|
419
|
-
"name": "taskCustomizations",
|
|
420
|
-
"optional": true,
|
|
421
|
-
"type": {
|
|
422
|
-
"collection": {
|
|
423
|
-
"elementtype": {
|
|
424
|
-
"fqn": "lerna-projen.TaskCustomization"
|
|
425
|
-
},
|
|
426
|
-
"kind": "map"
|
|
427
|
-
}
|
|
428
|
-
}
|
|
429
|
-
},
|
|
430
|
-
{
|
|
431
|
-
"abstract": true,
|
|
432
|
-
"docs": {
|
|
433
|
-
"default": "false",
|
|
434
|
-
"stability": "stable",
|
|
435
|
-
"summary": "Whether or not to use Nx for task scheduling https://lerna.js.org/docs/lerna-and-nx."
|
|
436
|
-
},
|
|
437
|
-
"immutable": true,
|
|
438
|
-
"locationInModule": {
|
|
439
|
-
"filename": "src/types.ts",
|
|
440
|
-
"line": 42
|
|
441
|
-
},
|
|
442
|
-
"name": "useNx",
|
|
443
|
-
"optional": true,
|
|
444
|
-
"type": {
|
|
445
|
-
"primitive": "boolean"
|
|
446
|
-
}
|
|
447
|
-
},
|
|
448
|
-
{
|
|
449
|
-
"abstract": true,
|
|
450
|
-
"docs": {
|
|
451
|
-
"default": "false",
|
|
452
|
-
"stability": "stable",
|
|
453
|
-
"summary": "Whether or not to use workspaces in the package.json file Otherwise, will add packages to lerna.json."
|
|
454
|
-
},
|
|
455
|
-
"immutable": true,
|
|
456
|
-
"locationInModule": {
|
|
457
|
-
"filename": "src/types.ts",
|
|
458
|
-
"line": 58
|
|
459
|
-
},
|
|
460
|
-
"name": "useWorkspaces",
|
|
461
|
-
"optional": true,
|
|
462
|
-
"type": {
|
|
463
|
-
"primitive": "boolean"
|
|
464
|
-
}
|
|
465
483
|
}
|
|
466
484
|
],
|
|
467
485
|
"symbolId": "src/types:LernaProjectOptions"
|
|
@@ -631,13 +649,13 @@
|
|
|
631
649
|
},
|
|
632
650
|
"fqn": "lerna-projen.LernaTypescriptProjectOptions",
|
|
633
651
|
"interfaces": [
|
|
634
|
-
"
|
|
635
|
-
"projen.
|
|
652
|
+
"projen.typescript.TypeScriptProjectOptions",
|
|
653
|
+
"lerna-projen.LernaCommonProjectOptions"
|
|
636
654
|
],
|
|
637
655
|
"kind": "interface",
|
|
638
656
|
"locationInModule": {
|
|
639
657
|
"filename": "src/types.ts",
|
|
640
|
-
"line":
|
|
658
|
+
"line": 71
|
|
641
659
|
},
|
|
642
660
|
"name": "LernaTypescriptProjectOptions",
|
|
643
661
|
"properties": [
|
|
@@ -652,7 +670,7 @@
|
|
|
652
670
|
"immutable": true,
|
|
653
671
|
"locationInModule": {
|
|
654
672
|
"filename": "src/types.ts",
|
|
655
|
-
"line":
|
|
673
|
+
"line": 79
|
|
656
674
|
},
|
|
657
675
|
"name": "hasRootSourceCode",
|
|
658
676
|
"optional": true,
|
|
@@ -673,7 +691,7 @@
|
|
|
673
691
|
"kind": "interface",
|
|
674
692
|
"locationInModule": {
|
|
675
693
|
"filename": "src/types.ts",
|
|
676
|
-
"line":
|
|
694
|
+
"line": 84
|
|
677
695
|
},
|
|
678
696
|
"name": "TaskCustomization",
|
|
679
697
|
"properties": [
|
|
@@ -687,7 +705,7 @@
|
|
|
687
705
|
"immutable": true,
|
|
688
706
|
"locationInModule": {
|
|
689
707
|
"filename": "src/types.ts",
|
|
690
|
-
"line":
|
|
708
|
+
"line": 90
|
|
691
709
|
},
|
|
692
710
|
"name": "addLernaStep",
|
|
693
711
|
"optional": true,
|
|
@@ -705,7 +723,7 @@
|
|
|
705
723
|
"immutable": true,
|
|
706
724
|
"locationInModule": {
|
|
707
725
|
"filename": "src/types.ts",
|
|
708
|
-
"line":
|
|
726
|
+
"line": 104
|
|
709
727
|
},
|
|
710
728
|
"name": "exclude",
|
|
711
729
|
"optional": true,
|
|
@@ -728,7 +746,7 @@
|
|
|
728
746
|
"immutable": true,
|
|
729
747
|
"locationInModule": {
|
|
730
748
|
"filename": "src/types.ts",
|
|
731
|
-
"line":
|
|
749
|
+
"line": 97
|
|
732
750
|
},
|
|
733
751
|
"name": "include",
|
|
734
752
|
"optional": true,
|
|
@@ -751,7 +769,7 @@
|
|
|
751
769
|
"immutable": true,
|
|
752
770
|
"locationInModule": {
|
|
753
771
|
"filename": "src/types.ts",
|
|
754
|
-
"line":
|
|
772
|
+
"line": 111
|
|
755
773
|
},
|
|
756
774
|
"name": "sinceLastRelease",
|
|
757
775
|
"optional": true,
|
|
@@ -763,6 +781,6 @@
|
|
|
763
781
|
"symbolId": "src/types:TaskCustomization"
|
|
764
782
|
}
|
|
765
783
|
},
|
|
766
|
-
"version": "0.1.
|
|
767
|
-
"fingerprint": "
|
|
784
|
+
"version": "0.1.14",
|
|
785
|
+
"fingerprint": "y6qmhDnBatr0AfVMdlrrSrdK6+nrDkzXuN0G8gaP2MI="
|
|
768
786
|
}
|
package/API.md
CHANGED
|
@@ -3,6 +3,81 @@
|
|
|
3
3
|
|
|
4
4
|
## Structs <a name="Structs"></a>
|
|
5
5
|
|
|
6
|
+
### LernaCommonProjectOptions <a name="lerna-projen.LernaCommonProjectOptions"></a>
|
|
7
|
+
|
|
8
|
+
#### Initializer <a name="[object Object].Initializer"></a>
|
|
9
|
+
|
|
10
|
+
```typescript
|
|
11
|
+
import { LernaCommonProjectOptions } from 'lerna-projen'
|
|
12
|
+
|
|
13
|
+
const lernaCommonProjectOptions: LernaCommonProjectOptions = { ... }
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
##### `independentMode`<sup>Optional</sup> <a name="lerna-projen.LernaCommonProjectOptions.property.independentMode"></a>
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
public readonly independentMode: boolean;
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
- *Type:* `boolean`
|
|
23
|
+
- *Default:* false
|
|
24
|
+
|
|
25
|
+
Whether or not to use independent versioning for sub-projects https://lerna.js.org/docs/features/version-and-publish#independent-mode.
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
##### `sinceLastRelease`<sup>Optional</sup> <a name="lerna-projen.LernaCommonProjectOptions.property.sinceLastRelease"></a>
|
|
30
|
+
|
|
31
|
+
```typescript
|
|
32
|
+
public readonly sinceLastRelease: boolean;
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
- *Type:* `boolean`
|
|
36
|
+
- *Default:* false
|
|
37
|
+
|
|
38
|
+
(experimental) Flag to run tasks only for the packages that has changes since last release.
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
42
|
+
##### `taskCustomizations`<sup>Optional</sup> <a name="lerna-projen.LernaCommonProjectOptions.property.taskCustomizations"></a>
|
|
43
|
+
|
|
44
|
+
```typescript
|
|
45
|
+
public readonly taskCustomizations: {[ key: string ]: TaskCustomization};
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
- *Type:* {[ key: string ]: [`lerna-projen.TaskCustomization`](#lerna-projen.TaskCustomization)}
|
|
49
|
+
- *Default:* {} "No task customizations"
|
|
50
|
+
|
|
51
|
+
Key value pair of task name and TaskCustomization to customize the lerna run step added to the task.
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
##### `useNx`<sup>Optional</sup> <a name="lerna-projen.LernaCommonProjectOptions.property.useNx"></a>
|
|
56
|
+
|
|
57
|
+
```typescript
|
|
58
|
+
public readonly useNx: boolean;
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
- *Type:* `boolean`
|
|
62
|
+
- *Default:* false
|
|
63
|
+
|
|
64
|
+
Whether or not to use Nx for task scheduling https://lerna.js.org/docs/lerna-and-nx.
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
##### `useWorkspaces`<sup>Optional</sup> <a name="lerna-projen.LernaCommonProjectOptions.property.useWorkspaces"></a>
|
|
69
|
+
|
|
70
|
+
```typescript
|
|
71
|
+
public readonly useWorkspaces: boolean;
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
- *Type:* `boolean`
|
|
75
|
+
- *Default:* false
|
|
76
|
+
|
|
77
|
+
Whether or not to use workspaces in the package.json file Otherwise, will add packages to lerna.json.
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
6
81
|
### LernaProjectOptions <a name="lerna-projen.LernaProjectOptions"></a>
|
|
7
82
|
|
|
8
83
|
#### Initializer <a name="[object Object].Initializer"></a>
|
|
@@ -1657,107 +1732,107 @@ The node version to use in GitHub workflows.
|
|
|
1657
1732
|
|
|
1658
1733
|
---
|
|
1659
1734
|
|
|
1660
|
-
##### `
|
|
1735
|
+
##### `independentMode`<sup>Optional</sup> <a name="lerna-projen.LernaProjectOptions.property.independentMode"></a>
|
|
1661
1736
|
|
|
1662
1737
|
```typescript
|
|
1663
|
-
public readonly
|
|
1738
|
+
public readonly independentMode: boolean;
|
|
1664
1739
|
```
|
|
1665
1740
|
|
|
1666
1741
|
- *Type:* `boolean`
|
|
1667
1742
|
- *Default:* false
|
|
1668
1743
|
|
|
1669
|
-
|
|
1744
|
+
Whether or not to use independent versioning for sub-projects https://lerna.js.org/docs/features/version-and-publish#independent-mode.
|
|
1670
1745
|
|
|
1671
1746
|
---
|
|
1672
1747
|
|
|
1673
|
-
##### `
|
|
1748
|
+
##### `sinceLastRelease`<sup>Optional</sup> <a name="lerna-projen.LernaProjectOptions.property.sinceLastRelease"></a>
|
|
1674
1749
|
|
|
1675
1750
|
```typescript
|
|
1676
|
-
public readonly
|
|
1751
|
+
public readonly sinceLastRelease: boolean;
|
|
1677
1752
|
```
|
|
1678
1753
|
|
|
1679
|
-
- *Type:* `
|
|
1680
|
-
- *Default:*
|
|
1754
|
+
- *Type:* `boolean`
|
|
1755
|
+
- *Default:* false
|
|
1681
1756
|
|
|
1682
|
-
(experimental)
|
|
1757
|
+
(experimental) Flag to run tasks only for the packages that has changes since last release.
|
|
1683
1758
|
|
|
1684
1759
|
---
|
|
1685
1760
|
|
|
1686
|
-
##### `
|
|
1761
|
+
##### `taskCustomizations`<sup>Optional</sup> <a name="lerna-projen.LernaProjectOptions.property.taskCustomizations"></a>
|
|
1687
1762
|
|
|
1688
1763
|
```typescript
|
|
1689
|
-
public readonly
|
|
1764
|
+
public readonly taskCustomizations: {[ key: string ]: TaskCustomization};
|
|
1690
1765
|
```
|
|
1691
1766
|
|
|
1692
|
-
- *Type:* `
|
|
1693
|
-
- *Default:*
|
|
1767
|
+
- *Type:* {[ key: string ]: [`lerna-projen.TaskCustomization`](#lerna-projen.TaskCustomization)}
|
|
1768
|
+
- *Default:* {} "No task customizations"
|
|
1694
1769
|
|
|
1695
|
-
|
|
1770
|
+
Key value pair of task name and TaskCustomization to customize the lerna run step added to the task.
|
|
1696
1771
|
|
|
1697
1772
|
---
|
|
1698
1773
|
|
|
1699
|
-
##### `
|
|
1774
|
+
##### `useNx`<sup>Optional</sup> <a name="lerna-projen.LernaProjectOptions.property.useNx"></a>
|
|
1700
1775
|
|
|
1701
1776
|
```typescript
|
|
1702
|
-
public readonly
|
|
1777
|
+
public readonly useNx: boolean;
|
|
1703
1778
|
```
|
|
1704
1779
|
|
|
1705
1780
|
- *Type:* `boolean`
|
|
1706
1781
|
- *Default:* false
|
|
1707
1782
|
|
|
1708
|
-
|
|
1783
|
+
Whether or not to use Nx for task scheduling https://lerna.js.org/docs/lerna-and-nx.
|
|
1709
1784
|
|
|
1710
1785
|
---
|
|
1711
1786
|
|
|
1712
|
-
##### `
|
|
1787
|
+
##### `useWorkspaces`<sup>Optional</sup> <a name="lerna-projen.LernaProjectOptions.property.useWorkspaces"></a>
|
|
1713
1788
|
|
|
1714
1789
|
```typescript
|
|
1715
|
-
public readonly
|
|
1790
|
+
public readonly useWorkspaces: boolean;
|
|
1716
1791
|
```
|
|
1717
1792
|
|
|
1718
1793
|
- *Type:* `boolean`
|
|
1719
1794
|
- *Default:* false
|
|
1720
1795
|
|
|
1721
|
-
|
|
1796
|
+
Whether or not to use workspaces in the package.json file Otherwise, will add packages to lerna.json.
|
|
1722
1797
|
|
|
1723
1798
|
---
|
|
1724
1799
|
|
|
1725
|
-
##### `
|
|
1800
|
+
##### `docgen`<sup>Optional</sup> <a name="lerna-projen.LernaProjectOptions.property.docgen"></a>
|
|
1726
1801
|
|
|
1727
1802
|
```typescript
|
|
1728
|
-
public readonly
|
|
1803
|
+
public readonly docgen: boolean;
|
|
1729
1804
|
```
|
|
1730
1805
|
|
|
1731
|
-
- *Type:*
|
|
1732
|
-
- *Default:*
|
|
1806
|
+
- *Type:* `boolean`
|
|
1807
|
+
- *Default:* false
|
|
1733
1808
|
|
|
1734
|
-
|
|
1809
|
+
Consolidate sub projects doc files.
|
|
1735
1810
|
|
|
1736
1811
|
---
|
|
1737
1812
|
|
|
1738
|
-
##### `
|
|
1813
|
+
##### `docsDirectory`<sup>Optional</sup> <a name="lerna-projen.LernaProjectOptions.property.docsDirectory"></a>
|
|
1739
1814
|
|
|
1740
1815
|
```typescript
|
|
1741
|
-
public readonly
|
|
1816
|
+
public readonly docsDirectory: string;
|
|
1742
1817
|
```
|
|
1743
1818
|
|
|
1744
|
-
- *Type:* `
|
|
1745
|
-
- *Default:*
|
|
1819
|
+
- *Type:* `string`
|
|
1820
|
+
- *Default:* "docs"
|
|
1746
1821
|
|
|
1747
|
-
|
|
1822
|
+
(experimental) Docs directory.
|
|
1748
1823
|
|
|
1749
1824
|
---
|
|
1750
1825
|
|
|
1751
|
-
##### `
|
|
1826
|
+
##### `projenrcTs`<sup>Optional</sup> <a name="lerna-projen.LernaProjectOptions.property.projenrcTs"></a>
|
|
1752
1827
|
|
|
1753
1828
|
```typescript
|
|
1754
|
-
public readonly
|
|
1829
|
+
public readonly projenrcTs: boolean;
|
|
1755
1830
|
```
|
|
1756
1831
|
|
|
1757
1832
|
- *Type:* `boolean`
|
|
1758
1833
|
- *Default:* false
|
|
1759
1834
|
|
|
1760
|
-
|
|
1835
|
+
(experimental) Use TypeScript for your projenrc file (`.projenrc.ts`).
|
|
1761
1836
|
|
|
1762
1837
|
---
|
|
1763
1838
|
|
|
@@ -3415,120 +3490,42 @@ The node version to use in GitHub workflows.
|
|
|
3415
3490
|
|
|
3416
3491
|
---
|
|
3417
3492
|
|
|
3418
|
-
##### `
|
|
3419
|
-
|
|
3420
|
-
```typescript
|
|
3421
|
-
public readonly docgen: boolean;
|
|
3422
|
-
```
|
|
3423
|
-
|
|
3424
|
-
- *Type:* `boolean`
|
|
3425
|
-
- *Default:* false
|
|
3426
|
-
|
|
3427
|
-
Docgen by Typedoc.
|
|
3428
|
-
|
|
3429
|
-
---
|
|
3430
|
-
|
|
3431
|
-
##### `docsDirectory`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.docsDirectory"></a>
|
|
3432
|
-
|
|
3433
|
-
```typescript
|
|
3434
|
-
public readonly docsDirectory: string;
|
|
3435
|
-
```
|
|
3436
|
-
|
|
3437
|
-
- *Type:* `string`
|
|
3438
|
-
- *Default:* "docs"
|
|
3439
|
-
|
|
3440
|
-
Docs directory.
|
|
3441
|
-
|
|
3442
|
-
---
|
|
3443
|
-
|
|
3444
|
-
##### `independentMode`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.independentMode"></a>
|
|
3445
|
-
|
|
3446
|
-
```typescript
|
|
3447
|
-
public readonly independentMode: boolean;
|
|
3448
|
-
```
|
|
3449
|
-
|
|
3450
|
-
- *Type:* `boolean`
|
|
3451
|
-
- *Default:* false
|
|
3452
|
-
|
|
3453
|
-
Whether or not to use independent versioning for sub-projects https://lerna.js.org/docs/features/version-and-publish#independent-mode.
|
|
3454
|
-
|
|
3455
|
-
---
|
|
3456
|
-
|
|
3457
|
-
##### `projenrcTs`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.projenrcTs"></a>
|
|
3458
|
-
|
|
3459
|
-
```typescript
|
|
3460
|
-
public readonly projenrcTs: boolean;
|
|
3461
|
-
```
|
|
3462
|
-
|
|
3463
|
-
- *Type:* `boolean`
|
|
3464
|
-
- *Default:* false
|
|
3465
|
-
|
|
3466
|
-
Use TypeScript for your projenrc file (`.projenrc.ts`).
|
|
3467
|
-
|
|
3468
|
-
---
|
|
3469
|
-
|
|
3470
|
-
##### `sinceLastRelease`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.sinceLastRelease"></a>
|
|
3471
|
-
|
|
3472
|
-
```typescript
|
|
3473
|
-
public readonly sinceLastRelease: boolean;
|
|
3474
|
-
```
|
|
3475
|
-
|
|
3476
|
-
- *Type:* `boolean`
|
|
3477
|
-
- *Default:* false
|
|
3478
|
-
|
|
3479
|
-
(experimental) Flag to run tasks only for the packages that has changes since last release.
|
|
3480
|
-
|
|
3481
|
-
---
|
|
3482
|
-
|
|
3483
|
-
##### `taskCustomizations`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.taskCustomizations"></a>
|
|
3484
|
-
|
|
3485
|
-
```typescript
|
|
3486
|
-
public readonly taskCustomizations: {[ key: string ]: TaskCustomization};
|
|
3487
|
-
```
|
|
3488
|
-
|
|
3489
|
-
- *Type:* {[ key: string ]: [`lerna-projen.TaskCustomization`](#lerna-projen.TaskCustomization)}
|
|
3490
|
-
- *Default:* {} "No task customizations"
|
|
3491
|
-
|
|
3492
|
-
Key value pair of task name and TaskCustomization to customize the lerna run step added to the task.
|
|
3493
|
-
|
|
3494
|
-
---
|
|
3495
|
-
|
|
3496
|
-
##### `useNx`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.useNx"></a>
|
|
3493
|
+
##### `disableTsconfig`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.disableTsconfig"></a>
|
|
3497
3494
|
|
|
3498
3495
|
```typescript
|
|
3499
|
-
public readonly
|
|
3496
|
+
public readonly disableTsconfig: boolean;
|
|
3500
3497
|
```
|
|
3501
3498
|
|
|
3502
3499
|
- *Type:* `boolean`
|
|
3503
3500
|
- *Default:* false
|
|
3504
3501
|
|
|
3505
|
-
|
|
3502
|
+
Do not generate a `tsconfig.json` file (used by jsii projects since tsconfig.json is generated by the jsii compiler).
|
|
3506
3503
|
|
|
3507
3504
|
---
|
|
3508
3505
|
|
|
3509
|
-
##### `
|
|
3506
|
+
##### `docgen`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.docgen"></a>
|
|
3510
3507
|
|
|
3511
3508
|
```typescript
|
|
3512
|
-
public readonly
|
|
3509
|
+
public readonly docgen: boolean;
|
|
3513
3510
|
```
|
|
3514
3511
|
|
|
3515
3512
|
- *Type:* `boolean`
|
|
3516
3513
|
- *Default:* false
|
|
3517
3514
|
|
|
3518
|
-
|
|
3515
|
+
Docgen by Typedoc.
|
|
3519
3516
|
|
|
3520
3517
|
---
|
|
3521
3518
|
|
|
3522
|
-
##### `
|
|
3519
|
+
##### `docsDirectory`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.docsDirectory"></a>
|
|
3523
3520
|
|
|
3524
3521
|
```typescript
|
|
3525
|
-
public readonly
|
|
3522
|
+
public readonly docsDirectory: string;
|
|
3526
3523
|
```
|
|
3527
3524
|
|
|
3528
|
-
- *Type:* `
|
|
3529
|
-
- *Default:*
|
|
3525
|
+
- *Type:* `string`
|
|
3526
|
+
- *Default:* "docs"
|
|
3530
3527
|
|
|
3531
|
-
|
|
3528
|
+
Docs directory.
|
|
3532
3529
|
|
|
3533
3530
|
---
|
|
3534
3531
|
|
|
@@ -3584,6 +3581,19 @@ Typescript artifacts output directory.
|
|
|
3584
3581
|
|
|
3585
3582
|
---
|
|
3586
3583
|
|
|
3584
|
+
##### `projenrcTs`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.projenrcTs"></a>
|
|
3585
|
+
|
|
3586
|
+
```typescript
|
|
3587
|
+
public readonly projenrcTs: boolean;
|
|
3588
|
+
```
|
|
3589
|
+
|
|
3590
|
+
- *Type:* `boolean`
|
|
3591
|
+
- *Default:* false
|
|
3592
|
+
|
|
3593
|
+
Use TypeScript for your projenrc file (`.projenrc.ts`).
|
|
3594
|
+
|
|
3595
|
+
---
|
|
3596
|
+
|
|
3587
3597
|
##### `projenrcTsOptions`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.projenrcTsOptions"></a>
|
|
3588
3598
|
|
|
3589
3599
|
```typescript
|
|
@@ -3695,6 +3705,71 @@ same minor, so we recommend using a `~` dependency (e.g. `~1.2.3`).
|
|
|
3695
3705
|
|
|
3696
3706
|
---
|
|
3697
3707
|
|
|
3708
|
+
##### `independentMode`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.independentMode"></a>
|
|
3709
|
+
|
|
3710
|
+
```typescript
|
|
3711
|
+
public readonly independentMode: boolean;
|
|
3712
|
+
```
|
|
3713
|
+
|
|
3714
|
+
- *Type:* `boolean`
|
|
3715
|
+
- *Default:* false
|
|
3716
|
+
|
|
3717
|
+
Whether or not to use independent versioning for sub-projects https://lerna.js.org/docs/features/version-and-publish#independent-mode.
|
|
3718
|
+
|
|
3719
|
+
---
|
|
3720
|
+
|
|
3721
|
+
##### `sinceLastRelease`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.sinceLastRelease"></a>
|
|
3722
|
+
|
|
3723
|
+
```typescript
|
|
3724
|
+
public readonly sinceLastRelease: boolean;
|
|
3725
|
+
```
|
|
3726
|
+
|
|
3727
|
+
- *Type:* `boolean`
|
|
3728
|
+
- *Default:* false
|
|
3729
|
+
|
|
3730
|
+
(experimental) Flag to run tasks only for the packages that has changes since last release.
|
|
3731
|
+
|
|
3732
|
+
---
|
|
3733
|
+
|
|
3734
|
+
##### `taskCustomizations`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.taskCustomizations"></a>
|
|
3735
|
+
|
|
3736
|
+
```typescript
|
|
3737
|
+
public readonly taskCustomizations: {[ key: string ]: TaskCustomization};
|
|
3738
|
+
```
|
|
3739
|
+
|
|
3740
|
+
- *Type:* {[ key: string ]: [`lerna-projen.TaskCustomization`](#lerna-projen.TaskCustomization)}
|
|
3741
|
+
- *Default:* {} "No task customizations"
|
|
3742
|
+
|
|
3743
|
+
Key value pair of task name and TaskCustomization to customize the lerna run step added to the task.
|
|
3744
|
+
|
|
3745
|
+
---
|
|
3746
|
+
|
|
3747
|
+
##### `useNx`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.useNx"></a>
|
|
3748
|
+
|
|
3749
|
+
```typescript
|
|
3750
|
+
public readonly useNx: boolean;
|
|
3751
|
+
```
|
|
3752
|
+
|
|
3753
|
+
- *Type:* `boolean`
|
|
3754
|
+
- *Default:* false
|
|
3755
|
+
|
|
3756
|
+
Whether or not to use Nx for task scheduling https://lerna.js.org/docs/lerna-and-nx.
|
|
3757
|
+
|
|
3758
|
+
---
|
|
3759
|
+
|
|
3760
|
+
##### `useWorkspaces`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.useWorkspaces"></a>
|
|
3761
|
+
|
|
3762
|
+
```typescript
|
|
3763
|
+
public readonly useWorkspaces: boolean;
|
|
3764
|
+
```
|
|
3765
|
+
|
|
3766
|
+
- *Type:* `boolean`
|
|
3767
|
+
- *Default:* false
|
|
3768
|
+
|
|
3769
|
+
Whether or not to use workspaces in the package.json file Otherwise, will add packages to lerna.json.
|
|
3770
|
+
|
|
3771
|
+
---
|
|
3772
|
+
|
|
3698
3773
|
##### `hasRootSourceCode`<sup>Optional</sup> <a name="lerna-projen.LernaTypescriptProjectOptions.property.hasRootSourceCode"></a>
|
|
3699
3774
|
|
|
3700
3775
|
```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.14" };
|
|
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.14" };
|
|
139
139
|
class LernaProjectFactory {
|
|
140
140
|
constructor(project) {
|
|
141
141
|
this.project = project;
|
package/lib/types.d.ts
CHANGED
|
@@ -1,26 +1,5 @@
|
|
|
1
1
|
import { javascript, typescript } from 'projen';
|
|
2
|
-
export interface
|
|
3
|
-
/**
|
|
4
|
-
* (experimental) Use TypeScript for your projenrc file (`.projenrc.ts`).
|
|
5
|
-
*
|
|
6
|
-
* @default false
|
|
7
|
-
* @experimental
|
|
8
|
-
*/
|
|
9
|
-
readonly projenrcTs?: boolean;
|
|
10
|
-
/**
|
|
11
|
-
* Consolidate sub projects doc files
|
|
12
|
-
*
|
|
13
|
-
* @default false
|
|
14
|
-
* @experimental
|
|
15
|
-
*/
|
|
16
|
-
readonly docgen?: boolean;
|
|
17
|
-
/**
|
|
18
|
-
* (experimental) Docs directory.
|
|
19
|
-
*
|
|
20
|
-
* @default "docs"
|
|
21
|
-
* @experimental
|
|
22
|
-
*/
|
|
23
|
-
readonly docsDirectory?: string;
|
|
2
|
+
export interface LernaCommonProjectOptions {
|
|
24
3
|
/**
|
|
25
4
|
* (experimental) Flag to run tasks only for the packages that has changes since last release
|
|
26
5
|
*
|
|
@@ -56,7 +35,30 @@ export interface LernaProjectOptions extends javascript.NodeProjectOptions {
|
|
|
56
35
|
*/
|
|
57
36
|
readonly taskCustomizations?: TaskCustomizations;
|
|
58
37
|
}
|
|
59
|
-
export interface
|
|
38
|
+
export interface LernaProjectOptions extends javascript.NodeProjectOptions, LernaCommonProjectOptions {
|
|
39
|
+
/**
|
|
40
|
+
* (experimental) Use TypeScript for your projenrc file (`.projenrc.ts`).
|
|
41
|
+
*
|
|
42
|
+
* @default false
|
|
43
|
+
* @experimental
|
|
44
|
+
*/
|
|
45
|
+
readonly projenrcTs?: boolean;
|
|
46
|
+
/**
|
|
47
|
+
* Consolidate sub projects doc files
|
|
48
|
+
*
|
|
49
|
+
* @default false
|
|
50
|
+
* @experimental
|
|
51
|
+
*/
|
|
52
|
+
readonly docgen?: boolean;
|
|
53
|
+
/**
|
|
54
|
+
* (experimental) Docs directory.
|
|
55
|
+
*
|
|
56
|
+
* @default "docs"
|
|
57
|
+
* @experimental
|
|
58
|
+
*/
|
|
59
|
+
readonly docsDirectory?: string;
|
|
60
|
+
}
|
|
61
|
+
export interface LernaTypescriptProjectOptions extends typescript.TypeScriptProjectOptions, LernaCommonProjectOptions {
|
|
60
62
|
/**
|
|
61
63
|
* Whether the project root package has source code.
|
|
62
64
|
*
|
package/lib/types.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidHlwZXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvdHlwZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7amF2YXNjcmlwdCwgdHlwZXNjcmlwdH0gZnJvbSAncHJvamVuJ1xuXG5leHBvcnQgaW50ZXJmYWNlIExlcm5hQ29tbW9uUHJvamVjdE9wdGlvbnMge1xuICAvKipcbiAgICogKGV4cGVyaW1lbnRhbCkgRmxhZyB0byBydW4gdGFza3Mgb25seSBmb3IgdGhlIHBhY2thZ2VzIHRoYXQgaGFzIGNoYW5nZXMgc2luY2UgbGFzdCByZWxlYXNlXG4gICAqXG4gICAqIEBkZWZhdWx0IGZhbHNlXG4gICAqIEBleHBlcmltZW50YWxcbiAgICovXG4gIHJlYWRvbmx5IHNpbmNlTGFzdFJlbGVhc2U/OiBib29sZWFuO1xuXG4gIC8qKlxuICAgKiBXaGV0aGVyIG9yIG5vdCB0byB1c2UgTnggZm9yIHRhc2sgc2NoZWR1bGluZ1xuICAgKiBodHRwczovL2xlcm5hLmpzLm9yZy9kb2NzL2xlcm5hLWFuZC1ueFxuICAgKlxuICAgKiBAZGVmYXVsdCBmYWxzZVxuICAgKi9cbiAgcmVhZG9ubHkgdXNlTng/OiBib29sZWFuO1xuXG4gIC8qKlxuICAgKiBXaGV0aGVyIG9yIG5vdCB0byB1c2UgaW5kZXBlbmRlbnQgdmVyc2lvbmluZyBmb3Igc3ViLXByb2plY3RzXG4gICAqIGh0dHBzOi8vbGVybmEuanMub3JnL2RvY3MvZmVhdHVyZXMvdmVyc2lvbi1hbmQtcHVibGlzaCNpbmRlcGVuZGVudC1tb2RlXG4gICAqXG4gICAqIEBkZWZhdWx0IGZhbHNlXG4gICAqL1xuICByZWFkb25seSBpbmRlcGVuZGVudE1vZGU/OiBib29sZWFuO1xuXG4gIC8qKlxuICAgKiBXaGV0aGVyIG9yIG5vdCB0byB1c2Ugd29ya3NwYWNlcyBpbiB0aGUgcGFja2FnZS5qc29uIGZpbGVcbiAgICogT3RoZXJ3aXNlLCB3aWxsIGFkZCBwYWNrYWdlcyB0byBsZXJuYS5qc29uXG4gICAqXG4gICAqIEBkZWZhdWx0IGZhbHNlXG4gICAqL1xuICByZWFkb25seSB1c2VXb3Jrc3BhY2VzPzogYm9vbGVhbjtcblxuICAvKipcbiAgICogS2V5IHZhbHVlIHBhaXIgb2YgdGFzayBuYW1lIGFuZCBUYXNrQ3VzdG9taXphdGlvbiB0byBjdXN0b21pemUgdGhlIGxlcm5hIHJ1biBzdGVwIGFkZGVkIHRvIHRoZSB0YXNrLlxuICAgKlxuICAgKiBAZGVmYXVsdCB7fSBcIk5vIHRhc2sgY3VzdG9taXphdGlvbnNcIlxuICAgKi9cbiAgcmVhZG9ubHkgdGFza0N1c3RvbWl6YXRpb25zPzogVGFza0N1c3RvbWl6YXRpb25zO1xuXG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgTGVybmFQcm9qZWN0T3B0aW9ucyBleHRlbmRzIGphdmFzY3JpcHQuTm9kZVByb2plY3RPcHRpb25zLCBMZXJuYUNvbW1vblByb2plY3RPcHRpb25zIHtcbiAgLyoqXG4gICAqIChleHBlcmltZW50YWwpIFVzZSBUeXBlU2NyaXB0IGZvciB5b3VyIHByb2plbnJjIGZpbGUgKGAucHJvamVucmMudHNgKS5cbiAgICpcbiAgICogQGRlZmF1bHQgZmFsc2VcbiAgICogQGV4cGVyaW1lbnRhbFxuICAgKi9cbiAgcmVhZG9ubHkgcHJvamVucmNUcz86IGJvb2xlYW47XG5cbiAgLyoqXG4gICAqIENvbnNvbGlkYXRlIHN1YiBwcm9qZWN0cyBkb2MgZmlsZXNcbiAgICpcbiAgICogQGRlZmF1bHQgZmFsc2VcbiAgICogQGV4cGVyaW1lbnRhbFxuICAgKi9cbiAgcmVhZG9ubHkgZG9jZ2VuPzogYm9vbGVhbjtcblxuICAvKipcbiAgICogKGV4cGVyaW1lbnRhbCkgRG9jcyBkaXJlY3RvcnkuXG4gICAqXG4gICAqIEBkZWZhdWx0IFwiZG9jc1wiXG4gICAqIEBleHBlcmltZW50YWxcbiAgICovXG4gIHJlYWRvbmx5IGRvY3NEaXJlY3Rvcnk/OiBzdHJpbmc7XG59XG5cbmV4cG9ydCBpbnRlcmZhY2UgTGVybmFUeXBlc2NyaXB0UHJvamVjdE9wdGlvbnMgZXh0ZW5kcyB0eXBlc2NyaXB0LlR5cGVTY3JpcHRQcm9qZWN0T3B0aW9ucywgTGVybmFDb21tb25Qcm9qZWN0T3B0aW9ucyB7XG4gIC8qKlxuICAgKiBXaGV0aGVyIHRoZSBwcm9qZWN0IHJvb3QgcGFja2FnZSBoYXMgc291cmNlIGNvZGUuXG4gICAqXG4gICAqIFdoZW4gc2V0IHRvIGBmYWxzZWAsIHJlbW92ZXMgdHlwZXNjcmlwdCBjb21waWxhdGlvbiBmcm9tIHRoZSBjb21waWxlIHN0ZXAgZm9yIHRoZSByb290IHByb2plY3QuXG4gICAqXG4gICAqIEBkZWZhdWx0IGZhbHNlXG4gICAqL1xuICByZWFkb25seSBoYXNSb290U291cmNlQ29kZT86IGJvb2xlYW47XG59XG5cbmV4cG9ydCB0eXBlIFRhc2tDdXN0b21pemF0aW9ucyA9IHtbdGFza05hbWU6IHN0cmluZ106IFRhc2tDdXN0b21pemF0aW9ufVxuXG5leHBvcnQgaW50ZXJmYWNlIFRhc2tDdXN0b21pemF0aW9uIHtcbiAgLyoqXG4gICAqIFdoZXRoZXIgdG8gYWRkIGEgbGVybmEgcnVuIHN0ZXAgdG8gdGhlIHRhc2tcbiAgICpcbiAgICogQGRlZmF1bHQgdHJ1ZVxuICAgKi9cbiAgcmVhZG9ubHkgYWRkTGVybmFTdGVwPzogYm9vbGVhbjtcblxuICAvKipcbiAgICogTGlzdCBvZiBnbG9iIHBhdHRlcm5zIG1hdGNoaW5nIHRoZSBuYW1lIG9mIHBhY2thZ2VzIHRvIGluY2x1ZGUgaW4gdGhlIGxlcm5hIHJ1biBzdGVwXG4gICAqXG4gICAqIEBkZWZhdWx0IFtdXG4gICAqL1xuICByZWFkb25seSBpbmNsdWRlPzogc3RyaW5nW107XG5cbiAgLyoqXG4gICAqIExpc3Qgb2YgZ2xvYiBwYXR0ZXJucyBtYXRjaGluZyB0aGUgbmFtZSBvZiBwYWNrYWdlcyB0byBleGNsdWRlIGZyb20gdGhlIGxlcm5hIHJ1biBzdGVwXG4gICAqXG4gICAqIEBkZWZhdWx0IFtdXG4gICAqL1xuICByZWFkb25seSBleGNsdWRlPzogc3RyaW5nW107XG5cbiAgLyoqXG4gICAqIChleHBlcmltZW50YWwpIEZsYWcgdG8gcnVuIHRhc2tzIG9ubHkgZm9yIHRoZSBwYWNrYWdlcyB0aGF0IGhhcyBjaGFuZ2VzIHNpbmNlIGxhc3QgcmVsZWFzZVxuICAgKlxuICAgKiBAZGVmYXVsdCBcIlZhbHVlIHBhc3NlZCBpbiBwcm9qZWN0IG9wdGlvbnNcIlxuICAgKi9cbiAgcmVhZG9ubHkgc2luY2VMYXN0UmVsZWFzZT86IGJvb2xlYW47XG59Il19
|
package/package.json
CHANGED
|
@@ -57,14 +57,14 @@
|
|
|
57
57
|
"jsii-docgen": "^3.8.31",
|
|
58
58
|
"jsii-pacmak": "^1.75.0",
|
|
59
59
|
"npm-check-updates": "^16",
|
|
60
|
-
"projen": "^0.67.
|
|
60
|
+
"projen": "^0.67.60",
|
|
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.67.
|
|
67
|
+
"projen": "^0.67.60"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"commander": "^6.2.1",
|
|
@@ -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.14",
|
|
86
86
|
"jest": {
|
|
87
87
|
"testMatch": [
|
|
88
88
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|