docs: added breadcrumb titles

This commit is contained in:
Richard Moore 2022-12-12 02:47:12 -05:00
parent a981564faf
commit d190e654f8
5 changed files with 4 additions and 5 deletions

View File

@ -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
is still undergoing minor changes.

View File

@ -24,15 +24,12 @@ export async function getModifiedTime(filename: string): Promise<null | number>
if (!result.ok) { throw new Error(`git log error`); }
let log = result.stdout.trim();
console.log("LL", log);
if (!log) { return null; }
for (let line of log.split("\n")) {
line = line.trim();
console.log("L", line);
if (!line) { break; }
const match = line.match(/^date:\s+(.*)$/i);
console.log("M", match);
if (match) {
return (new Date(match[1].trim())).getTime();;
}

View File

@ -1 +1 @@
export const version: string = "6.0.0-beta-exports.8";
export const version: string = "6.0.0-beta-exports.9";

View File

@ -2,6 +2,7 @@
* Explain about ABI here...
*
* @_section api/abi:Application Binary Interface [abi]
* @_navTitle: ABI
*/

View File

@ -3,6 +3,7 @@
* functions, classes and types offered by the Ethers library.
*
* @_section: api:API Specification [about-api]
* @_navTitle: API
*/
import * as ethers from "./ethers.js";