File tree 5 files changed +24
-5
lines changed
5 files changed +24
-5
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,10 @@ exports[`readme autodetection of different filenames updates readme.markdown 1`]
10
10
### Table of Contents
11
11
12
12
- [foo](#foo)
13
+
13
14
- [Parameters](#parameters)
14
15
- [bar](#bar)
16
+
15
17
- [Parameters](#parameters-1)
16
18
17
19
## foo
@@ -46,8 +48,10 @@ exports[`readme command --readme-file 1`] = `
46
48
### Table of Contents
47
49
48
50
- [foo](#foo)
51
+
49
52
- [Parameters](#parameters)
50
53
- [bar](#bar)
54
+
51
55
- [Parameters](#parameters-1)
52
56
53
57
## foo
@@ -82,8 +86,10 @@ exports[`readme command updates README.md 1`] = `
82
86
### Table of Contents
83
87
84
88
- [foo](#foo)
89
+
85
90
- [Parameters](#parameters)
86
91
- [bar](#bar)
92
+
87
93
- [Parameters](#parameters-1)
88
94
89
95
## foo
Original file line number Diff line number Diff line change @@ -1858,27 +1858,35 @@ exports[`build --document-exported 1`] = `
1858
1858
### Table of Contents
1859
1859
1860
1860
- [z][1]
1861
+
1861
1862
- [zMethod][2]
1862
1863
- [x][3]
1864
+
1863
1865
- [Parameters][4]
1864
1866
- [Class][5]
1867
+
1865
1868
- [Parameters][6]
1866
1869
- [classMethod][7]
1867
1870
- [classGetter][8]
1868
1871
- [classSetter][9]
1872
+
1869
1873
- [Parameters][10]
1870
1874
- [staticMethod][11]
1871
1875
- [staticGetter][12]
1872
1876
- [staticSetter][13]
1877
+
1873
1878
- [Parameters][14]
1874
1879
- [T5][15]
1875
1880
- [y2Default][16]
1876
1881
- [y4][17]
1882
+
1877
1883
- [Parameters][18]
1878
1884
- [object][19]
1885
+
1879
1886
- [method][20]
1880
1887
- [getter][21]
1881
1888
- [setter][22]
1889
+
1882
1890
- [Parameters][23]
1883
1891
- [prop][24]
1884
1892
- [func][25]
@@ -1888,12 +1896,16 @@ exports[`build --document-exported 1`] = `
1888
1896
- [T2][29]
1889
1897
- [T4][30]
1890
1898
- [f4][31]
1899
+
1891
1900
- [Parameters][32]
1892
1901
- [o1][33]
1902
+
1893
1903
- [om1][34]
1894
1904
- [f5][35]
1905
+
1895
1906
- [Parameters][36]
1896
1907
- [o2][37]
1908
+
1897
1909
- [om2][38]
1898
1910
1899
1911
## z
Original file line number Diff line number Diff line change @@ -1387,7 +1387,7 @@ exports[`html nested.input.js 1`] = `
1387
1387
<html>
1388
1388
<head>
1389
1389
<meta charset='utf-8' />
1390
- <title>-alpha.1 | Documentation</title>
1390
+ <title> | Documentation</title>
1391
1391
<meta name='viewport' content='width=device-width,initial-scale=1'>
1392
1392
<link href='assets/bass.css' type='text/css' rel='stylesheet' />
1393
1393
<link href='assets/style.css' type='text/css' rel='stylesheet' />
@@ -1400,7 +1400,7 @@ exports[`html nested.input.js 1`] = `
1400
1400
<div id='split-left' class='overflow-auto fs0 height-viewport-100'>
1401
1401
<div class='py1 px2'>
1402
1402
<h3 class='mb0 no-anchor'>documentation</h3>
1403
- <div class='mb1'><code>9.0.0-alpha.1</code>< /div>
1403
+ <div class='mb1'></div>
1404
1404
<input
1405
1405
placeholder='Filter'
1406
1406
id='filter-input'
Original file line number Diff line number Diff line change @@ -106,8 +106,8 @@ describe('html', function() {
106
106
. map ( r =>
107
107
r . contents
108
108
. toString ( )
109
- . replace ( / d o c u m e n t a t i o n \d + \. \d + \. \d + / g, '' )
110
- . replace ( / < c o d e > \d + \. \d + \. \d + < \/ c o d e > / g, '' )
109
+ . replace ( / d o c u m e n t a t i o n \d + \. \d + \. \d + ( - \w + ( \. \d + ) ? ) ? / g, '' )
110
+ . replace ( / < c o d e > \d + \. \d + \. \d + ( - \w + ( \. \d + ) ? ) ? < \/ c o d e > / g, '' )
111
111
)
112
112
. join ( '\n' ) ;
113
113
expect ( clean ) . toMatchSnapshot ( ) ;
Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ const opts = {
19
19
'functionSent' ,
20
20
'jsx' ,
21
21
'objectRestSpread' ,
22
- 'dynamicImport'
22
+ 'dynamicImport' ,
23
+ 'logicalAssignment'
23
24
]
24
25
} ;
25
26
You can’t perform that action at this time.
0 commit comments