Skip to content

Releases: modernweb-dev/rocket

@rocket/[email protected]

06 Oct 08:06
Compare
Choose a tag to compare

Patch Changes

[email protected]

24 Aug 09:38
Compare
Choose a tag to compare

Patch Changes

  • 97d5fb2: Add external links validation via the flag --validate-externals.

    You can/should provide an optional --absolute-base-url to handle urls starting with it as internal.

    # check external urls
    npx check-html-links _site --validate-externals
    
    # check external urls but treat links like https://rocket.modern-web.dev/about/ as internal
    npx check-html-links _site --validate-externals --absolute-base-url https://rocket.modern-web.dev

@rocket/[email protected]

24 Aug 09:38
Compare
Choose a tag to compare

Patch Changes

@rocket/[email protected]

24 Aug 09:38
Compare
Choose a tag to compare

Patch Changes

@rocket/[email protected]

23 Aug 09:54
Compare
Choose a tag to compare

Patch Changes

  • 87c10ec: Work without JavaScript if Declarative Shadow Dom (DSD) is supported by browser

  • d7e461c: Replace Layout Options logoSrc and logoAlt strings with a logoSmall TemplateResult

    -  logoSrc: '/icon.svg',
    -  logoAlt: 'Rocket Logo',
    +  logoSmall: html`
    +    <img src="resolve:@rocket/launch/assets/rocket-logo-light.svg" alt="Rocket" width="250" height="67.87" />
    +  `,
  • a12adf2: Add padding above slogan an home page

  • Updated dependencies [a48dcd8]

  • Updated dependencies [0ed3d6d]

@rocket/[email protected]

23 Aug 09:54
Compare
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/[email protected]

23 Aug 09:54
Compare
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/[email protected]

20 Aug 18:27
Compare
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/[email protected]

19 Aug 17:21
Compare
Choose a tag to compare

Patch Changes

@rocket/[email protected]

19 Aug 17:21
Compare
Choose a tag to compare

Patch Changes