@hallcor/pulumi-projen-project-types 0.0.59 → 0.0.61
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 +514 -272
- package/API.md +280 -24
- package/lib/github-credentials.js +1 -1
- package/lib/pulumi-esc-setup.d.ts +42 -0
- package/lib/pulumi-esc-setup.js +80 -9
- package/lib/python.js +1 -1
- package/lib/release.js +7 -3
- package/lib/structs/python-options/component-options.d.ts +12 -0
- package/lib/structs/python-options/component-options.js +1 -1
- package/lib/structs/release-options/tag-release-options.d.ts +17 -8
- package/lib/structs/release-options/tag-release-options.js +1 -1
- package/lib/structs/typescript-options/component-options.d.ts +16 -1
- package/lib/structs/typescript-options/component-options.js +1 -1
- package/lib/structs/typescript-options/project-props.d.ts +16 -1
- package/lib/structs/typescript-options/project-props.js +1 -1
- package/lib/typescript-base.js +1 -1
- package/lib/typescript.js +1 -1
- package/package.json +14 -13
package/.jsii
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"constructs": "^10.4.2",
|
|
11
|
-
"projen": "^0.
|
|
11
|
+
"projen": "^0.98.29"
|
|
12
12
|
},
|
|
13
13
|
"dependencyClosure": {
|
|
14
14
|
"constructs": {
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
"projen.javascript": {},
|
|
52
52
|
"projen.javascript.biome_config": {},
|
|
53
53
|
"projen.python": {},
|
|
54
|
+
"projen.python.uvConfig": {},
|
|
54
55
|
"projen.release": {},
|
|
55
56
|
"projen.typescript": {},
|
|
56
57
|
"projen.vscode": {},
|
|
@@ -82,7 +83,7 @@
|
|
|
82
83
|
"stability": "stable"
|
|
83
84
|
},
|
|
84
85
|
"homepage": "https://github.com/corymhall/pulumi-projen-project-types.git",
|
|
85
|
-
"jsiiVersion": "5.
|
|
86
|
+
"jsiiVersion": "5.9.20 (build 6e2b13a)",
|
|
86
87
|
"license": "Apache-2.0",
|
|
87
88
|
"metadata": {
|
|
88
89
|
"jsii": {
|
|
@@ -483,6 +484,72 @@
|
|
|
483
484
|
],
|
|
484
485
|
"symbolId": "src/structs/typescript-options/eslint-options:EslintOptions"
|
|
485
486
|
},
|
|
487
|
+
"@hallcor/pulumi-projen-project-types.ExportEnvironmentVariables": {
|
|
488
|
+
"assembly": "@hallcor/pulumi-projen-project-types",
|
|
489
|
+
"docs": {
|
|
490
|
+
"stability": "stable",
|
|
491
|
+
"summary": "Configuration for exporting environment variables from ESC."
|
|
492
|
+
},
|
|
493
|
+
"fqn": "@hallcor/pulumi-projen-project-types.ExportEnvironmentVariables",
|
|
494
|
+
"kind": "class",
|
|
495
|
+
"locationInModule": {
|
|
496
|
+
"filename": "src/pulumi-esc-setup.ts",
|
|
497
|
+
"line": 16
|
|
498
|
+
},
|
|
499
|
+
"methods": [
|
|
500
|
+
{
|
|
501
|
+
"docs": {
|
|
502
|
+
"remarks": "This is the default.",
|
|
503
|
+
"stability": "stable",
|
|
504
|
+
"summary": "Do not export environment variables."
|
|
505
|
+
},
|
|
506
|
+
"locationInModule": {
|
|
507
|
+
"filename": "src/pulumi-esc-setup.ts",
|
|
508
|
+
"line": 22
|
|
509
|
+
},
|
|
510
|
+
"name": "disabled",
|
|
511
|
+
"returns": {
|
|
512
|
+
"type": {
|
|
513
|
+
"fqn": "@hallcor/pulumi-projen-project-types.ExportEnvironmentVariables"
|
|
514
|
+
}
|
|
515
|
+
},
|
|
516
|
+
"static": true
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"docs": {
|
|
520
|
+
"remarks": "Each entry should follow the ESC action mapping format, for example\n`GITHUB_TOKEN=PULUMI_BOT_TOKEN` or `AWS_ACCESS_KEY_ID`.",
|
|
521
|
+
"stability": "stable",
|
|
522
|
+
"summary": "Provide explicit mappings to export."
|
|
523
|
+
},
|
|
524
|
+
"locationInModule": {
|
|
525
|
+
"filename": "src/pulumi-esc-setup.ts",
|
|
526
|
+
"line": 32
|
|
527
|
+
},
|
|
528
|
+
"name": "fromMapping",
|
|
529
|
+
"parameters": [
|
|
530
|
+
{
|
|
531
|
+
"name": "mapping",
|
|
532
|
+
"type": {
|
|
533
|
+
"collection": {
|
|
534
|
+
"elementtype": {
|
|
535
|
+
"primitive": "string"
|
|
536
|
+
},
|
|
537
|
+
"kind": "array"
|
|
538
|
+
}
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
],
|
|
542
|
+
"returns": {
|
|
543
|
+
"type": {
|
|
544
|
+
"fqn": "@hallcor/pulumi-projen-project-types.ExportEnvironmentVariables"
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
"static": true
|
|
548
|
+
}
|
|
549
|
+
],
|
|
550
|
+
"name": "ExportEnvironmentVariables",
|
|
551
|
+
"symbolId": "src/pulumi-esc-setup:ExportEnvironmentVariables"
|
|
552
|
+
},
|
|
486
553
|
"@hallcor/pulumi-projen-project-types.GitTagPublishOptions": {
|
|
487
554
|
"assembly": "@hallcor/pulumi-projen-project-types",
|
|
488
555
|
"datatype": true,
|
|
@@ -1441,7 +1508,7 @@
|
|
|
1441
1508
|
"kind": "interface",
|
|
1442
1509
|
"locationInModule": {
|
|
1443
1510
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1444
|
-
"line":
|
|
1511
|
+
"line": 128
|
|
1445
1512
|
},
|
|
1446
1513
|
"name": "PulumiAuthOptions",
|
|
1447
1514
|
"properties": [
|
|
@@ -1454,7 +1521,7 @@
|
|
|
1454
1521
|
"immutable": true,
|
|
1455
1522
|
"locationInModule": {
|
|
1456
1523
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1457
|
-
"line":
|
|
1524
|
+
"line": 132
|
|
1458
1525
|
},
|
|
1459
1526
|
"name": "organization",
|
|
1460
1527
|
"type": {
|
|
@@ -1471,7 +1538,7 @@
|
|
|
1471
1538
|
"immutable": true,
|
|
1472
1539
|
"locationInModule": {
|
|
1473
1540
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1474
|
-
"line":
|
|
1541
|
+
"line": 140
|
|
1475
1542
|
},
|
|
1476
1543
|
"name": "requestedToken",
|
|
1477
1544
|
"optional": true,
|
|
@@ -1492,7 +1559,7 @@
|
|
|
1492
1559
|
"kind": "interface",
|
|
1493
1560
|
"locationInModule": {
|
|
1494
1561
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1495
|
-
"line":
|
|
1562
|
+
"line": 54
|
|
1496
1563
|
},
|
|
1497
1564
|
"name": "PulumiEscActionOptions",
|
|
1498
1565
|
"properties": [
|
|
@@ -1505,7 +1572,7 @@
|
|
|
1505
1572
|
"immutable": true,
|
|
1506
1573
|
"locationInModule": {
|
|
1507
1574
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1508
|
-
"line":
|
|
1575
|
+
"line": 58
|
|
1509
1576
|
},
|
|
1510
1577
|
"name": "environment",
|
|
1511
1578
|
"type": {
|
|
@@ -1515,14 +1582,52 @@
|
|
|
1515
1582
|
{
|
|
1516
1583
|
"abstract": true,
|
|
1517
1584
|
"docs": {
|
|
1518
|
-
"default": "
|
|
1585
|
+
"default": "- Use the default Pulumi Cloud URL",
|
|
1519
1586
|
"stability": "stable",
|
|
1587
|
+
"summary": "The Pulumi Cloud URL to target."
|
|
1588
|
+
},
|
|
1589
|
+
"immutable": true,
|
|
1590
|
+
"locationInModule": {
|
|
1591
|
+
"filename": "src/pulumi-esc-setup.ts",
|
|
1592
|
+
"line": 83
|
|
1593
|
+
},
|
|
1594
|
+
"name": "cloudUrl",
|
|
1595
|
+
"optional": true,
|
|
1596
|
+
"type": {
|
|
1597
|
+
"primitive": "string"
|
|
1598
|
+
}
|
|
1599
|
+
},
|
|
1600
|
+
{
|
|
1601
|
+
"abstract": true,
|
|
1602
|
+
"docs": {
|
|
1603
|
+
"default": "ExportEnvironmentVariables.disabled()",
|
|
1604
|
+
"remarks": "Can also be an array of mapping strings to explicitly control which variables\nare exported (joined with newlines for the action input).",
|
|
1605
|
+
"stability": "stable",
|
|
1606
|
+
"summary": "Whether to export environment variables from ESC."
|
|
1607
|
+
},
|
|
1608
|
+
"immutable": true,
|
|
1609
|
+
"locationInModule": {
|
|
1610
|
+
"filename": "src/pulumi-esc-setup.ts",
|
|
1611
|
+
"line": 76
|
|
1612
|
+
},
|
|
1613
|
+
"name": "exportEnvironmentVariables",
|
|
1614
|
+
"optional": true,
|
|
1615
|
+
"type": {
|
|
1616
|
+
"fqn": "@hallcor/pulumi-projen-project-types.ExportEnvironmentVariables"
|
|
1617
|
+
}
|
|
1618
|
+
},
|
|
1619
|
+
{
|
|
1620
|
+
"abstract": true,
|
|
1621
|
+
"docs": {
|
|
1622
|
+
"default": "all keys from the environment will be injected",
|
|
1623
|
+
"deprecated": "use `exportEnvironmentVariables` instead",
|
|
1624
|
+
"stability": "deprecated",
|
|
1520
1625
|
"summary": "list of keys to inject into the current action/workflow environment."
|
|
1521
1626
|
},
|
|
1522
1627
|
"immutable": true,
|
|
1523
1628
|
"locationInModule": {
|
|
1524
1629
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1525
|
-
"line":
|
|
1630
|
+
"line": 66
|
|
1526
1631
|
},
|
|
1527
1632
|
"name": "keys",
|
|
1528
1633
|
"optional": true,
|
|
@@ -1551,7 +1656,7 @@
|
|
|
1551
1656
|
"kind": "interface",
|
|
1552
1657
|
"locationInModule": {
|
|
1553
1658
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1554
|
-
"line":
|
|
1659
|
+
"line": 143
|
|
1555
1660
|
},
|
|
1556
1661
|
"name": "PulumiEscPersonalAccessTokenOptions",
|
|
1557
1662
|
"properties": [
|
|
@@ -1564,7 +1669,7 @@
|
|
|
1564
1669
|
"immutable": true,
|
|
1565
1670
|
"locationInModule": {
|
|
1566
1671
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1567
|
-
"line":
|
|
1672
|
+
"line": 148
|
|
1568
1673
|
},
|
|
1569
1674
|
"name": "secret",
|
|
1570
1675
|
"optional": true,
|
|
@@ -1584,7 +1689,7 @@
|
|
|
1584
1689
|
"kind": "class",
|
|
1585
1690
|
"locationInModule": {
|
|
1586
1691
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1587
|
-
"line":
|
|
1692
|
+
"line": 151
|
|
1588
1693
|
},
|
|
1589
1694
|
"methods": [
|
|
1590
1695
|
{
|
|
@@ -1594,7 +1699,7 @@
|
|
|
1594
1699
|
},
|
|
1595
1700
|
"locationInModule": {
|
|
1596
1701
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1597
|
-
"line":
|
|
1702
|
+
"line": 206
|
|
1598
1703
|
},
|
|
1599
1704
|
"name": "fromOidcAuth",
|
|
1600
1705
|
"parameters": [
|
|
@@ -1621,7 +1726,7 @@
|
|
|
1621
1726
|
},
|
|
1622
1727
|
"locationInModule": {
|
|
1623
1728
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1624
|
-
"line":
|
|
1729
|
+
"line": 160
|
|
1625
1730
|
},
|
|
1626
1731
|
"name": "fromPersonalAccessToken",
|
|
1627
1732
|
"parameters": [
|
|
@@ -1649,7 +1754,7 @@
|
|
|
1649
1754
|
"immutable": true,
|
|
1650
1755
|
"locationInModule": {
|
|
1651
1756
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1652
|
-
"line":
|
|
1757
|
+
"line": 276
|
|
1653
1758
|
},
|
|
1654
1759
|
"name": "setupSteps",
|
|
1655
1760
|
"type": {
|
|
@@ -1668,7 +1773,7 @@
|
|
|
1668
1773
|
"immutable": true,
|
|
1669
1774
|
"locationInModule": {
|
|
1670
1775
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1671
|
-
"line":
|
|
1776
|
+
"line": 280
|
|
1672
1777
|
},
|
|
1673
1778
|
"name": "keys",
|
|
1674
1779
|
"optional": true,
|
|
@@ -1688,7 +1793,7 @@
|
|
|
1688
1793
|
"immutable": true,
|
|
1689
1794
|
"locationInModule": {
|
|
1690
1795
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1691
|
-
"line":
|
|
1796
|
+
"line": 272
|
|
1692
1797
|
},
|
|
1693
1798
|
"name": "permissions",
|
|
1694
1799
|
"optional": true,
|
|
@@ -1751,7 +1856,7 @@
|
|
|
1751
1856
|
"kind": "class",
|
|
1752
1857
|
"locationInModule": {
|
|
1753
1858
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1754
|
-
"line":
|
|
1859
|
+
"line": 92
|
|
1755
1860
|
},
|
|
1756
1861
|
"methods": [
|
|
1757
1862
|
{
|
|
@@ -1761,7 +1866,7 @@
|
|
|
1761
1866
|
},
|
|
1762
1867
|
"locationInModule": {
|
|
1763
1868
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1764
|
-
"line":
|
|
1869
|
+
"line": 96
|
|
1765
1870
|
},
|
|
1766
1871
|
"name": "fromOrgToken",
|
|
1767
1872
|
"parameters": [
|
|
@@ -1786,7 +1891,7 @@
|
|
|
1786
1891
|
},
|
|
1787
1892
|
"locationInModule": {
|
|
1788
1893
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1789
|
-
"line":
|
|
1894
|
+
"line": 106
|
|
1790
1895
|
},
|
|
1791
1896
|
"name": "fromPersonalToken",
|
|
1792
1897
|
"parameters": [
|
|
@@ -1815,7 +1920,7 @@
|
|
|
1815
1920
|
},
|
|
1816
1921
|
"locationInModule": {
|
|
1817
1922
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1818
|
-
"line":
|
|
1923
|
+
"line": 113
|
|
1819
1924
|
},
|
|
1820
1925
|
"name": "fromTeamToken",
|
|
1821
1926
|
"parameters": [
|
|
@@ -1843,7 +1948,7 @@
|
|
|
1843
1948
|
},
|
|
1844
1949
|
"locationInModule": {
|
|
1845
1950
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1846
|
-
"line":
|
|
1951
|
+
"line": 125
|
|
1847
1952
|
},
|
|
1848
1953
|
"name": "tokenType",
|
|
1849
1954
|
"type": {
|
|
@@ -1859,7 +1964,7 @@
|
|
|
1859
1964
|
},
|
|
1860
1965
|
"locationInModule": {
|
|
1861
1966
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1862
|
-
"line":
|
|
1967
|
+
"line": 124
|
|
1863
1968
|
},
|
|
1864
1969
|
"name": "scope",
|
|
1865
1970
|
"optional": true,
|
|
@@ -1879,7 +1984,7 @@
|
|
|
1879
1984
|
"kind": "enum",
|
|
1880
1985
|
"locationInModule": {
|
|
1881
1986
|
"filename": "src/pulumi-esc-setup.ts",
|
|
1882
|
-
"line":
|
|
1987
|
+
"line": 86
|
|
1883
1988
|
},
|
|
1884
1989
|
"members": [
|
|
1885
1990
|
{
|
|
@@ -1996,7 +2101,7 @@
|
|
|
1996
2101
|
"immutable": true,
|
|
1997
2102
|
"locationInModule": {
|
|
1998
2103
|
"filename": "src/structs/python-options/component-options.ts",
|
|
1999
|
-
"line":
|
|
2104
|
+
"line": 173
|
|
2000
2105
|
},
|
|
2001
2106
|
"name": "authorEmail",
|
|
2002
2107
|
"type": {
|
|
@@ -2013,7 +2118,7 @@
|
|
|
2013
2118
|
"immutable": true,
|
|
2014
2119
|
"locationInModule": {
|
|
2015
2120
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2016
|
-
"line":
|
|
2121
|
+
"line": 167
|
|
2017
2122
|
},
|
|
2018
2123
|
"name": "authorName",
|
|
2019
2124
|
"type": {
|
|
@@ -2031,7 +2136,7 @@
|
|
|
2031
2136
|
"immutable": true,
|
|
2032
2137
|
"locationInModule": {
|
|
2033
2138
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2034
|
-
"line":
|
|
2139
|
+
"line": 117
|
|
2035
2140
|
},
|
|
2036
2141
|
"name": "moduleName",
|
|
2037
2142
|
"type": {
|
|
@@ -2051,7 +2156,7 @@
|
|
|
2051
2156
|
"immutable": true,
|
|
2052
2157
|
"locationInModule": {
|
|
2053
2158
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2054
|
-
"line":
|
|
2159
|
+
"line": 328
|
|
2055
2160
|
},
|
|
2056
2161
|
"name": "name",
|
|
2057
2162
|
"type": {
|
|
@@ -2071,7 +2176,7 @@
|
|
|
2071
2176
|
"immutable": true,
|
|
2072
2177
|
"locationInModule": {
|
|
2073
2178
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2074
|
-
"line":
|
|
2179
|
+
"line": 161
|
|
2075
2180
|
},
|
|
2076
2181
|
"name": "version",
|
|
2077
2182
|
"type": {
|
|
@@ -2088,7 +2193,7 @@
|
|
|
2088
2193
|
"immutable": true,
|
|
2089
2194
|
"locationInModule": {
|
|
2090
2195
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2091
|
-
"line":
|
|
2196
|
+
"line": 252
|
|
2092
2197
|
},
|
|
2093
2198
|
"name": "autoApproveOptions",
|
|
2094
2199
|
"optional": true,
|
|
@@ -2107,7 +2212,7 @@
|
|
|
2107
2212
|
"immutable": true,
|
|
2108
2213
|
"locationInModule": {
|
|
2109
2214
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2110
|
-
"line":
|
|
2215
|
+
"line": 246
|
|
2111
2216
|
},
|
|
2112
2217
|
"name": "autoMerge",
|
|
2113
2218
|
"optional": true,
|
|
@@ -2126,7 +2231,7 @@
|
|
|
2126
2231
|
"immutable": true,
|
|
2127
2232
|
"locationInModule": {
|
|
2128
2233
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2129
|
-
"line":
|
|
2234
|
+
"line": 238
|
|
2130
2235
|
},
|
|
2131
2236
|
"name": "autoMergeOptions",
|
|
2132
2237
|
"optional": true,
|
|
@@ -2143,7 +2248,7 @@
|
|
|
2143
2248
|
"immutable": true,
|
|
2144
2249
|
"locationInModule": {
|
|
2145
2250
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2146
|
-
"line":
|
|
2251
|
+
"line": 332
|
|
2147
2252
|
},
|
|
2148
2253
|
"name": "buildWorkflowOptions",
|
|
2149
2254
|
"optional": true,
|
|
@@ -2160,7 +2265,7 @@
|
|
|
2160
2265
|
"immutable": true,
|
|
2161
2266
|
"locationInModule": {
|
|
2162
2267
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2163
|
-
"line":
|
|
2268
|
+
"line": 154
|
|
2164
2269
|
},
|
|
2165
2270
|
"name": "classifiers",
|
|
2166
2271
|
"optional": true,
|
|
@@ -2183,7 +2288,7 @@
|
|
|
2183
2288
|
"immutable": true,
|
|
2184
2289
|
"locationInModule": {
|
|
2185
2290
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2186
|
-
"line":
|
|
2291
|
+
"line": 230
|
|
2187
2292
|
},
|
|
2188
2293
|
"name": "clobber",
|
|
2189
2294
|
"optional": true,
|
|
@@ -2201,7 +2306,7 @@
|
|
|
2201
2306
|
"immutable": true,
|
|
2202
2307
|
"locationInModule": {
|
|
2203
2308
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2204
|
-
"line":
|
|
2309
|
+
"line": 321
|
|
2205
2310
|
},
|
|
2206
2311
|
"name": "commitGenerated",
|
|
2207
2312
|
"optional": true,
|
|
@@ -2219,7 +2324,7 @@
|
|
|
2219
2324
|
"immutable": true,
|
|
2220
2325
|
"locationInModule": {
|
|
2221
2326
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2222
|
-
"line":
|
|
2327
|
+
"line": 350
|
|
2223
2328
|
},
|
|
2224
2329
|
"name": "componentName",
|
|
2225
2330
|
"optional": true,
|
|
@@ -2241,7 +2346,7 @@
|
|
|
2241
2346
|
"immutable": true,
|
|
2242
2347
|
"locationInModule": {
|
|
2243
2348
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2244
|
-
"line":
|
|
2349
|
+
"line": 110
|
|
2245
2350
|
},
|
|
2246
2351
|
"name": "deps",
|
|
2247
2352
|
"optional": true,
|
|
@@ -2266,7 +2371,7 @@
|
|
|
2266
2371
|
"immutable": true,
|
|
2267
2372
|
"locationInModule": {
|
|
2268
2373
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2269
|
-
"line":
|
|
2374
|
+
"line": 149
|
|
2270
2375
|
},
|
|
2271
2376
|
"name": "description",
|
|
2272
2377
|
"optional": true,
|
|
@@ -2284,7 +2389,7 @@
|
|
|
2284
2389
|
"immutable": true,
|
|
2285
2390
|
"locationInModule": {
|
|
2286
2391
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2287
|
-
"line":
|
|
2392
|
+
"line": 224
|
|
2288
2393
|
},
|
|
2289
2394
|
"name": "devContainer",
|
|
2290
2395
|
"optional": true,
|
|
@@ -2306,7 +2411,7 @@
|
|
|
2306
2411
|
"immutable": true,
|
|
2307
2412
|
"locationInModule": {
|
|
2308
2413
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2309
|
-
"line":
|
|
2414
|
+
"line": 100
|
|
2310
2415
|
},
|
|
2311
2416
|
"name": "devDeps",
|
|
2312
2417
|
"optional": true,
|
|
@@ -2329,7 +2434,7 @@
|
|
|
2329
2434
|
"immutable": true,
|
|
2330
2435
|
"locationInModule": {
|
|
2331
2436
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2332
|
-
"line":
|
|
2437
|
+
"line": 218
|
|
2333
2438
|
},
|
|
2334
2439
|
"name": "githubOptions",
|
|
2335
2440
|
"optional": true,
|
|
@@ -2347,7 +2452,7 @@
|
|
|
2347
2452
|
"immutable": true,
|
|
2348
2453
|
"locationInModule": {
|
|
2349
2454
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2350
|
-
"line":
|
|
2455
|
+
"line": 344
|
|
2351
2456
|
},
|
|
2352
2457
|
"name": "gitIdentity",
|
|
2353
2458
|
"optional": true,
|
|
@@ -2364,7 +2469,7 @@
|
|
|
2364
2469
|
"immutable": true,
|
|
2365
2470
|
"locationInModule": {
|
|
2366
2471
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2367
|
-
"line":
|
|
2472
|
+
"line": 315
|
|
2368
2473
|
},
|
|
2369
2474
|
"name": "gitIgnoreOptions",
|
|
2370
2475
|
"optional": true,
|
|
@@ -2381,7 +2486,7 @@
|
|
|
2381
2486
|
"immutable": true,
|
|
2382
2487
|
"locationInModule": {
|
|
2383
2488
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2384
|
-
"line":
|
|
2489
|
+
"line": 310
|
|
2385
2490
|
},
|
|
2386
2491
|
"name": "gitOptions",
|
|
2387
2492
|
"optional": true,
|
|
@@ -2399,7 +2504,7 @@
|
|
|
2399
2504
|
"immutable": true,
|
|
2400
2505
|
"locationInModule": {
|
|
2401
2506
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2402
|
-
"line":
|
|
2507
|
+
"line": 212
|
|
2403
2508
|
},
|
|
2404
2509
|
"name": "gitpod",
|
|
2405
2510
|
"optional": true,
|
|
@@ -2416,7 +2521,7 @@
|
|
|
2416
2521
|
"immutable": true,
|
|
2417
2522
|
"locationInModule": {
|
|
2418
2523
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2419
|
-
"line":
|
|
2524
|
+
"line": 143
|
|
2420
2525
|
},
|
|
2421
2526
|
"name": "homepage",
|
|
2422
2527
|
"optional": true,
|
|
@@ -2433,7 +2538,7 @@
|
|
|
2433
2538
|
"immutable": true,
|
|
2434
2539
|
"locationInModule": {
|
|
2435
2540
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2436
|
-
"line":
|
|
2541
|
+
"line": 138
|
|
2437
2542
|
},
|
|
2438
2543
|
"name": "license",
|
|
2439
2544
|
"optional": true,
|
|
@@ -2451,7 +2556,7 @@
|
|
|
2451
2556
|
"immutable": true,
|
|
2452
2557
|
"locationInModule": {
|
|
2453
2558
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2454
|
-
"line":
|
|
2559
|
+
"line": 305
|
|
2455
2560
|
},
|
|
2456
2561
|
"name": "logging",
|
|
2457
2562
|
"optional": true,
|
|
@@ -2470,7 +2575,7 @@
|
|
|
2470
2575
|
"immutable": true,
|
|
2471
2576
|
"locationInModule": {
|
|
2472
2577
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2473
|
-
"line":
|
|
2578
|
+
"line": 299
|
|
2474
2579
|
},
|
|
2475
2580
|
"name": "outdir",
|
|
2476
2581
|
"optional": true,
|
|
@@ -2487,7 +2592,7 @@
|
|
|
2487
2592
|
"immutable": true,
|
|
2488
2593
|
"locationInModule": {
|
|
2489
2594
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2490
|
-
"line":
|
|
2595
|
+
"line": 133
|
|
2491
2596
|
},
|
|
2492
2597
|
"name": "packageName",
|
|
2493
2598
|
"optional": true,
|
|
@@ -2504,7 +2609,7 @@
|
|
|
2504
2609
|
"immutable": true,
|
|
2505
2610
|
"locationInModule": {
|
|
2506
2611
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2507
|
-
"line":
|
|
2612
|
+
"line": 288
|
|
2508
2613
|
},
|
|
2509
2614
|
"name": "parent",
|
|
2510
2615
|
"optional": true,
|
|
@@ -2523,7 +2628,7 @@
|
|
|
2523
2628
|
"immutable": true,
|
|
2524
2629
|
"locationInModule": {
|
|
2525
2630
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2526
|
-
"line":
|
|
2631
|
+
"line": 283
|
|
2527
2632
|
},
|
|
2528
2633
|
"name": "projenCommand",
|
|
2529
2634
|
"optional": true,
|
|
@@ -2541,7 +2646,7 @@
|
|
|
2541
2646
|
"immutable": true,
|
|
2542
2647
|
"locationInModule": {
|
|
2543
2648
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2544
|
-
"line":
|
|
2649
|
+
"line": 206
|
|
2545
2650
|
},
|
|
2546
2651
|
"name": "projenCredentials",
|
|
2547
2652
|
"optional": true,
|
|
@@ -2560,7 +2665,7 @@
|
|
|
2560
2665
|
"immutable": true,
|
|
2561
2666
|
"locationInModule": {
|
|
2562
2667
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2563
|
-
"line":
|
|
2668
|
+
"line": 90
|
|
2564
2669
|
},
|
|
2565
2670
|
"name": "projenrcJs",
|
|
2566
2671
|
"optional": true,
|
|
@@ -2578,7 +2683,7 @@
|
|
|
2578
2683
|
"immutable": true,
|
|
2579
2684
|
"locationInModule": {
|
|
2580
2685
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2581
|
-
"line":
|
|
2686
|
+
"line": 276
|
|
2582
2687
|
},
|
|
2583
2688
|
"name": "projenrcJson",
|
|
2584
2689
|
"optional": true,
|
|
@@ -2596,7 +2701,7 @@
|
|
|
2596
2701
|
"immutable": true,
|
|
2597
2702
|
"locationInModule": {
|
|
2598
2703
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2599
|
-
"line":
|
|
2704
|
+
"line": 270
|
|
2600
2705
|
},
|
|
2601
2706
|
"name": "projenrcJsonOptions",
|
|
2602
2707
|
"optional": true,
|
|
@@ -2614,7 +2719,7 @@
|
|
|
2614
2719
|
"immutable": true,
|
|
2615
2720
|
"locationInModule": {
|
|
2616
2721
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2617
|
-
"line":
|
|
2722
|
+
"line": 82
|
|
2618
2723
|
},
|
|
2619
2724
|
"name": "projenrcJsOptions",
|
|
2620
2725
|
"optional": true,
|
|
@@ -2633,7 +2738,7 @@
|
|
|
2633
2738
|
"immutable": true,
|
|
2634
2739
|
"locationInModule": {
|
|
2635
2740
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2636
|
-
"line":
|
|
2741
|
+
"line": 76
|
|
2637
2742
|
},
|
|
2638
2743
|
"name": "projenrcPython",
|
|
2639
2744
|
"optional": true,
|
|
@@ -2651,7 +2756,7 @@
|
|
|
2651
2756
|
"immutable": true,
|
|
2652
2757
|
"locationInModule": {
|
|
2653
2758
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2654
|
-
"line":
|
|
2759
|
+
"line": 68
|
|
2655
2760
|
},
|
|
2656
2761
|
"name": "projenrcPythonOptions",
|
|
2657
2762
|
"optional": true,
|
|
@@ -2670,7 +2775,7 @@
|
|
|
2670
2775
|
"immutable": true,
|
|
2671
2776
|
"locationInModule": {
|
|
2672
2777
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2673
|
-
"line":
|
|
2778
|
+
"line": 62
|
|
2674
2779
|
},
|
|
2675
2780
|
"name": "projenrcTs",
|
|
2676
2781
|
"optional": true,
|
|
@@ -2688,7 +2793,7 @@
|
|
|
2688
2793
|
"immutable": true,
|
|
2689
2794
|
"locationInModule": {
|
|
2690
2795
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2691
|
-
"line":
|
|
2796
|
+
"line": 54
|
|
2692
2797
|
},
|
|
2693
2798
|
"name": "projenrcTsOptions",
|
|
2694
2799
|
"optional": true,
|
|
@@ -2704,7 +2809,7 @@
|
|
|
2704
2809
|
"immutable": true,
|
|
2705
2810
|
"locationInModule": {
|
|
2706
2811
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2707
|
-
"line":
|
|
2812
|
+
"line": 345
|
|
2708
2813
|
},
|
|
2709
2814
|
"name": "pulumiPythonOptions",
|
|
2710
2815
|
"optional": true,
|
|
@@ -2725,7 +2830,7 @@
|
|
|
2725
2830
|
"immutable": true,
|
|
2726
2831
|
"locationInModule": {
|
|
2727
2832
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2728
|
-
"line":
|
|
2833
|
+
"line": 48
|
|
2729
2834
|
},
|
|
2730
2835
|
"name": "pytest",
|
|
2731
2836
|
"optional": true,
|
|
@@ -2743,7 +2848,7 @@
|
|
|
2743
2848
|
"immutable": true,
|
|
2744
2849
|
"locationInModule": {
|
|
2745
2850
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2746
|
-
"line":
|
|
2851
|
+
"line": 41
|
|
2747
2852
|
},
|
|
2748
2853
|
"name": "pytestOptions",
|
|
2749
2854
|
"optional": true,
|
|
@@ -2761,7 +2866,7 @@
|
|
|
2761
2866
|
"immutable": true,
|
|
2762
2867
|
"locationInModule": {
|
|
2763
2868
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2764
|
-
"line":
|
|
2869
|
+
"line": 123
|
|
2765
2870
|
},
|
|
2766
2871
|
"name": "pythonExec",
|
|
2767
2872
|
"optional": true,
|
|
@@ -2779,7 +2884,7 @@
|
|
|
2779
2884
|
"immutable": true,
|
|
2780
2885
|
"locationInModule": {
|
|
2781
2886
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2782
|
-
"line":
|
|
2887
|
+
"line": 200
|
|
2783
2888
|
},
|
|
2784
2889
|
"name": "readme",
|
|
2785
2890
|
"optional": true,
|
|
@@ -2797,7 +2902,7 @@
|
|
|
2797
2902
|
"immutable": true,
|
|
2798
2903
|
"locationInModule": {
|
|
2799
2904
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2800
|
-
"line":
|
|
2905
|
+
"line": 337
|
|
2801
2906
|
},
|
|
2802
2907
|
"name": "release",
|
|
2803
2908
|
"optional": true,
|
|
@@ -2815,7 +2920,7 @@
|
|
|
2815
2920
|
"immutable": true,
|
|
2816
2921
|
"locationInModule": {
|
|
2817
2922
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2818
|
-
"line":
|
|
2923
|
+
"line": 356
|
|
2819
2924
|
},
|
|
2820
2925
|
"name": "releaseTrigger",
|
|
2821
2926
|
"optional": true,
|
|
@@ -2833,7 +2938,7 @@
|
|
|
2833
2938
|
"immutable": true,
|
|
2834
2939
|
"locationInModule": {
|
|
2835
2940
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2836
|
-
"line":
|
|
2941
|
+
"line": 264
|
|
2837
2942
|
},
|
|
2838
2943
|
"name": "renovatebot",
|
|
2839
2944
|
"optional": true,
|
|
@@ -2851,7 +2956,7 @@
|
|
|
2851
2956
|
"immutable": true,
|
|
2852
2957
|
"locationInModule": {
|
|
2853
2958
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2854
|
-
"line":
|
|
2959
|
+
"line": 258
|
|
2855
2960
|
},
|
|
2856
2961
|
"name": "renovatebotOptions",
|
|
2857
2962
|
"optional": true,
|
|
@@ -2869,7 +2974,7 @@
|
|
|
2869
2974
|
"immutable": true,
|
|
2870
2975
|
"locationInModule": {
|
|
2871
2976
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2872
|
-
"line":
|
|
2977
|
+
"line": 35
|
|
2873
2978
|
},
|
|
2874
2979
|
"name": "sample",
|
|
2875
2980
|
"optional": true,
|
|
@@ -2888,7 +2993,7 @@
|
|
|
2888
2993
|
"immutable": true,
|
|
2889
2994
|
"locationInModule": {
|
|
2890
2995
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2891
|
-
"line":
|
|
2996
|
+
"line": 29
|
|
2892
2997
|
},
|
|
2893
2998
|
"name": "sampleTestdir",
|
|
2894
2999
|
"optional": true,
|
|
@@ -2909,7 +3014,7 @@
|
|
|
2909
3014
|
"immutable": true,
|
|
2910
3015
|
"locationInModule": {
|
|
2911
3016
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2912
|
-
"line":
|
|
3017
|
+
"line": 22
|
|
2913
3018
|
},
|
|
2914
3019
|
"name": "setuptools",
|
|
2915
3020
|
"optional": true,
|
|
@@ -2928,7 +3033,7 @@
|
|
|
2928
3033
|
"immutable": true,
|
|
2929
3034
|
"locationInModule": {
|
|
2930
3035
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2931
|
-
"line":
|
|
3036
|
+
"line": 194
|
|
2932
3037
|
},
|
|
2933
3038
|
"name": "stale",
|
|
2934
3039
|
"optional": true,
|
|
@@ -2947,7 +3052,7 @@
|
|
|
2947
3052
|
"immutable": true,
|
|
2948
3053
|
"locationInModule": {
|
|
2949
3054
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2950
|
-
"line":
|
|
3055
|
+
"line": 187
|
|
2951
3056
|
},
|
|
2952
3057
|
"name": "staleOptions",
|
|
2953
3058
|
"optional": true,
|
|
@@ -2955,6 +3060,44 @@
|
|
|
2955
3060
|
"fqn": "projen.github.StaleOptions"
|
|
2956
3061
|
}
|
|
2957
3062
|
},
|
|
3063
|
+
{
|
|
3064
|
+
"abstract": true,
|
|
3065
|
+
"docs": {
|
|
3066
|
+
"custom": {
|
|
3067
|
+
"featured": "true"
|
|
3068
|
+
},
|
|
3069
|
+
"default": "false",
|
|
3070
|
+
"stability": "experimental",
|
|
3071
|
+
"summary": "Use uv to manage your project dependencies, virtual environment, and (optional) packaging/publishing."
|
|
3072
|
+
},
|
|
3073
|
+
"immutable": true,
|
|
3074
|
+
"locationInModule": {
|
|
3075
|
+
"filename": "src/structs/python-options/component-options.ts",
|
|
3076
|
+
"line": 15
|
|
3077
|
+
},
|
|
3078
|
+
"name": "uv",
|
|
3079
|
+
"optional": true,
|
|
3080
|
+
"type": {
|
|
3081
|
+
"primitive": "boolean"
|
|
3082
|
+
}
|
|
3083
|
+
},
|
|
3084
|
+
{
|
|
3085
|
+
"abstract": true,
|
|
3086
|
+
"docs": {
|
|
3087
|
+
"stability": "experimental",
|
|
3088
|
+
"summary": "Additional options to set for uv if using uv."
|
|
3089
|
+
},
|
|
3090
|
+
"immutable": true,
|
|
3091
|
+
"locationInModule": {
|
|
3092
|
+
"filename": "src/structs/python-options/component-options.ts",
|
|
3093
|
+
"line": 128
|
|
3094
|
+
},
|
|
3095
|
+
"name": "uvOptions",
|
|
3096
|
+
"optional": true,
|
|
3097
|
+
"type": {
|
|
3098
|
+
"fqn": "projen.python.UvOptions"
|
|
3099
|
+
}
|
|
3100
|
+
},
|
|
2958
3101
|
{
|
|
2959
3102
|
"abstract": true,
|
|
2960
3103
|
"docs": {
|
|
@@ -2966,7 +3109,7 @@
|
|
|
2966
3109
|
"immutable": true,
|
|
2967
3110
|
"locationInModule": {
|
|
2968
3111
|
"filename": "src/structs/python-options/component-options.ts",
|
|
2969
|
-
"line":
|
|
3112
|
+
"line": 180
|
|
2970
3113
|
},
|
|
2971
3114
|
"name": "vscode",
|
|
2972
3115
|
"optional": true,
|
|
@@ -3156,7 +3299,7 @@
|
|
|
3156
3299
|
"immutable": true,
|
|
3157
3300
|
"locationInModule": {
|
|
3158
3301
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3159
|
-
"line":
|
|
3302
|
+
"line": 65
|
|
3160
3303
|
},
|
|
3161
3304
|
"name": "artifactsDirectory",
|
|
3162
3305
|
"type": {
|
|
@@ -3173,30 +3316,13 @@
|
|
|
3173
3316
|
"immutable": true,
|
|
3174
3317
|
"locationInModule": {
|
|
3175
3318
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3176
|
-
"line":
|
|
3319
|
+
"line": 59
|
|
3177
3320
|
},
|
|
3178
3321
|
"name": "branch",
|
|
3179
3322
|
"type": {
|
|
3180
3323
|
"primitive": "string"
|
|
3181
3324
|
}
|
|
3182
3325
|
},
|
|
3183
|
-
{
|
|
3184
|
-
"abstract": true,
|
|
3185
|
-
"docs": {
|
|
3186
|
-
"remarks": "Artifacts are\nexpected to reside under `artifactsDirectory` (defaults to `dist/`) once\nbuild is complete.",
|
|
3187
|
-
"stability": "experimental",
|
|
3188
|
-
"summary": "The task to execute in order to create the release artifacts."
|
|
3189
|
-
},
|
|
3190
|
-
"immutable": true,
|
|
3191
|
-
"locationInModule": {
|
|
3192
|
-
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3193
|
-
"line": 41
|
|
3194
|
-
},
|
|
3195
|
-
"name": "task",
|
|
3196
|
-
"type": {
|
|
3197
|
-
"fqn": "projen.Task"
|
|
3198
|
-
}
|
|
3199
|
-
},
|
|
3200
3326
|
{
|
|
3201
3327
|
"abstract": true,
|
|
3202
3328
|
"docs": {
|
|
@@ -3206,7 +3332,7 @@
|
|
|
3206
3332
|
"immutable": true,
|
|
3207
3333
|
"locationInModule": {
|
|
3208
3334
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3209
|
-
"line":
|
|
3335
|
+
"line": 50
|
|
3210
3336
|
},
|
|
3211
3337
|
"name": "versionFile",
|
|
3212
3338
|
"type": {
|
|
@@ -3224,7 +3350,7 @@
|
|
|
3224
3350
|
"immutable": true,
|
|
3225
3351
|
"locationInModule": {
|
|
3226
3352
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3227
|
-
"line":
|
|
3353
|
+
"line": 272
|
|
3228
3354
|
},
|
|
3229
3355
|
"name": "bumpPackage",
|
|
3230
3356
|
"optional": true,
|
|
@@ -3242,7 +3368,7 @@
|
|
|
3242
3368
|
"immutable": true,
|
|
3243
3369
|
"locationInModule": {
|
|
3244
3370
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3245
|
-
"line":
|
|
3371
|
+
"line": 45
|
|
3246
3372
|
},
|
|
3247
3373
|
"name": "githubRelease",
|
|
3248
3374
|
"optional": true,
|
|
@@ -3260,7 +3386,7 @@
|
|
|
3260
3386
|
"immutable": true,
|
|
3261
3387
|
"locationInModule": {
|
|
3262
3388
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3263
|
-
"line":
|
|
3389
|
+
"line": 283
|
|
3264
3390
|
},
|
|
3265
3391
|
"name": "gitIdentity",
|
|
3266
3392
|
"optional": true,
|
|
@@ -3277,7 +3403,7 @@
|
|
|
3277
3403
|
"immutable": true,
|
|
3278
3404
|
"locationInModule": {
|
|
3279
3405
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3280
|
-
"line":
|
|
3406
|
+
"line": 276
|
|
3281
3407
|
},
|
|
3282
3408
|
"name": "gitTagPublishOptions",
|
|
3283
3409
|
"optional": true,
|
|
@@ -3295,7 +3421,7 @@
|
|
|
3295
3421
|
"immutable": true,
|
|
3296
3422
|
"locationInModule": {
|
|
3297
3423
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3298
|
-
"line":
|
|
3424
|
+
"line": 265
|
|
3299
3425
|
},
|
|
3300
3426
|
"name": "jsiiReleaseVersion",
|
|
3301
3427
|
"optional": true,
|
|
@@ -3314,7 +3440,7 @@
|
|
|
3314
3440
|
"immutable": true,
|
|
3315
3441
|
"locationInModule": {
|
|
3316
3442
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3317
|
-
"line":
|
|
3443
|
+
"line": 259
|
|
3318
3444
|
},
|
|
3319
3445
|
"name": "majorVersion",
|
|
3320
3446
|
"optional": true,
|
|
@@ -3333,7 +3459,7 @@
|
|
|
3333
3459
|
"immutable": true,
|
|
3334
3460
|
"locationInModule": {
|
|
3335
3461
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3336
|
-
"line":
|
|
3462
|
+
"line": 251
|
|
3337
3463
|
},
|
|
3338
3464
|
"name": "minMajorVersion",
|
|
3339
3465
|
"optional": true,
|
|
@@ -3352,7 +3478,7 @@
|
|
|
3352
3478
|
"immutable": true,
|
|
3353
3479
|
"locationInModule": {
|
|
3354
3480
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3355
|
-
"line":
|
|
3481
|
+
"line": 241
|
|
3356
3482
|
},
|
|
3357
3483
|
"name": "nextVersionCommand",
|
|
3358
3484
|
"optional": true,
|
|
@@ -3371,7 +3497,7 @@
|
|
|
3371
3497
|
"immutable": true,
|
|
3372
3498
|
"locationInModule": {
|
|
3373
3499
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3374
|
-
"line":
|
|
3500
|
+
"line": 217
|
|
3375
3501
|
},
|
|
3376
3502
|
"name": "npmDistTag",
|
|
3377
3503
|
"optional": true,
|
|
@@ -3389,7 +3515,7 @@
|
|
|
3389
3515
|
"immutable": true,
|
|
3390
3516
|
"locationInModule": {
|
|
3391
3517
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3392
|
-
"line":
|
|
3518
|
+
"line": 209
|
|
3393
3519
|
},
|
|
3394
3520
|
"name": "postBuildSteps",
|
|
3395
3521
|
"optional": true,
|
|
@@ -3412,7 +3538,7 @@
|
|
|
3412
3538
|
"immutable": true,
|
|
3413
3539
|
"locationInModule": {
|
|
3414
3540
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3415
|
-
"line":
|
|
3541
|
+
"line": 203
|
|
3416
3542
|
},
|
|
3417
3543
|
"name": "prerelease",
|
|
3418
3544
|
"optional": true,
|
|
@@ -3430,7 +3556,7 @@
|
|
|
3430
3556
|
"immutable": true,
|
|
3431
3557
|
"locationInModule": {
|
|
3432
3558
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3433
|
-
"line":
|
|
3559
|
+
"line": 197
|
|
3434
3560
|
},
|
|
3435
3561
|
"name": "publishDryRun",
|
|
3436
3562
|
"optional": true,
|
|
@@ -3449,7 +3575,7 @@
|
|
|
3449
3575
|
"immutable": true,
|
|
3450
3576
|
"locationInModule": {
|
|
3451
3577
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3452
|
-
"line":
|
|
3578
|
+
"line": 191
|
|
3453
3579
|
},
|
|
3454
3580
|
"name": "publishTasks",
|
|
3455
3581
|
"optional": true,
|
|
@@ -3467,7 +3593,7 @@
|
|
|
3467
3593
|
"immutable": true,
|
|
3468
3594
|
"locationInModule": {
|
|
3469
3595
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3470
|
-
"line":
|
|
3596
|
+
"line": 183
|
|
3471
3597
|
},
|
|
3472
3598
|
"name": "releasableCommits",
|
|
3473
3599
|
"optional": true,
|
|
@@ -3486,7 +3612,7 @@
|
|
|
3486
3612
|
"immutable": true,
|
|
3487
3613
|
"locationInModule": {
|
|
3488
3614
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3489
|
-
"line":
|
|
3615
|
+
"line": 177
|
|
3490
3616
|
},
|
|
3491
3617
|
"name": "releaseBranches",
|
|
3492
3618
|
"optional": true,
|
|
@@ -3510,7 +3636,7 @@
|
|
|
3510
3636
|
"immutable": true,
|
|
3511
3637
|
"locationInModule": {
|
|
3512
3638
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3513
|
-
"line":
|
|
3639
|
+
"line": 164
|
|
3514
3640
|
},
|
|
3515
3641
|
"name": "releaseEnvironment",
|
|
3516
3642
|
"optional": true,
|
|
@@ -3529,7 +3655,7 @@
|
|
|
3529
3655
|
"immutable": true,
|
|
3530
3656
|
"locationInModule": {
|
|
3531
3657
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3532
|
-
"line":
|
|
3658
|
+
"line": 153
|
|
3533
3659
|
},
|
|
3534
3660
|
"name": "releaseEveryCommit",
|
|
3535
3661
|
"optional": true,
|
|
@@ -3547,7 +3673,7 @@
|
|
|
3547
3673
|
"immutable": true,
|
|
3548
3674
|
"locationInModule": {
|
|
3549
3675
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3550
|
-
"line":
|
|
3676
|
+
"line": 146
|
|
3551
3677
|
},
|
|
3552
3678
|
"name": "releaseFailureIssue",
|
|
3553
3679
|
"optional": true,
|
|
@@ -3566,7 +3692,7 @@
|
|
|
3566
3692
|
"immutable": true,
|
|
3567
3693
|
"locationInModule": {
|
|
3568
3694
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3569
|
-
"line":
|
|
3695
|
+
"line": 140
|
|
3570
3696
|
},
|
|
3571
3697
|
"name": "releaseFailureIssueLabel",
|
|
3572
3698
|
"optional": true,
|
|
@@ -3585,7 +3711,7 @@
|
|
|
3585
3711
|
"immutable": true,
|
|
3586
3712
|
"locationInModule": {
|
|
3587
3713
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3588
|
-
"line":
|
|
3714
|
+
"line": 133
|
|
3589
3715
|
},
|
|
3590
3716
|
"name": "releaseSchedule",
|
|
3591
3717
|
"optional": true,
|
|
@@ -3604,7 +3730,7 @@
|
|
|
3604
3730
|
"immutable": true,
|
|
3605
3731
|
"locationInModule": {
|
|
3606
3732
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3607
|
-
"line":
|
|
3733
|
+
"line": 126
|
|
3608
3734
|
},
|
|
3609
3735
|
"name": "releaseTagPrefix",
|
|
3610
3736
|
"optional": true,
|
|
@@ -3622,7 +3748,7 @@
|
|
|
3622
3748
|
"immutable": true,
|
|
3623
3749
|
"locationInModule": {
|
|
3624
3750
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3625
|
-
"line":
|
|
3751
|
+
"line": 116
|
|
3626
3752
|
},
|
|
3627
3753
|
"name": "releaseTrigger",
|
|
3628
3754
|
"optional": true,
|
|
@@ -3640,7 +3766,7 @@
|
|
|
3640
3766
|
"immutable": true,
|
|
3641
3767
|
"locationInModule": {
|
|
3642
3768
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3643
|
-
"line":
|
|
3769
|
+
"line": 110
|
|
3644
3770
|
},
|
|
3645
3771
|
"name": "releaseWorkflowEnv",
|
|
3646
3772
|
"optional": true,
|
|
@@ -3663,7 +3789,7 @@
|
|
|
3663
3789
|
"immutable": true,
|
|
3664
3790
|
"locationInModule": {
|
|
3665
3791
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3666
|
-
"line":
|
|
3792
|
+
"line": 104
|
|
3667
3793
|
},
|
|
3668
3794
|
"name": "releaseWorkflowName",
|
|
3669
3795
|
"optional": true,
|
|
@@ -3680,7 +3806,7 @@
|
|
|
3680
3806
|
"immutable": true,
|
|
3681
3807
|
"locationInModule": {
|
|
3682
3808
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3683
|
-
"line":
|
|
3809
|
+
"line": 98
|
|
3684
3810
|
},
|
|
3685
3811
|
"name": "releaseWorkflowSetupSteps",
|
|
3686
3812
|
"optional": true,
|
|
@@ -3693,6 +3819,48 @@
|
|
|
3693
3819
|
}
|
|
3694
3820
|
}
|
|
3695
3821
|
},
|
|
3822
|
+
{
|
|
3823
|
+
"abstract": true,
|
|
3824
|
+
"docs": {
|
|
3825
|
+
"deprecated": "Use `tasks` instead",
|
|
3826
|
+
"remarks": "Artifacts are\nexpected to reside under `artifactsDirectory` (defaults to `dist/`) once\nbuild is complete.",
|
|
3827
|
+
"stability": "deprecated",
|
|
3828
|
+
"summary": "The task to execute in order to create the release artifacts."
|
|
3829
|
+
},
|
|
3830
|
+
"immutable": true,
|
|
3831
|
+
"locationInModule": {
|
|
3832
|
+
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3833
|
+
"line": 39
|
|
3834
|
+
},
|
|
3835
|
+
"name": "task",
|
|
3836
|
+
"optional": true,
|
|
3837
|
+
"type": {
|
|
3838
|
+
"fqn": "projen.Task"
|
|
3839
|
+
}
|
|
3840
|
+
},
|
|
3841
|
+
{
|
|
3842
|
+
"abstract": true,
|
|
3843
|
+
"docs": {
|
|
3844
|
+
"remarks": "Artifacts are\nexpected to reside under `artifactsDirectory` (defaults to `dist/`) once\nbuild is complete.",
|
|
3845
|
+
"stability": "experimental",
|
|
3846
|
+
"summary": "The tasks to execute in order to create the release artifacts."
|
|
3847
|
+
},
|
|
3848
|
+
"immutable": true,
|
|
3849
|
+
"locationInModule": {
|
|
3850
|
+
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3851
|
+
"line": 30
|
|
3852
|
+
},
|
|
3853
|
+
"name": "tasks",
|
|
3854
|
+
"optional": true,
|
|
3855
|
+
"type": {
|
|
3856
|
+
"collection": {
|
|
3857
|
+
"elementtype": {
|
|
3858
|
+
"fqn": "projen.Task"
|
|
3859
|
+
},
|
|
3860
|
+
"kind": "array"
|
|
3861
|
+
}
|
|
3862
|
+
}
|
|
3863
|
+
},
|
|
3696
3864
|
{
|
|
3697
3865
|
"abstract": true,
|
|
3698
3866
|
"docs": {
|
|
@@ -3704,7 +3872,7 @@
|
|
|
3704
3872
|
"immutable": true,
|
|
3705
3873
|
"locationInModule": {
|
|
3706
3874
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3707
|
-
"line":
|
|
3875
|
+
"line": 93
|
|
3708
3876
|
},
|
|
3709
3877
|
"name": "versionrcOptions",
|
|
3710
3878
|
"optional": true,
|
|
@@ -3727,7 +3895,7 @@
|
|
|
3727
3895
|
"immutable": true,
|
|
3728
3896
|
"locationInModule": {
|
|
3729
3897
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3730
|
-
"line":
|
|
3898
|
+
"line": 86
|
|
3731
3899
|
},
|
|
3732
3900
|
"name": "workflowContainerImage",
|
|
3733
3901
|
"optional": true,
|
|
@@ -3786,7 +3954,7 @@
|
|
|
3786
3954
|
"immutable": true,
|
|
3787
3955
|
"locationInModule": {
|
|
3788
3956
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3789
|
-
"line":
|
|
3957
|
+
"line": 80
|
|
3790
3958
|
},
|
|
3791
3959
|
"name": "workflowRunsOn",
|
|
3792
3960
|
"optional": true,
|
|
@@ -3812,7 +3980,7 @@
|
|
|
3812
3980
|
"immutable": true,
|
|
3813
3981
|
"locationInModule": {
|
|
3814
3982
|
"filename": "src/structs/release-options/tag-release-options.ts",
|
|
3815
|
-
"line":
|
|
3983
|
+
"line": 72
|
|
3816
3984
|
},
|
|
3817
3985
|
"name": "workflowRunsOnGroup",
|
|
3818
3986
|
"optional": true,
|
|
@@ -3944,6 +4112,43 @@
|
|
|
3944
4112
|
"primitive": "string"
|
|
3945
4113
|
}
|
|
3946
4114
|
},
|
|
4115
|
+
{
|
|
4116
|
+
"abstract": true,
|
|
4117
|
+
"docs": {
|
|
4118
|
+
"default": "false",
|
|
4119
|
+
"remarks": "When enabled, creates an \"audit\" task that checks for known security vulnerabilities\nin dependencies. By default, runs during every build and checks for \"high\" severity\nvulnerabilities or above in all dependencies (including dev dependencies).",
|
|
4120
|
+
"stability": "experimental",
|
|
4121
|
+
"summary": "Run security audit on dependencies."
|
|
4122
|
+
},
|
|
4123
|
+
"immutable": true,
|
|
4124
|
+
"locationInModule": {
|
|
4125
|
+
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4126
|
+
"line": 655
|
|
4127
|
+
},
|
|
4128
|
+
"name": "auditDeps",
|
|
4129
|
+
"optional": true,
|
|
4130
|
+
"type": {
|
|
4131
|
+
"primitive": "boolean"
|
|
4132
|
+
}
|
|
4133
|
+
},
|
|
4134
|
+
{
|
|
4135
|
+
"abstract": true,
|
|
4136
|
+
"docs": {
|
|
4137
|
+
"default": "- default options",
|
|
4138
|
+
"stability": "experimental",
|
|
4139
|
+
"summary": "Security audit options."
|
|
4140
|
+
},
|
|
4141
|
+
"immutable": true,
|
|
4142
|
+
"locationInModule": {
|
|
4143
|
+
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4144
|
+
"line": 661
|
|
4145
|
+
},
|
|
4146
|
+
"name": "auditDepsOptions",
|
|
4147
|
+
"optional": true,
|
|
4148
|
+
"type": {
|
|
4149
|
+
"fqn": "projen.javascript.AuditOptions"
|
|
4150
|
+
}
|
|
4151
|
+
},
|
|
3947
4152
|
{
|
|
3948
4153
|
"abstract": true,
|
|
3949
4154
|
"docs": {
|
|
@@ -4041,7 +4246,7 @@
|
|
|
4041
4246
|
"immutable": true,
|
|
4042
4247
|
"locationInModule": {
|
|
4043
4248
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4044
|
-
"line":
|
|
4249
|
+
"line": 668
|
|
4045
4250
|
},
|
|
4046
4251
|
"name": "autoApproveUpgrades",
|
|
4047
4252
|
"optional": true,
|
|
@@ -4138,7 +4343,7 @@
|
|
|
4138
4343
|
"immutable": true,
|
|
4139
4344
|
"locationInModule": {
|
|
4140
4345
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4141
|
-
"line":
|
|
4346
|
+
"line": 674
|
|
4142
4347
|
},
|
|
4143
4348
|
"name": "biome",
|
|
4144
4349
|
"optional": true,
|
|
@@ -4156,7 +4361,7 @@
|
|
|
4156
4361
|
"immutable": true,
|
|
4157
4362
|
"locationInModule": {
|
|
4158
4363
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4159
|
-
"line":
|
|
4364
|
+
"line": 680
|
|
4160
4365
|
},
|
|
4161
4366
|
"name": "biomeOptions",
|
|
4162
4367
|
"optional": true,
|
|
@@ -4208,7 +4413,7 @@
|
|
|
4208
4413
|
"immutable": true,
|
|
4209
4414
|
"locationInModule": {
|
|
4210
4415
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4211
|
-
"line":
|
|
4416
|
+
"line": 686
|
|
4212
4417
|
},
|
|
4213
4418
|
"name": "buildWorkflow",
|
|
4214
4419
|
"optional": true,
|
|
@@ -4225,7 +4430,7 @@
|
|
|
4225
4430
|
"immutable": true,
|
|
4226
4431
|
"locationInModule": {
|
|
4227
4432
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4228
|
-
"line":
|
|
4433
|
+
"line": 691
|
|
4229
4434
|
},
|
|
4230
4435
|
"name": "buildWorkflowOptions",
|
|
4231
4436
|
"optional": true,
|
|
@@ -4284,7 +4489,7 @@
|
|
|
4284
4489
|
"immutable": true,
|
|
4285
4490
|
"locationInModule": {
|
|
4286
4491
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4287
|
-
"line":
|
|
4492
|
+
"line": 696
|
|
4288
4493
|
},
|
|
4289
4494
|
"name": "bundlerOptions",
|
|
4290
4495
|
"optional": true,
|
|
@@ -4321,7 +4526,7 @@
|
|
|
4321
4526
|
"immutable": true,
|
|
4322
4527
|
"locationInModule": {
|
|
4323
4528
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4324
|
-
"line":
|
|
4529
|
+
"line": 703
|
|
4325
4530
|
},
|
|
4326
4531
|
"name": "checkLicenses",
|
|
4327
4532
|
"optional": true,
|
|
@@ -4376,7 +4581,7 @@
|
|
|
4376
4581
|
"immutable": true,
|
|
4377
4582
|
"locationInModule": {
|
|
4378
4583
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4379
|
-
"line":
|
|
4584
|
+
"line": 709
|
|
4380
4585
|
},
|
|
4381
4586
|
"name": "codeCov",
|
|
4382
4587
|
"optional": true,
|
|
@@ -4394,7 +4599,7 @@
|
|
|
4394
4599
|
"immutable": true,
|
|
4395
4600
|
"locationInModule": {
|
|
4396
4601
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4397
|
-
"line":
|
|
4602
|
+
"line": 715
|
|
4398
4603
|
},
|
|
4399
4604
|
"name": "codeCovTokenSecret",
|
|
4400
4605
|
"optional": true,
|
|
@@ -4430,7 +4635,7 @@
|
|
|
4430
4635
|
"immutable": true,
|
|
4431
4636
|
"locationInModule": {
|
|
4432
4637
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4433
|
-
"line":
|
|
4638
|
+
"line": 721
|
|
4434
4639
|
},
|
|
4435
4640
|
"name": "copyrightOwner",
|
|
4436
4641
|
"optional": true,
|
|
@@ -4448,7 +4653,7 @@
|
|
|
4448
4653
|
"immutable": true,
|
|
4449
4654
|
"locationInModule": {
|
|
4450
4655
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4451
|
-
"line":
|
|
4656
|
+
"line": 727
|
|
4452
4657
|
},
|
|
4453
4658
|
"name": "copyrightPeriod",
|
|
4454
4659
|
"optional": true,
|
|
@@ -4467,7 +4672,7 @@
|
|
|
4467
4672
|
"immutable": true,
|
|
4468
4673
|
"locationInModule": {
|
|
4469
4674
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4470
|
-
"line":
|
|
4675
|
+
"line": 734
|
|
4471
4676
|
},
|
|
4472
4677
|
"name": "dependabot",
|
|
4473
4678
|
"optional": true,
|
|
@@ -4485,7 +4690,7 @@
|
|
|
4485
4690
|
"immutable": true,
|
|
4486
4691
|
"locationInModule": {
|
|
4487
4692
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4488
|
-
"line":
|
|
4693
|
+
"line": 740
|
|
4489
4694
|
},
|
|
4490
4695
|
"name": "dependabotOptions",
|
|
4491
4696
|
"optional": true,
|
|
@@ -4531,7 +4736,7 @@
|
|
|
4531
4736
|
"immutable": true,
|
|
4532
4737
|
"locationInModule": {
|
|
4533
4738
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4534
|
-
"line":
|
|
4739
|
+
"line": 747
|
|
4535
4740
|
},
|
|
4536
4741
|
"name": "depsUpgrade",
|
|
4537
4742
|
"optional": true,
|
|
@@ -4549,7 +4754,7 @@
|
|
|
4549
4754
|
"immutable": true,
|
|
4550
4755
|
"locationInModule": {
|
|
4551
4756
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4552
|
-
"line":
|
|
4757
|
+
"line": 753
|
|
4553
4758
|
},
|
|
4554
4759
|
"name": "depsUpgradeOptions",
|
|
4555
4760
|
"optional": true,
|
|
@@ -4633,7 +4838,7 @@
|
|
|
4633
4838
|
"immutable": true,
|
|
4634
4839
|
"locationInModule": {
|
|
4635
4840
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4636
|
-
"line":
|
|
4841
|
+
"line": 878
|
|
4637
4842
|
},
|
|
4638
4843
|
"name": "disableTsconfig",
|
|
4639
4844
|
"optional": true,
|
|
@@ -4651,7 +4856,7 @@
|
|
|
4651
4856
|
"immutable": true,
|
|
4652
4857
|
"locationInModule": {
|
|
4653
4858
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4654
|
-
"line":
|
|
4859
|
+
"line": 884
|
|
4655
4860
|
},
|
|
4656
4861
|
"name": "disableTsconfigDev",
|
|
4657
4862
|
"optional": true,
|
|
@@ -4669,7 +4874,7 @@
|
|
|
4669
4874
|
"immutable": true,
|
|
4670
4875
|
"locationInModule": {
|
|
4671
4876
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4672
|
-
"line":
|
|
4877
|
+
"line": 890
|
|
4673
4878
|
},
|
|
4674
4879
|
"name": "docgen",
|
|
4675
4880
|
"optional": true,
|
|
@@ -4687,7 +4892,7 @@
|
|
|
4687
4892
|
"immutable": true,
|
|
4688
4893
|
"locationInModule": {
|
|
4689
4894
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4690
|
-
"line":
|
|
4895
|
+
"line": 896
|
|
4691
4896
|
},
|
|
4692
4897
|
"name": "docsDirectory",
|
|
4693
4898
|
"optional": true,
|
|
@@ -4723,7 +4928,7 @@
|
|
|
4723
4928
|
"immutable": true,
|
|
4724
4929
|
"locationInModule": {
|
|
4725
4930
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4726
|
-
"line":
|
|
4931
|
+
"line": 902
|
|
4727
4932
|
},
|
|
4728
4933
|
"name": "entrypointTypes",
|
|
4729
4934
|
"optional": true,
|
|
@@ -4741,7 +4946,7 @@
|
|
|
4741
4946
|
"immutable": true,
|
|
4742
4947
|
"locationInModule": {
|
|
4743
4948
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4744
|
-
"line":
|
|
4949
|
+
"line": 908
|
|
4745
4950
|
},
|
|
4746
4951
|
"name": "eslint",
|
|
4747
4952
|
"optional": true,
|
|
@@ -4759,7 +4964,7 @@
|
|
|
4759
4964
|
"immutable": true,
|
|
4760
4965
|
"locationInModule": {
|
|
4761
4966
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4762
|
-
"line":
|
|
4967
|
+
"line": 914
|
|
4763
4968
|
},
|
|
4764
4969
|
"name": "eslintOptions",
|
|
4765
4970
|
"optional": true,
|
|
@@ -4795,7 +5000,7 @@
|
|
|
4795
5000
|
"immutable": true,
|
|
4796
5001
|
"locationInModule": {
|
|
4797
5002
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4798
|
-
"line":
|
|
5003
|
+
"line": 992
|
|
4799
5004
|
},
|
|
4800
5005
|
"name": "gitIdentity",
|
|
4801
5006
|
"optional": true,
|
|
@@ -4812,7 +5017,7 @@
|
|
|
4812
5017
|
"immutable": true,
|
|
4813
5018
|
"locationInModule": {
|
|
4814
5019
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4815
|
-
"line":
|
|
5020
|
+
"line": 758
|
|
4816
5021
|
},
|
|
4817
5022
|
"name": "gitignore",
|
|
4818
5023
|
"optional": true,
|
|
@@ -4904,7 +5109,7 @@
|
|
|
4904
5109
|
"immutable": true,
|
|
4905
5110
|
"locationInModule": {
|
|
4906
5111
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4907
|
-
"line":
|
|
5112
|
+
"line": 764
|
|
4908
5113
|
},
|
|
4909
5114
|
"name": "jest",
|
|
4910
5115
|
"optional": true,
|
|
@@ -4922,7 +5127,7 @@
|
|
|
4922
5127
|
"immutable": true,
|
|
4923
5128
|
"locationInModule": {
|
|
4924
5129
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4925
|
-
"line":
|
|
5130
|
+
"line": 770
|
|
4926
5131
|
},
|
|
4927
5132
|
"name": "jestOptions",
|
|
4928
5133
|
"optional": true,
|
|
@@ -4962,7 +5167,7 @@
|
|
|
4962
5167
|
"immutable": true,
|
|
4963
5168
|
"locationInModule": {
|
|
4964
5169
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
4965
|
-
"line":
|
|
5170
|
+
"line": 920
|
|
4966
5171
|
},
|
|
4967
5172
|
"name": "libdir",
|
|
4968
5173
|
"optional": true,
|
|
@@ -5167,7 +5372,7 @@
|
|
|
5167
5372
|
"immutable": true,
|
|
5168
5373
|
"locationInModule": {
|
|
5169
5374
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
5170
|
-
"line":
|
|
5375
|
+
"line": 776
|
|
5171
5376
|
},
|
|
5172
5377
|
"name": "npmignoreEnabled",
|
|
5173
5378
|
"optional": true,
|
|
@@ -5184,7 +5389,7 @@
|
|
|
5184
5389
|
"immutable": true,
|
|
5185
5390
|
"locationInModule": {
|
|
5186
5391
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
5187
|
-
"line":
|
|
5392
|
+
"line": 781
|
|
5188
5393
|
},
|
|
5189
5394
|
"name": "npmIgnoreOptions",
|
|
5190
5395
|
"optional": true,
|
|
@@ -5295,7 +5500,7 @@
|
|
|
5295
5500
|
"immutable": true,
|
|
5296
5501
|
"locationInModule": {
|
|
5297
5502
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
5298
|
-
"line":
|
|
5503
|
+
"line": 787
|
|
5299
5504
|
},
|
|
5300
5505
|
"name": "package",
|
|
5301
5506
|
"optional": true,
|
|
@@ -5469,7 +5674,7 @@
|
|
|
5469
5674
|
"immutable": true,
|
|
5470
5675
|
"locationInModule": {
|
|
5471
5676
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
5472
|
-
"line":
|
|
5677
|
+
"line": 793
|
|
5473
5678
|
},
|
|
5474
5679
|
"name": "prettier",
|
|
5475
5680
|
"optional": true,
|
|
@@ -5487,7 +5692,7 @@
|
|
|
5487
5692
|
"immutable": true,
|
|
5488
5693
|
"locationInModule": {
|
|
5489
5694
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
5490
|
-
"line":
|
|
5695
|
+
"line": 799
|
|
5491
5696
|
},
|
|
5492
5697
|
"name": "prettierOptions",
|
|
5493
5698
|
"optional": true,
|
|
@@ -5542,7 +5747,7 @@
|
|
|
5542
5747
|
"immutable": true,
|
|
5543
5748
|
"locationInModule": {
|
|
5544
5749
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
5545
|
-
"line":
|
|
5750
|
+
"line": 805
|
|
5546
5751
|
},
|
|
5547
5752
|
"name": "projenDevDependency",
|
|
5548
5753
|
"optional": true,
|
|
@@ -5560,7 +5765,7 @@
|
|
|
5560
5765
|
"immutable": true,
|
|
5561
5766
|
"locationInModule": {
|
|
5562
5767
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
5563
|
-
"line":
|
|
5768
|
+
"line": 811
|
|
5564
5769
|
},
|
|
5565
5770
|
"name": "projenrcJs",
|
|
5566
5771
|
"optional": true,
|
|
@@ -5614,7 +5819,7 @@
|
|
|
5614
5819
|
"immutable": true,
|
|
5615
5820
|
"locationInModule": {
|
|
5616
5821
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
5617
|
-
"line":
|
|
5822
|
+
"line": 817
|
|
5618
5823
|
},
|
|
5619
5824
|
"name": "projenrcJsOptions",
|
|
5620
5825
|
"optional": true,
|
|
@@ -5635,7 +5840,7 @@
|
|
|
5635
5840
|
"immutable": true,
|
|
5636
5841
|
"locationInModule": {
|
|
5637
5842
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
5638
|
-
"line":
|
|
5843
|
+
"line": 927
|
|
5639
5844
|
},
|
|
5640
5845
|
"name": "projenrcTs",
|
|
5641
5846
|
"optional": true,
|
|
@@ -5652,7 +5857,7 @@
|
|
|
5652
5857
|
"immutable": true,
|
|
5653
5858
|
"locationInModule": {
|
|
5654
5859
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
5655
|
-
"line":
|
|
5860
|
+
"line": 932
|
|
5656
5861
|
},
|
|
5657
5862
|
"name": "projenrcTsOptions",
|
|
5658
5863
|
"optional": true,
|
|
@@ -5670,7 +5875,7 @@
|
|
|
5670
5875
|
"immutable": true,
|
|
5671
5876
|
"locationInModule": {
|
|
5672
5877
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
5673
|
-
"line":
|
|
5878
|
+
"line": 823
|
|
5674
5879
|
},
|
|
5675
5880
|
"name": "projenVersion",
|
|
5676
5881
|
"optional": true,
|
|
@@ -5725,7 +5930,7 @@
|
|
|
5725
5930
|
"immutable": true,
|
|
5726
5931
|
"locationInModule": {
|
|
5727
5932
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
5728
|
-
"line":
|
|
5933
|
+
"line": 829
|
|
5729
5934
|
},
|
|
5730
5935
|
"name": "pullRequestTemplate",
|
|
5731
5936
|
"optional": true,
|
|
@@ -5743,7 +5948,7 @@
|
|
|
5743
5948
|
"immutable": true,
|
|
5744
5949
|
"locationInModule": {
|
|
5745
5950
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
5746
|
-
"line":
|
|
5951
|
+
"line": 835
|
|
5747
5952
|
},
|
|
5748
5953
|
"name": "pullRequestTemplateContents",
|
|
5749
5954
|
"optional": true,
|
|
@@ -5802,7 +6007,7 @@
|
|
|
5802
6007
|
"immutable": true,
|
|
5803
6008
|
"locationInModule": {
|
|
5804
6009
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
5805
|
-
"line":
|
|
6010
|
+
"line": 841
|
|
5806
6011
|
},
|
|
5807
6012
|
"name": "release",
|
|
5808
6013
|
"optional": true,
|
|
@@ -5919,7 +6124,7 @@
|
|
|
5919
6124
|
"immutable": true,
|
|
5920
6125
|
"locationInModule": {
|
|
5921
6126
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
5922
|
-
"line":
|
|
6127
|
+
"line": 847
|
|
5923
6128
|
},
|
|
5924
6129
|
"name": "releaseToNpm",
|
|
5925
6130
|
"optional": true,
|
|
@@ -6089,7 +6294,7 @@
|
|
|
6089
6294
|
"immutable": true,
|
|
6090
6295
|
"locationInModule": {
|
|
6091
6296
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
6092
|
-
"line":
|
|
6297
|
+
"line": 938
|
|
6093
6298
|
},
|
|
6094
6299
|
"name": "sampleCode",
|
|
6095
6300
|
"optional": true,
|
|
@@ -6130,7 +6335,7 @@
|
|
|
6130
6335
|
"immutable": true,
|
|
6131
6336
|
"locationInModule": {
|
|
6132
6337
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
6133
|
-
"line":
|
|
6338
|
+
"line": 944
|
|
6134
6339
|
},
|
|
6135
6340
|
"name": "srcdir",
|
|
6136
6341
|
"optional": true,
|
|
@@ -6204,7 +6409,7 @@
|
|
|
6204
6409
|
"immutable": true,
|
|
6205
6410
|
"locationInModule": {
|
|
6206
6411
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
6207
|
-
"line":
|
|
6412
|
+
"line": 954
|
|
6208
6413
|
},
|
|
6209
6414
|
"name": "testdir",
|
|
6210
6415
|
"optional": true,
|
|
@@ -6222,7 +6427,7 @@
|
|
|
6222
6427
|
"immutable": true,
|
|
6223
6428
|
"locationInModule": {
|
|
6224
6429
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
6225
|
-
"line":
|
|
6430
|
+
"line": 960
|
|
6226
6431
|
},
|
|
6227
6432
|
"name": "tsconfig",
|
|
6228
6433
|
"optional": true,
|
|
@@ -6240,7 +6445,7 @@
|
|
|
6240
6445
|
"immutable": true,
|
|
6241
6446
|
"locationInModule": {
|
|
6242
6447
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
6243
|
-
"line":
|
|
6448
|
+
"line": 966
|
|
6244
6449
|
},
|
|
6245
6450
|
"name": "tsconfigDev",
|
|
6246
6451
|
"optional": true,
|
|
@@ -6258,7 +6463,7 @@
|
|
|
6258
6463
|
"immutable": true,
|
|
6259
6464
|
"locationInModule": {
|
|
6260
6465
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
6261
|
-
"line":
|
|
6466
|
+
"line": 972
|
|
6262
6467
|
},
|
|
6263
6468
|
"name": "tsconfigDevFile",
|
|
6264
6469
|
"optional": true,
|
|
@@ -6275,7 +6480,7 @@
|
|
|
6275
6480
|
"immutable": true,
|
|
6276
6481
|
"locationInModule": {
|
|
6277
6482
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
6278
|
-
"line":
|
|
6483
|
+
"line": 977
|
|
6279
6484
|
},
|
|
6280
6485
|
"name": "tsJestOptions",
|
|
6281
6486
|
"optional": true,
|
|
@@ -6294,7 +6499,7 @@
|
|
|
6294
6499
|
"immutable": true,
|
|
6295
6500
|
"locationInModule": {
|
|
6296
6501
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
6297
|
-
"line":
|
|
6502
|
+
"line": 985
|
|
6298
6503
|
},
|
|
6299
6504
|
"name": "typescriptVersion",
|
|
6300
6505
|
"optional": true,
|
|
@@ -6355,7 +6560,7 @@
|
|
|
6355
6560
|
"immutable": true,
|
|
6356
6561
|
"locationInModule": {
|
|
6357
6562
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
6358
|
-
"line":
|
|
6563
|
+
"line": 853
|
|
6359
6564
|
},
|
|
6360
6565
|
"name": "workflowBootstrapSteps",
|
|
6361
6566
|
"optional": true,
|
|
@@ -6389,14 +6594,14 @@
|
|
|
6389
6594
|
{
|
|
6390
6595
|
"abstract": true,
|
|
6391
6596
|
"docs": {
|
|
6392
|
-
"default": "- GitHub Actions",
|
|
6597
|
+
"default": "- default GitHub Actions user",
|
|
6393
6598
|
"stability": "experimental",
|
|
6394
6599
|
"summary": "The git identity to use in workflows."
|
|
6395
6600
|
},
|
|
6396
6601
|
"immutable": true,
|
|
6397
6602
|
"locationInModule": {
|
|
6398
6603
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
6399
|
-
"line":
|
|
6604
|
+
"line": 859
|
|
6400
6605
|
},
|
|
6401
6606
|
"name": "workflowGitIdentity",
|
|
6402
6607
|
"optional": true,
|
|
@@ -6415,7 +6620,7 @@
|
|
|
6415
6620
|
"immutable": true,
|
|
6416
6621
|
"locationInModule": {
|
|
6417
6622
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
6418
|
-
"line":
|
|
6623
|
+
"line": 866
|
|
6419
6624
|
},
|
|
6420
6625
|
"name": "workflowNodeVersion",
|
|
6421
6626
|
"optional": true,
|
|
@@ -6433,7 +6638,7 @@
|
|
|
6433
6638
|
"immutable": true,
|
|
6434
6639
|
"locationInModule": {
|
|
6435
6640
|
"filename": "src/structs/typescript-options/component-options.ts",
|
|
6436
|
-
"line":
|
|
6641
|
+
"line": 872
|
|
6437
6642
|
},
|
|
6438
6643
|
"name": "workflowPackageCache",
|
|
6439
6644
|
"optional": true,
|
|
@@ -6567,7 +6772,7 @@
|
|
|
6567
6772
|
"immutable": true,
|
|
6568
6773
|
"locationInModule": {
|
|
6569
6774
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6570
|
-
"line":
|
|
6775
|
+
"line": 359
|
|
6571
6776
|
},
|
|
6572
6777
|
"name": "defaultReleaseBranch",
|
|
6573
6778
|
"type": {
|
|
@@ -6587,7 +6792,7 @@
|
|
|
6587
6792
|
"immutable": true,
|
|
6588
6793
|
"locationInModule": {
|
|
6589
6794
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6590
|
-
"line":
|
|
6795
|
+
"line": 998
|
|
6591
6796
|
},
|
|
6592
6797
|
"name": "name",
|
|
6593
6798
|
"type": {
|
|
@@ -6605,7 +6810,7 @@
|
|
|
6605
6810
|
"immutable": true,
|
|
6606
6811
|
"locationInModule": {
|
|
6607
6812
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6608
|
-
"line":
|
|
6813
|
+
"line": 836
|
|
6609
6814
|
},
|
|
6610
6815
|
"name": "allowLibraryDependencies",
|
|
6611
6816
|
"optional": true,
|
|
@@ -6623,7 +6828,7 @@
|
|
|
6623
6828
|
"immutable": true,
|
|
6624
6829
|
"locationInModule": {
|
|
6625
6830
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6626
|
-
"line":
|
|
6831
|
+
"line": 353
|
|
6627
6832
|
},
|
|
6628
6833
|
"name": "artifactsDirectory",
|
|
6629
6834
|
"optional": true,
|
|
@@ -6631,6 +6836,43 @@
|
|
|
6631
6836
|
"primitive": "string"
|
|
6632
6837
|
}
|
|
6633
6838
|
},
|
|
6839
|
+
{
|
|
6840
|
+
"abstract": true,
|
|
6841
|
+
"docs": {
|
|
6842
|
+
"default": "false",
|
|
6843
|
+
"remarks": "When enabled, creates an \"audit\" task that checks for known security vulnerabilities\nin dependencies. By default, runs during every build and checks for \"high\" severity\nvulnerabilities or above in all dependencies (including dev dependencies).",
|
|
6844
|
+
"stability": "experimental",
|
|
6845
|
+
"summary": "Run security audit on dependencies."
|
|
6846
|
+
},
|
|
6847
|
+
"immutable": true,
|
|
6848
|
+
"locationInModule": {
|
|
6849
|
+
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6850
|
+
"line": 347
|
|
6851
|
+
},
|
|
6852
|
+
"name": "auditDeps",
|
|
6853
|
+
"optional": true,
|
|
6854
|
+
"type": {
|
|
6855
|
+
"primitive": "boolean"
|
|
6856
|
+
}
|
|
6857
|
+
},
|
|
6858
|
+
{
|
|
6859
|
+
"abstract": true,
|
|
6860
|
+
"docs": {
|
|
6861
|
+
"default": "- default options",
|
|
6862
|
+
"stability": "experimental",
|
|
6863
|
+
"summary": "Security audit options."
|
|
6864
|
+
},
|
|
6865
|
+
"immutable": true,
|
|
6866
|
+
"locationInModule": {
|
|
6867
|
+
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6868
|
+
"line": 338
|
|
6869
|
+
},
|
|
6870
|
+
"name": "auditDepsOptions",
|
|
6871
|
+
"optional": true,
|
|
6872
|
+
"type": {
|
|
6873
|
+
"fqn": "projen.javascript.AuditOptions"
|
|
6874
|
+
}
|
|
6875
|
+
},
|
|
6634
6876
|
{
|
|
6635
6877
|
"abstract": true,
|
|
6636
6878
|
"docs": {
|
|
@@ -6640,7 +6882,7 @@
|
|
|
6640
6882
|
"immutable": true,
|
|
6641
6883
|
"locationInModule": {
|
|
6642
6884
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6643
|
-
"line":
|
|
6885
|
+
"line": 828
|
|
6644
6886
|
},
|
|
6645
6887
|
"name": "authorEmail",
|
|
6646
6888
|
"optional": true,
|
|
@@ -6657,7 +6899,7 @@
|
|
|
6657
6899
|
"immutable": true,
|
|
6658
6900
|
"locationInModule": {
|
|
6659
6901
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6660
|
-
"line":
|
|
6902
|
+
"line": 823
|
|
6661
6903
|
},
|
|
6662
6904
|
"name": "authorName",
|
|
6663
6905
|
"optional": true,
|
|
@@ -6674,7 +6916,7 @@
|
|
|
6674
6916
|
"immutable": true,
|
|
6675
6917
|
"locationInModule": {
|
|
6676
6918
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6677
|
-
"line":
|
|
6919
|
+
"line": 818
|
|
6678
6920
|
},
|
|
6679
6921
|
"name": "authorOrganization",
|
|
6680
6922
|
"optional": true,
|
|
@@ -6691,7 +6933,7 @@
|
|
|
6691
6933
|
"immutable": true,
|
|
6692
6934
|
"locationInModule": {
|
|
6693
6935
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6694
|
-
"line":
|
|
6936
|
+
"line": 813
|
|
6695
6937
|
},
|
|
6696
6938
|
"name": "authorUrl",
|
|
6697
6939
|
"optional": true,
|
|
@@ -6709,7 +6951,7 @@
|
|
|
6709
6951
|
"immutable": true,
|
|
6710
6952
|
"locationInModule": {
|
|
6711
6953
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6712
|
-
"line":
|
|
6954
|
+
"line": 922
|
|
6713
6955
|
},
|
|
6714
6956
|
"name": "autoApproveOptions",
|
|
6715
6957
|
"optional": true,
|
|
@@ -6746,7 +6988,7 @@
|
|
|
6746
6988
|
"immutable": true,
|
|
6747
6989
|
"locationInModule": {
|
|
6748
6990
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6749
|
-
"line":
|
|
6991
|
+
"line": 808
|
|
6750
6992
|
},
|
|
6751
6993
|
"name": "autoDetectBin",
|
|
6752
6994
|
"optional": true,
|
|
@@ -6765,7 +7007,7 @@
|
|
|
6765
7007
|
"immutable": true,
|
|
6766
7008
|
"locationInModule": {
|
|
6767
7009
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6768
|
-
"line":
|
|
7010
|
+
"line": 916
|
|
6769
7011
|
},
|
|
6770
7012
|
"name": "autoMerge",
|
|
6771
7013
|
"optional": true,
|
|
@@ -6784,7 +7026,7 @@
|
|
|
6784
7026
|
"immutable": true,
|
|
6785
7027
|
"locationInModule": {
|
|
6786
7028
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6787
|
-
"line":
|
|
7029
|
+
"line": 908
|
|
6788
7030
|
},
|
|
6789
7031
|
"name": "autoMergeOptions",
|
|
6790
7032
|
"optional": true,
|
|
@@ -6802,7 +7044,7 @@
|
|
|
6802
7044
|
"immutable": true,
|
|
6803
7045
|
"locationInModule": {
|
|
6804
7046
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6805
|
-
"line":
|
|
7047
|
+
"line": 802
|
|
6806
7048
|
},
|
|
6807
7049
|
"name": "bin",
|
|
6808
7050
|
"optional": true,
|
|
@@ -6860,7 +7102,7 @@
|
|
|
6860
7102
|
"immutable": true,
|
|
6861
7103
|
"locationInModule": {
|
|
6862
7104
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6863
|
-
"line":
|
|
7105
|
+
"line": 794
|
|
6864
7106
|
},
|
|
6865
7107
|
"name": "bugsEmail",
|
|
6866
7108
|
"optional": true,
|
|
@@ -6877,7 +7119,7 @@
|
|
|
6877
7119
|
"immutable": true,
|
|
6878
7120
|
"locationInModule": {
|
|
6879
7121
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6880
|
-
"line":
|
|
7122
|
+
"line": 789
|
|
6881
7123
|
},
|
|
6882
7124
|
"name": "bugsUrl",
|
|
6883
7125
|
"optional": true,
|
|
@@ -6931,7 +7173,7 @@
|
|
|
6931
7173
|
"immutable": true,
|
|
6932
7174
|
"locationInModule": {
|
|
6933
7175
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6934
|
-
"line":
|
|
7176
|
+
"line": 552
|
|
6935
7177
|
},
|
|
6936
7178
|
"name": "bumpPackage",
|
|
6937
7179
|
"optional": true,
|
|
@@ -6949,7 +7191,7 @@
|
|
|
6949
7191
|
"immutable": true,
|
|
6950
7192
|
"locationInModule": {
|
|
6951
7193
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6952
|
-
"line":
|
|
7194
|
+
"line": 784
|
|
6953
7195
|
},
|
|
6954
7196
|
"name": "bundledDeps",
|
|
6955
7197
|
"optional": true,
|
|
@@ -6989,7 +7231,7 @@
|
|
|
6989
7231
|
"immutable": true,
|
|
6990
7232
|
"locationInModule": {
|
|
6991
7233
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
6992
|
-
"line":
|
|
7234
|
+
"line": 769
|
|
6993
7235
|
},
|
|
6994
7236
|
"name": "bunVersion",
|
|
6995
7237
|
"optional": true,
|
|
@@ -7026,7 +7268,7 @@
|
|
|
7026
7268
|
"immutable": true,
|
|
7027
7269
|
"locationInModule": {
|
|
7028
7270
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7029
|
-
"line":
|
|
7271
|
+
"line": 900
|
|
7030
7272
|
},
|
|
7031
7273
|
"name": "clobber",
|
|
7032
7274
|
"optional": true,
|
|
@@ -7045,7 +7287,7 @@
|
|
|
7045
7287
|
"immutable": true,
|
|
7046
7288
|
"locationInModule": {
|
|
7047
7289
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7048
|
-
"line":
|
|
7290
|
+
"line": 763
|
|
7049
7291
|
},
|
|
7050
7292
|
"name": "codeArtifactOptions",
|
|
7051
7293
|
"optional": true,
|
|
@@ -7099,7 +7341,7 @@
|
|
|
7099
7341
|
"immutable": true,
|
|
7100
7342
|
"locationInModule": {
|
|
7101
7343
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7102
|
-
"line":
|
|
7344
|
+
"line": 991
|
|
7103
7345
|
},
|
|
7104
7346
|
"name": "commitGenerated",
|
|
7105
7347
|
"optional": true,
|
|
@@ -7194,7 +7436,7 @@
|
|
|
7194
7436
|
"immutable": true,
|
|
7195
7437
|
"locationInModule": {
|
|
7196
7438
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7197
|
-
"line":
|
|
7439
|
+
"line": 756
|
|
7198
7440
|
},
|
|
7199
7441
|
"name": "deps",
|
|
7200
7442
|
"optional": true,
|
|
@@ -7257,7 +7499,7 @@
|
|
|
7257
7499
|
"immutable": true,
|
|
7258
7500
|
"locationInModule": {
|
|
7259
7501
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7260
|
-
"line":
|
|
7502
|
+
"line": 743
|
|
7261
7503
|
},
|
|
7262
7504
|
"name": "description",
|
|
7263
7505
|
"optional": true,
|
|
@@ -7275,7 +7517,7 @@
|
|
|
7275
7517
|
"immutable": true,
|
|
7276
7518
|
"locationInModule": {
|
|
7277
7519
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7278
|
-
"line":
|
|
7520
|
+
"line": 894
|
|
7279
7521
|
},
|
|
7280
7522
|
"name": "devContainer",
|
|
7281
7523
|
"optional": true,
|
|
@@ -7297,7 +7539,7 @@
|
|
|
7297
7539
|
"immutable": true,
|
|
7298
7540
|
"locationInModule": {
|
|
7299
7541
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7300
|
-
"line":
|
|
7542
|
+
"line": 735
|
|
7301
7543
|
},
|
|
7302
7544
|
"name": "devDeps",
|
|
7303
7545
|
"optional": true,
|
|
@@ -7392,7 +7634,7 @@
|
|
|
7392
7634
|
"immutable": true,
|
|
7393
7635
|
"locationInModule": {
|
|
7394
7636
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7395
|
-
"line":
|
|
7637
|
+
"line": 718
|
|
7396
7638
|
},
|
|
7397
7639
|
"name": "entrypoint",
|
|
7398
7640
|
"optional": true,
|
|
@@ -7465,7 +7707,7 @@
|
|
|
7465
7707
|
"immutable": true,
|
|
7466
7708
|
"locationInModule": {
|
|
7467
7709
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7468
|
-
"line":
|
|
7710
|
+
"line": 888
|
|
7469
7711
|
},
|
|
7470
7712
|
"name": "github",
|
|
7471
7713
|
"optional": true,
|
|
@@ -7483,7 +7725,7 @@
|
|
|
7483
7725
|
"immutable": true,
|
|
7484
7726
|
"locationInModule": {
|
|
7485
7727
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7486
|
-
"line":
|
|
7728
|
+
"line": 881
|
|
7487
7729
|
},
|
|
7488
7730
|
"name": "githubOptions",
|
|
7489
7731
|
"optional": true,
|
|
@@ -7522,7 +7764,7 @@
|
|
|
7522
7764
|
"immutable": true,
|
|
7523
7765
|
"locationInModule": {
|
|
7524
7766
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7525
|
-
"line":
|
|
7767
|
+
"line": 985
|
|
7526
7768
|
},
|
|
7527
7769
|
"name": "gitIgnoreOptions",
|
|
7528
7770
|
"optional": true,
|
|
@@ -7539,7 +7781,7 @@
|
|
|
7539
7781
|
"immutable": true,
|
|
7540
7782
|
"locationInModule": {
|
|
7541
7783
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7542
|
-
"line":
|
|
7784
|
+
"line": 980
|
|
7543
7785
|
},
|
|
7544
7786
|
"name": "gitOptions",
|
|
7545
7787
|
"optional": true,
|
|
@@ -7557,7 +7799,7 @@
|
|
|
7557
7799
|
"immutable": true,
|
|
7558
7800
|
"locationInModule": {
|
|
7559
7801
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7560
|
-
"line":
|
|
7802
|
+
"line": 875
|
|
7561
7803
|
},
|
|
7562
7804
|
"name": "gitpod",
|
|
7563
7805
|
"optional": true,
|
|
@@ -7574,7 +7816,7 @@
|
|
|
7574
7816
|
"immutable": true,
|
|
7575
7817
|
"locationInModule": {
|
|
7576
7818
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7577
|
-
"line":
|
|
7819
|
+
"line": 711
|
|
7578
7820
|
},
|
|
7579
7821
|
"name": "homepage",
|
|
7580
7822
|
"optional": true,
|
|
@@ -7628,7 +7870,7 @@
|
|
|
7628
7870
|
"immutable": true,
|
|
7629
7871
|
"locationInModule": {
|
|
7630
7872
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7631
|
-
"line":
|
|
7873
|
+
"line": 545
|
|
7632
7874
|
},
|
|
7633
7875
|
"name": "jsiiReleaseVersion",
|
|
7634
7876
|
"optional": true,
|
|
@@ -7645,7 +7887,7 @@
|
|
|
7645
7887
|
"immutable": true,
|
|
7646
7888
|
"locationInModule": {
|
|
7647
7889
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7648
|
-
"line":
|
|
7890
|
+
"line": 706
|
|
7649
7891
|
},
|
|
7650
7892
|
"name": "keywords",
|
|
7651
7893
|
"optional": true,
|
|
@@ -7687,7 +7929,7 @@
|
|
|
7687
7929
|
"immutable": true,
|
|
7688
7930
|
"locationInModule": {
|
|
7689
7931
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7690
|
-
"line":
|
|
7932
|
+
"line": 701
|
|
7691
7933
|
},
|
|
7692
7934
|
"name": "license",
|
|
7693
7935
|
"optional": true,
|
|
@@ -7705,7 +7947,7 @@
|
|
|
7705
7947
|
"immutable": true,
|
|
7706
7948
|
"locationInModule": {
|
|
7707
7949
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7708
|
-
"line":
|
|
7950
|
+
"line": 693
|
|
7709
7951
|
},
|
|
7710
7952
|
"name": "licensed",
|
|
7711
7953
|
"optional": true,
|
|
@@ -7723,7 +7965,7 @@
|
|
|
7723
7965
|
"immutable": true,
|
|
7724
7966
|
"locationInModule": {
|
|
7725
7967
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7726
|
-
"line":
|
|
7968
|
+
"line": 975
|
|
7727
7969
|
},
|
|
7728
7970
|
"name": "logging",
|
|
7729
7971
|
"optional": true,
|
|
@@ -7742,7 +7984,7 @@
|
|
|
7742
7984
|
"immutable": true,
|
|
7743
7985
|
"locationInModule": {
|
|
7744
7986
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7745
|
-
"line":
|
|
7987
|
+
"line": 539
|
|
7746
7988
|
},
|
|
7747
7989
|
"name": "majorVersion",
|
|
7748
7990
|
"optional": true,
|
|
@@ -7761,7 +8003,7 @@
|
|
|
7761
8003
|
"immutable": true,
|
|
7762
8004
|
"locationInModule": {
|
|
7763
8005
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7764
|
-
"line":
|
|
8006
|
+
"line": 687
|
|
7765
8007
|
},
|
|
7766
8008
|
"name": "maxNodeVersion",
|
|
7767
8009
|
"optional": true,
|
|
@@ -7780,7 +8022,7 @@
|
|
|
7780
8022
|
"immutable": true,
|
|
7781
8023
|
"locationInModule": {
|
|
7782
8024
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7783
|
-
"line":
|
|
8025
|
+
"line": 531
|
|
7784
8026
|
},
|
|
7785
8027
|
"name": "minMajorVersion",
|
|
7786
8028
|
"optional": true,
|
|
@@ -7799,7 +8041,7 @@
|
|
|
7799
8041
|
"immutable": true,
|
|
7800
8042
|
"locationInModule": {
|
|
7801
8043
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7802
|
-
"line":
|
|
8044
|
+
"line": 676
|
|
7803
8045
|
},
|
|
7804
8046
|
"name": "minNodeVersion",
|
|
7805
8047
|
"optional": true,
|
|
@@ -7818,7 +8060,7 @@
|
|
|
7818
8060
|
"immutable": true,
|
|
7819
8061
|
"locationInModule": {
|
|
7820
8062
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7821
|
-
"line":
|
|
8063
|
+
"line": 521
|
|
7822
8064
|
},
|
|
7823
8065
|
"name": "nextVersionCommand",
|
|
7824
8066
|
"optional": true,
|
|
@@ -7836,7 +8078,7 @@
|
|
|
7836
8078
|
"immutable": true,
|
|
7837
8079
|
"locationInModule": {
|
|
7838
8080
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7839
|
-
"line":
|
|
8081
|
+
"line": 661
|
|
7840
8082
|
},
|
|
7841
8083
|
"name": "npmAccess",
|
|
7842
8084
|
"optional": true,
|
|
@@ -7855,7 +8097,7 @@
|
|
|
7855
8097
|
"immutable": true,
|
|
7856
8098
|
"locationInModule": {
|
|
7857
8099
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7858
|
-
"line":
|
|
8100
|
+
"line": 497
|
|
7859
8101
|
},
|
|
7860
8102
|
"name": "npmDistTag",
|
|
7861
8103
|
"optional": true,
|
|
@@ -7909,7 +8151,7 @@
|
|
|
7909
8151
|
"immutable": true,
|
|
7910
8152
|
"locationInModule": {
|
|
7911
8153
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7912
|
-
"line":
|
|
8154
|
+
"line": 653
|
|
7913
8155
|
},
|
|
7914
8156
|
"name": "npmProvenance",
|
|
7915
8157
|
"optional": true,
|
|
@@ -7928,7 +8170,7 @@
|
|
|
7928
8170
|
"immutable": true,
|
|
7929
8171
|
"locationInModule": {
|
|
7930
8172
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7931
|
-
"line":
|
|
8173
|
+
"line": 642
|
|
7932
8174
|
},
|
|
7933
8175
|
"name": "npmRegistryUrl",
|
|
7934
8176
|
"optional": true,
|
|
@@ -7946,7 +8188,7 @@
|
|
|
7946
8188
|
"immutable": true,
|
|
7947
8189
|
"locationInModule": {
|
|
7948
8190
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7949
|
-
"line":
|
|
8191
|
+
"line": 635
|
|
7950
8192
|
},
|
|
7951
8193
|
"name": "npmTokenSecret",
|
|
7952
8194
|
"optional": true,
|
|
@@ -7964,7 +8206,7 @@
|
|
|
7964
8206
|
"immutable": true,
|
|
7965
8207
|
"locationInModule": {
|
|
7966
8208
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7967
|
-
"line":
|
|
8209
|
+
"line": 629
|
|
7968
8210
|
},
|
|
7969
8211
|
"name": "npmTrustedPublishing",
|
|
7970
8212
|
"optional": true,
|
|
@@ -7983,7 +8225,7 @@
|
|
|
7983
8225
|
"immutable": true,
|
|
7984
8226
|
"locationInModule": {
|
|
7985
8227
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
7986
|
-
"line":
|
|
8228
|
+
"line": 969
|
|
7987
8229
|
},
|
|
7988
8230
|
"name": "outdir",
|
|
7989
8231
|
"optional": true,
|
|
@@ -8019,7 +8261,7 @@
|
|
|
8019
8261
|
"immutable": true,
|
|
8020
8262
|
"locationInModule": {
|
|
8021
8263
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8022
|
-
"line":
|
|
8264
|
+
"line": 623
|
|
8023
8265
|
},
|
|
8024
8266
|
"name": "packageManager",
|
|
8025
8267
|
"optional": true,
|
|
@@ -8040,7 +8282,7 @@
|
|
|
8040
8282
|
"immutable": true,
|
|
8041
8283
|
"locationInModule": {
|
|
8042
8284
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8043
|
-
"line":
|
|
8285
|
+
"line": 617
|
|
8044
8286
|
},
|
|
8045
8287
|
"name": "packageName",
|
|
8046
8288
|
"optional": true,
|
|
@@ -8057,7 +8299,7 @@
|
|
|
8057
8299
|
"immutable": true,
|
|
8058
8300
|
"locationInModule": {
|
|
8059
8301
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8060
|
-
"line":
|
|
8302
|
+
"line": 958
|
|
8061
8303
|
},
|
|
8062
8304
|
"name": "parent",
|
|
8063
8305
|
"optional": true,
|
|
@@ -8074,7 +8316,7 @@
|
|
|
8074
8316
|
"immutable": true,
|
|
8075
8317
|
"locationInModule": {
|
|
8076
8318
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8077
|
-
"line":
|
|
8319
|
+
"line": 610
|
|
8078
8320
|
},
|
|
8079
8321
|
"name": "peerDependencyOptions",
|
|
8080
8322
|
"optional": true,
|
|
@@ -8093,7 +8335,7 @@
|
|
|
8093
8335
|
"immutable": true,
|
|
8094
8336
|
"locationInModule": {
|
|
8095
8337
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8096
|
-
"line":
|
|
8338
|
+
"line": 605
|
|
8097
8339
|
},
|
|
8098
8340
|
"name": "peerDeps",
|
|
8099
8341
|
"optional": true,
|
|
@@ -8116,7 +8358,7 @@
|
|
|
8116
8358
|
"immutable": true,
|
|
8117
8359
|
"locationInModule": {
|
|
8118
8360
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8119
|
-
"line":
|
|
8361
|
+
"line": 586
|
|
8120
8362
|
},
|
|
8121
8363
|
"name": "pnpmVersion",
|
|
8122
8364
|
"optional": true,
|
|
@@ -8134,7 +8376,7 @@
|
|
|
8134
8376
|
"immutable": true,
|
|
8135
8377
|
"locationInModule": {
|
|
8136
8378
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8137
|
-
"line":
|
|
8379
|
+
"line": 489
|
|
8138
8380
|
},
|
|
8139
8381
|
"name": "postBuildSteps",
|
|
8140
8382
|
"optional": true,
|
|
@@ -8157,7 +8399,7 @@
|
|
|
8157
8399
|
"immutable": true,
|
|
8158
8400
|
"locationInModule": {
|
|
8159
8401
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8160
|
-
"line":
|
|
8402
|
+
"line": 483
|
|
8161
8403
|
},
|
|
8162
8404
|
"name": "prerelease",
|
|
8163
8405
|
"optional": true,
|
|
@@ -8212,7 +8454,7 @@
|
|
|
8212
8454
|
"immutable": true,
|
|
8213
8455
|
"locationInModule": {
|
|
8214
8456
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8215
|
-
"line":
|
|
8457
|
+
"line": 953
|
|
8216
8458
|
},
|
|
8217
8459
|
"name": "projenCommand",
|
|
8218
8460
|
"optional": true,
|
|
@@ -8230,7 +8472,7 @@
|
|
|
8230
8472
|
"immutable": true,
|
|
8231
8473
|
"locationInModule": {
|
|
8232
8474
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8233
|
-
"line":
|
|
8475
|
+
"line": 869
|
|
8234
8476
|
},
|
|
8235
8477
|
"name": "projenCredentials",
|
|
8236
8478
|
"optional": true,
|
|
@@ -8284,7 +8526,7 @@
|
|
|
8284
8526
|
"immutable": true,
|
|
8285
8527
|
"locationInModule": {
|
|
8286
8528
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8287
|
-
"line":
|
|
8529
|
+
"line": 946
|
|
8288
8530
|
},
|
|
8289
8531
|
"name": "projenrcJson",
|
|
8290
8532
|
"optional": true,
|
|
@@ -8302,7 +8544,7 @@
|
|
|
8302
8544
|
"immutable": true,
|
|
8303
8545
|
"locationInModule": {
|
|
8304
8546
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8305
|
-
"line":
|
|
8547
|
+
"line": 940
|
|
8306
8548
|
},
|
|
8307
8549
|
"name": "projenrcJsonOptions",
|
|
8308
8550
|
"optional": true,
|
|
@@ -8394,7 +8636,7 @@
|
|
|
8394
8636
|
"immutable": true,
|
|
8395
8637
|
"locationInModule": {
|
|
8396
8638
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8397
|
-
"line":
|
|
8639
|
+
"line": 477
|
|
8398
8640
|
},
|
|
8399
8641
|
"name": "publishDryRun",
|
|
8400
8642
|
"optional": true,
|
|
@@ -8413,7 +8655,7 @@
|
|
|
8413
8655
|
"immutable": true,
|
|
8414
8656
|
"locationInModule": {
|
|
8415
8657
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8416
|
-
"line":
|
|
8658
|
+
"line": 471
|
|
8417
8659
|
},
|
|
8418
8660
|
"name": "publishTasks",
|
|
8419
8661
|
"optional": true,
|
|
@@ -8472,7 +8714,7 @@
|
|
|
8472
8714
|
"immutable": true,
|
|
8473
8715
|
"locationInModule": {
|
|
8474
8716
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8475
|
-
"line":
|
|
8717
|
+
"line": 863
|
|
8476
8718
|
},
|
|
8477
8719
|
"name": "readme",
|
|
8478
8720
|
"optional": true,
|
|
@@ -8490,7 +8732,7 @@
|
|
|
8490
8732
|
"immutable": true,
|
|
8491
8733
|
"locationInModule": {
|
|
8492
8734
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8493
|
-
"line":
|
|
8735
|
+
"line": 463
|
|
8494
8736
|
},
|
|
8495
8737
|
"name": "releasableCommits",
|
|
8496
8738
|
"optional": true,
|
|
@@ -8527,7 +8769,7 @@
|
|
|
8527
8769
|
"immutable": true,
|
|
8528
8770
|
"locationInModule": {
|
|
8529
8771
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8530
|
-
"line":
|
|
8772
|
+
"line": 457
|
|
8531
8773
|
},
|
|
8532
8774
|
"name": "releaseBranches",
|
|
8533
8775
|
"optional": true,
|
|
@@ -8551,7 +8793,7 @@
|
|
|
8551
8793
|
"immutable": true,
|
|
8552
8794
|
"locationInModule": {
|
|
8553
8795
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8554
|
-
"line":
|
|
8796
|
+
"line": 444
|
|
8555
8797
|
},
|
|
8556
8798
|
"name": "releaseEnvironment",
|
|
8557
8799
|
"optional": true,
|
|
@@ -8569,7 +8811,7 @@
|
|
|
8569
8811
|
"immutable": true,
|
|
8570
8812
|
"locationInModule": {
|
|
8571
8813
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8572
|
-
"line":
|
|
8814
|
+
"line": 433
|
|
8573
8815
|
},
|
|
8574
8816
|
"name": "releaseFailureIssue",
|
|
8575
8817
|
"optional": true,
|
|
@@ -8588,7 +8830,7 @@
|
|
|
8588
8830
|
"immutable": true,
|
|
8589
8831
|
"locationInModule": {
|
|
8590
8832
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8591
|
-
"line":
|
|
8833
|
+
"line": 427
|
|
8592
8834
|
},
|
|
8593
8835
|
"name": "releaseFailureIssueLabel",
|
|
8594
8836
|
"optional": true,
|
|
@@ -8607,7 +8849,7 @@
|
|
|
8607
8849
|
"immutable": true,
|
|
8608
8850
|
"locationInModule": {
|
|
8609
8851
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8610
|
-
"line":
|
|
8852
|
+
"line": 420
|
|
8611
8853
|
},
|
|
8612
8854
|
"name": "releaseTagPrefix",
|
|
8613
8855
|
"optional": true,
|
|
@@ -8643,7 +8885,7 @@
|
|
|
8643
8885
|
"immutable": true,
|
|
8644
8886
|
"locationInModule": {
|
|
8645
8887
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8646
|
-
"line":
|
|
8888
|
+
"line": 410
|
|
8647
8889
|
},
|
|
8648
8890
|
"name": "releaseTrigger",
|
|
8649
8891
|
"optional": true,
|
|
@@ -8661,7 +8903,7 @@
|
|
|
8661
8903
|
"immutable": true,
|
|
8662
8904
|
"locationInModule": {
|
|
8663
8905
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8664
|
-
"line":
|
|
8906
|
+
"line": 404
|
|
8665
8907
|
},
|
|
8666
8908
|
"name": "releaseWorkflowEnv",
|
|
8667
8909
|
"optional": true,
|
|
@@ -8684,7 +8926,7 @@
|
|
|
8684
8926
|
"immutable": true,
|
|
8685
8927
|
"locationInModule": {
|
|
8686
8928
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8687
|
-
"line":
|
|
8929
|
+
"line": 398
|
|
8688
8930
|
},
|
|
8689
8931
|
"name": "releaseWorkflowName",
|
|
8690
8932
|
"optional": true,
|
|
@@ -8701,7 +8943,7 @@
|
|
|
8701
8943
|
"immutable": true,
|
|
8702
8944
|
"locationInModule": {
|
|
8703
8945
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8704
|
-
"line":
|
|
8946
|
+
"line": 392
|
|
8705
8947
|
},
|
|
8706
8948
|
"name": "releaseWorkflowSetupSteps",
|
|
8707
8949
|
"optional": true,
|
|
@@ -8724,7 +8966,7 @@
|
|
|
8724
8966
|
"immutable": true,
|
|
8725
8967
|
"locationInModule": {
|
|
8726
8968
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8727
|
-
"line":
|
|
8969
|
+
"line": 934
|
|
8728
8970
|
},
|
|
8729
8971
|
"name": "renovatebot",
|
|
8730
8972
|
"optional": true,
|
|
@@ -8742,7 +8984,7 @@
|
|
|
8742
8984
|
"immutable": true,
|
|
8743
8985
|
"locationInModule": {
|
|
8744
8986
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8745
|
-
"line":
|
|
8987
|
+
"line": 928
|
|
8746
8988
|
},
|
|
8747
8989
|
"name": "renovatebotOptions",
|
|
8748
8990
|
"optional": true,
|
|
@@ -8760,7 +9002,7 @@
|
|
|
8760
9002
|
"immutable": true,
|
|
8761
9003
|
"locationInModule": {
|
|
8762
9004
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8763
|
-
"line":
|
|
9005
|
+
"line": 580
|
|
8764
9006
|
},
|
|
8765
9007
|
"name": "repository",
|
|
8766
9008
|
"optional": true,
|
|
@@ -8777,7 +9019,7 @@
|
|
|
8777
9019
|
"immutable": true,
|
|
8778
9020
|
"locationInModule": {
|
|
8779
9021
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8780
|
-
"line":
|
|
9022
|
+
"line": 574
|
|
8781
9023
|
},
|
|
8782
9024
|
"name": "repositoryDirectory",
|
|
8783
9025
|
"optional": true,
|
|
@@ -8813,7 +9055,7 @@
|
|
|
8813
9055
|
"immutable": true,
|
|
8814
9056
|
"locationInModule": {
|
|
8815
9057
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8816
|
-
"line":
|
|
9058
|
+
"line": 569
|
|
8817
9059
|
},
|
|
8818
9060
|
"name": "scopedPackagesOptions",
|
|
8819
9061
|
"optional": true,
|
|
@@ -8853,7 +9095,7 @@
|
|
|
8853
9095
|
"immutable": true,
|
|
8854
9096
|
"locationInModule": {
|
|
8855
9097
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8856
|
-
"line":
|
|
9098
|
+
"line": 563
|
|
8857
9099
|
},
|
|
8858
9100
|
"name": "stability",
|
|
8859
9101
|
"optional": true,
|
|
@@ -8872,7 +9114,7 @@
|
|
|
8872
9114
|
"immutable": true,
|
|
8873
9115
|
"locationInModule": {
|
|
8874
9116
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8875
|
-
"line":
|
|
9117
|
+
"line": 857
|
|
8876
9118
|
},
|
|
8877
9119
|
"name": "stale",
|
|
8878
9120
|
"optional": true,
|
|
@@ -8891,7 +9133,7 @@
|
|
|
8891
9133
|
"immutable": true,
|
|
8892
9134
|
"locationInModule": {
|
|
8893
9135
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
8894
|
-
"line":
|
|
9136
|
+
"line": 850
|
|
8895
9137
|
},
|
|
8896
9138
|
"name": "staleOptions",
|
|
8897
9139
|
"optional": true,
|
|
@@ -9019,7 +9261,7 @@
|
|
|
9019
9261
|
"immutable": true,
|
|
9020
9262
|
"locationInModule": {
|
|
9021
9263
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
9022
|
-
"line":
|
|
9264
|
+
"line": 387
|
|
9023
9265
|
},
|
|
9024
9266
|
"name": "versionrcOptions",
|
|
9025
9267
|
"optional": true,
|
|
@@ -9043,7 +9285,7 @@
|
|
|
9043
9285
|
"immutable": true,
|
|
9044
9286
|
"locationInModule": {
|
|
9045
9287
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
9046
|
-
"line":
|
|
9288
|
+
"line": 843
|
|
9047
9289
|
},
|
|
9048
9290
|
"name": "vscode",
|
|
9049
9291
|
"optional": true,
|
|
@@ -9084,7 +9326,7 @@
|
|
|
9084
9326
|
"immutable": true,
|
|
9085
9327
|
"locationInModule": {
|
|
9086
9328
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
9087
|
-
"line":
|
|
9329
|
+
"line": 380
|
|
9088
9330
|
},
|
|
9089
9331
|
"name": "workflowContainerImage",
|
|
9090
9332
|
"optional": true,
|
|
@@ -9095,7 +9337,7 @@
|
|
|
9095
9337
|
{
|
|
9096
9338
|
"abstract": true,
|
|
9097
9339
|
"docs": {
|
|
9098
|
-
"default": "- GitHub Actions",
|
|
9340
|
+
"default": "- default GitHub Actions user",
|
|
9099
9341
|
"stability": "experimental",
|
|
9100
9342
|
"summary": "The git identity to use in workflows."
|
|
9101
9343
|
},
|
|
@@ -9161,7 +9403,7 @@
|
|
|
9161
9403
|
"immutable": true,
|
|
9162
9404
|
"locationInModule": {
|
|
9163
9405
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
9164
|
-
"line":
|
|
9406
|
+
"line": 374
|
|
9165
9407
|
},
|
|
9166
9408
|
"name": "workflowRunsOn",
|
|
9167
9409
|
"optional": true,
|
|
@@ -9187,7 +9429,7 @@
|
|
|
9187
9429
|
"immutable": true,
|
|
9188
9430
|
"locationInModule": {
|
|
9189
9431
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
9190
|
-
"line":
|
|
9432
|
+
"line": 366
|
|
9191
9433
|
},
|
|
9192
9434
|
"name": "workflowRunsOnGroup",
|
|
9193
9435
|
"optional": true,
|
|
@@ -9205,7 +9447,7 @@
|
|
|
9205
9447
|
"immutable": true,
|
|
9206
9448
|
"locationInModule": {
|
|
9207
9449
|
"filename": "src/structs/typescript-options/project-props.ts",
|
|
9208
|
-
"line":
|
|
9450
|
+
"line": 558
|
|
9209
9451
|
},
|
|
9210
9452
|
"name": "yarnBerryOptions",
|
|
9211
9453
|
"optional": true,
|
|
@@ -9217,6 +9459,6 @@
|
|
|
9217
9459
|
"symbolId": "src/structs/typescript-options/project-props:TypeScriptProjectProps"
|
|
9218
9460
|
}
|
|
9219
9461
|
},
|
|
9220
|
-
"version": "0.0.
|
|
9221
|
-
"fingerprint": "
|
|
9462
|
+
"version": "0.0.61",
|
|
9463
|
+
"fingerprint": "kQOM8z067n3Sl/KiVCG6vI8VEWcurvUw7TLX+krXJ9s="
|
|
9222
9464
|
}
|