docs: added breadcrumb titles
This commit is contained in:
parent
a981564faf
commit
d190e654f8
@ -1,4 +1,4 @@
|
|||||||
_section: Documentation (BETA) @<about-home>
|
_section: Documentation (BETA) @<about-home> @nav<Documentation>
|
||||||
|
|
||||||
**NOTE:** This documentation is for the **beta branch** (i.e. ``v6-beta-exports``), which
|
**NOTE:** This documentation is for the **beta branch** (i.e. ``v6-beta-exports``), which
|
||||||
is still undergoing minor changes.
|
is still undergoing minor changes.
|
||||||
|
@ -24,15 +24,12 @@ export async function getModifiedTime(filename: string): Promise<null | number>
|
|||||||
if (!result.ok) { throw new Error(`git log error`); }
|
if (!result.ok) { throw new Error(`git log error`); }
|
||||||
|
|
||||||
let log = result.stdout.trim();
|
let log = result.stdout.trim();
|
||||||
console.log("LL", log);
|
|
||||||
if (!log) { return null; }
|
if (!log) { return null; }
|
||||||
|
|
||||||
for (let line of log.split("\n")) {
|
for (let line of log.split("\n")) {
|
||||||
line = line.trim();
|
line = line.trim();
|
||||||
console.log("L", line);
|
|
||||||
if (!line) { break; }
|
if (!line) { break; }
|
||||||
const match = line.match(/^date:\s+(.*)$/i);
|
const match = line.match(/^date:\s+(.*)$/i);
|
||||||
console.log("M", match);
|
|
||||||
if (match) {
|
if (match) {
|
||||||
return (new Date(match[1].trim())).getTime();;
|
return (new Date(match[1].trim())).getTime();;
|
||||||
}
|
}
|
||||||
|
@ -1 +1 @@
|
|||||||
export const version: string = "6.0.0-beta-exports.8";
|
export const version: string = "6.0.0-beta-exports.9";
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
* Explain about ABI here...
|
* Explain about ABI here...
|
||||||
*
|
*
|
||||||
* @_section api/abi:Application Binary Interface [abi]
|
* @_section api/abi:Application Binary Interface [abi]
|
||||||
|
* @_navTitle: ABI
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
* functions, classes and types offered by the Ethers library.
|
* functions, classes and types offered by the Ethers library.
|
||||||
*
|
*
|
||||||
* @_section: api:API Specification [about-api]
|
* @_section: api:API Specification [about-api]
|
||||||
|
* @_navTitle: API
|
||||||
*/
|
*/
|
||||||
import * as ethers from "./ethers.js";
|
import * as ethers from "./ethers.js";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user