Releases: modernweb-dev/rocket
Releases · modernweb-dev/rocket
@mdjs/[email protected]
Patch Changes
- ee6b404: Pass on the shadowRoot to the story function
[email protected]
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]
Patch Changes
- f44a0f4: Rewrite dynamic imports with "`"
@rocket/[email protected]
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 duringrocket start
- creating social media images only in
- 750418b: Use class-based node API of check-html-links
- Updated dependencies [f44a0f4]
- Updated dependencies [750418b]
- @rocket/[email protected]
- [email protected]
@rocket/[email protected]
Minor Changes
- 8bdc326: Adopt to the new layout system
@rocket/[email protected]
Minor Changes
- 8bdc326: Make sure anchor scrolling works also with a closing drawer animation
@rocket/[email protected]
Minor Changes
-
8eec69f: Introduces the following layouts:
layout-404
A space not found pagelayout-home
Frontpage with center logo below textlayout-home-background
Frontpage with left text and background image on the rightlayout-sidebar
Left sidebar, right contentlayout-index
Extends layout-sidebar
BREAKING CHANGES:
- Sets
layout-sidebar
as the default layout - Removed dedicated Layout setting for
layout-home
uselayout-home-background
instead - Renamed
404.njk
tolayout-404
- Renamed
layout.njk
tolayout-sidebar
- Renamed
pure-content.njk
tolayout-raw
- Renamed
with-index.njk
tolayout-index
- Renamed
with-sidebar.njk
tolayout-sidebar
- Renamed
home.njk
tolayout-home
Patch Changes
- Updated dependencies [8bdc326]
- @rocket/[email protected]
@rocket/[email protected]
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 contentlayout-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 sectionfooter
Within to bottom<footer>
bottom
Add the end of the body
BREAKING CHANGES:
layout
renamed tolayout-default
- Automatically sets
layout-index
for allindex.md
files
@rocket/[email protected]
Minor Changes
-
8bdc326: Adopt to new layout system
BREAKING CHANGE:
- Renamed
blog
tolayout-blog-overview
- Renamed
post
tolayout-blog-details
- Renamed
[email protected]
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, thehightWaterMark
is now synced for reading and parsing.