Skip to content

v0.0.30

Compare
Choose a tag to compare
@robinmetral robinmetral released this 15 Apr 13:59
· 10 commits to main since this release

What changed

  • Custom build scripts for pages now receive the page's relative path as a third parameter:

    export async function buildPage(
      html: string,
      frontmatter: { [key: string]: string },
    + path: string,
    ): Promise<string> {
      /* do something with the html */
      return html;
    }
  • Bumped minimist to v1.2.6 to address CVE-2021-44906