File tree Expand file tree Collapse file tree 5 files changed +4
-5
lines changed Expand file tree Collapse file tree 5 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
- _section: Documentation (BETA) @<about-home>
1
+ _section: Documentation (BETA) @<about-home> @nav<Documentation>
2
2
3
3
**NOTE:** This documentation is for the **beta branch** (i.e. ``v6-beta-exports``), which
4
4
is still undergoing minor changes.
Original file line number Diff line number Diff line change @@ -24,15 +24,12 @@ export async function getModifiedTime(filename: string): Promise<null | number>
24
24
if ( ! result . ok ) { throw new Error ( `git log error` ) ; }
25
25
26
26
let log = result . stdout . trim ( ) ;
27
- console . log ( "LL" , log ) ;
28
27
if ( ! log ) { return null ; }
29
28
30
29
for ( let line of log . split ( "\n" ) ) {
31
30
line = line . trim ( ) ;
32
- console . log ( "L" , line ) ;
33
31
if ( ! line ) { break ; }
34
32
const match = line . match ( / ^ d a t e : \s + ( .* ) $ / i) ;
35
- console . log ( "M" , match ) ;
36
33
if ( match ) {
37
34
return ( new Date ( match [ 1 ] . trim ( ) ) ) . getTime ( ) ; ;
38
35
}
Original file line number Diff line number Diff line change 1
- export const version : string = "6.0.0-beta-exports.8 " ;
1
+ export const version : string = "6.0.0-beta-exports.9 " ;
Original file line number Diff line number Diff line change 2
2
* Explain about ABI here...
3
3
*
4
4
* @_section api/abi:Application Binary Interface [abi]
5
+ * @_navTitle : ABI
5
6
*/
6
7
7
8
Original file line number Diff line number Diff line change 3
3
* functions, classes and types offered by the Ethers library.
4
4
*
5
5
* @_section : api:API Specification [about-api]
6
+ * @_navTitle : API
6
7
*/
7
8
import * as ethers from "./ethers.js" ;
8
9
You can’t perform that action at this time.
0 commit comments