Releases: modernweb-dev/rocket
v0.1.2
Patch Changes
- 990eaf2: Add project-owned stylesheet hooks to Atlas layout data and wire
rocket initto scaffold a central theme stylesheet. The initializer also supports an explicit--yespath for converting CommonJS package metadata to ESM, and the docs now cover constrained dev-server fallbacks and curl Page smoke tests.
v0.1.1
Patch Changes
- 2a8a631: Harden rocket init for Atlas docs starters and existing Rocket sites, add demo/icon helpers, start flags, and standalone demo build validation.
Rocket uses Changesets for release notes. Public package changes should include a changeset so the
release PR can update this file with the final version and package notes.
v0.1.0
- Relaunches Rocket as
@rocket/js. - Marks the package as alpha.
- Introduces the AI-assisted setup path, explicit Page config docs, static output docs, and Web
Component documentation examples.
@rocket/engine@0.2.7
Patch Changes
-
0ed3d6d: Adjust urls containing url fragments
<!-- user writes --> <a href="./about.rocket.js#some-id"></a> <!-- rocket outputs --> <!-- before --> <a href="./about.rocket.js#some-id"></a> <!-- after --> <a href="/about/#some-id"></a>
@rocket/cli@0.20.3
Patch Changes
-
a48dcd8: Introducing
rocket lintto verify if all your links are correct.There are two modes:
# check existing production build in _site (need to execute "rocket build" before) rocket lint # run a fast html only build and then check it rocket lint --build-html
-
Updated dependencies [0ed3d6d]
- @rocket/engine@0.2.7
@rocket/cli@0.20.2
@rocket/engine@0.2.5
Patch Changes
-
93503ed: HTML in headings will be ignored for the menu
Some examples:<h1>Hello <em>Word</em></h1>=>Hello Word<h1>Hello <strong>World</strong> of <span>JS <em>(JavaScript)</em></span>!</h1>=>Hello World of JS (JavaScript)!
-
3032ba9: Menus now support special characters in markdown headings.
Examples:
# Fun Errors & Feedback # <some-button>
@rocket/engine@0.2.4
Patch Changes
-
09a47b4: Prevent fatal error because of simultaneous write to file.
When the browser requested a file to be rendered and that file also needed an update in the "rocket header" (the top of the file) then it could be that the watcher trigger a simultaneous render of the file while the first render was still in progress.
The solution is that the watcher ignores changes to a file until a full render is finished.