Skip to content

Releases: modernweb-dev/rocket

v0.1.2

07 Jun 00:19

Choose a tag to compare

Patch Changes

  • 990eaf2: Add project-owned stylesheet hooks to Atlas layout data and wire rocket init to scaffold a central theme stylesheet. The initializer also supports an explicit --yes path for converting CommonJS package metadata to ESM, and the docs now cover constrained dev-server fallbacks and curl Page smoke tests.

v0.1.1

06 Jun 21:21

Choose a tag to compare

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

06 Jun 14:57

Choose a tag to compare

  • 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

23 Aug 09:54

Choose a tag to compare

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

23 Aug 09:54

Choose a tag to compare

Patch Changes

  • a48dcd8: Introducing rocket lint to 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

20 Aug 18:27

Choose a tag to compare

Patch Changes

  • 39206a1: rocket start now outputs to _site-dev instead of _site.
  • 39206a1: rocket start clears only its output folder (defaults to _site-dev)
  • cbfb0f9: Add rocket preview command to enable fast checking of the production build

@rocket/engine@0.2.5

15 Aug 21:06

Choose a tag to compare

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
    
    # &lt;some-button>

@rocket/engine@0.2.4

14 Aug 20:53

Choose a tag to compare

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.

@rocket/engine@0.2.2

13 Aug 13:42

Choose a tag to compare

Patch Changes

  • 6f88d8e: Get rid of the rehype-prism workaround by using latest esm version of mdjs that uses rehype-prism-plus
  • Updated dependencies [35ed64d]
  • Updated dependencies [6f88d8e]
    • @mdjs/core@0.20.0

@mdjs/core@0.20.0

13 Aug 13:42

Choose a tag to compare

Minor Changes

  • 35ed64d: BREAKING: Refactor to ESM-only package, use latest rehype/remark/unified dependencies.
  • 6f88d8e: BREAKING: Replace rehype-prism with rehype-prism-plus as it does not get confused as running in the browser in the SSR context.