Skip to content

Releases: modernweb-dev/rocket

@mdjs/[email protected]

05 Feb 12:32
Compare
Choose a tag to compare

Patch Changes

  • ee6b404: Pass on the shadowRoot to the story function

[email protected]

04 Feb 08:53
Compare
Choose a tag to compare

Minor Changes

  • 750418b: Uses a class for the CLI and adding the following options:

    • --root-dir the root directory to serve files from. Defaults to the current working directory
    • --ignore-link-pattern do not check links matching the pattern
    • --continue-on-error if present it will not exit with an error code - useful while writing or for temporary passing a ci

    BREAKING CHANGE:

    • Exists with an error code if a broken link is found

@rocket/[email protected]

04 Feb 08:53
Compare
Choose a tag to compare

Patch Changes

  • f44a0f4: Rewrite dynamic imports with "`"

@rocket/[email protected]

04 Feb 08:53
Compare
Choose a tag to compare

Patch Changes

  • f44a0f4: Rewrite dynamic imports with "`"
  • 74f7ddf: Adds performance improvements for social media images by:
    • creating social media images only in rocket build phase
    • adds a config createSocialMediaImages to enable (default) or disable it globally
    • adds config start.createSocialMediaImages to enable or disable (default) it during rocket start
  • 750418b: Use class-based node API of check-html-links
  • Updated dependencies [f44a0f4]
  • Updated dependencies [750418b]

@rocket/[email protected]

01 Feb 19:02
Compare
Choose a tag to compare

Minor Changes

  • 8bdc326: Adopt to the new layout system

@rocket/[email protected]

01 Feb 19:02
Compare
Choose a tag to compare

Minor Changes

  • 8bdc326: Make sure anchor scrolling works also with a closing drawer animation

@rocket/[email protected]

01 Feb 19:02
Compare
Choose a tag to compare

Minor Changes

  • 8eec69f: Introduces the following layouts:

    • layout-404 A space not found page
    • layout-home Frontpage with center logo below text
    • layout-home-background Frontpage with left text and background image on the right
    • layout-sidebar Left sidebar, right content
    • layout-index Extends layout-sidebar

    BREAKING CHANGES:

    • Sets layout-sidebar as the default layout
    • Removed dedicated Layout setting for layout-home use layout-home-background instead
    • Renamed 404.njk to layout-404
    • Renamed layout.njk to layout-sidebar
    • Renamed pure-content.njk to layout-raw
    • Renamed with-index.njk to layout-index
    • Renamed with-sidebar.njk to layout-sidebar
    • Renamed home.njk to layout-home

Patch Changes

@rocket/[email protected]

01 Feb 19:02
Compare
Choose a tag to compare

Minor Changes

  • 8bdc326: Adds html to core presets with the following Layouts:

    • layout-raw No html or any wrapping (use it for xml, json, ... outputs)
    • layout-default For content
    • layout-index Extends content and adds an "Open Navigation" button for mobile

    Layout Default has the following Joining Blocks:

    • head For the html <head>
    • header Within the top <header>
    • content Html within the main content section
    • footer Within to bottom <footer>
    • bottom Add the end of the body

    BREAKING CHANGES:

    • layout renamed to layout-default
    • Automatically sets layout-index for all index.md files

@rocket/[email protected]

01 Feb 19:02
Compare
Choose a tag to compare

Minor Changes

  • 8bdc326: Adopt to new layout system

    BREAKING CHANGE:

    • Renamed blog to layout-blog-overview
    • Renamed post to layout-blog-details

[email protected]

28 Jan 08:13
Compare
Choose a tag to compare

Patch Changes

  • f343c50: When reading bigger files, especially bigger files with all content on one line it could mean a read chunk is in the middle of a character. This can lead to strange symbols in the resulting string. The hightWaterMark is now increased from the node default of 16KB to 256KB. Additionally, the hightWaterMark is now synced for reading and parsing.