Skip to content

Releases: modernweb-dev/rocket

@rocket/[email protected]

03 Oct 15:17
Compare
Choose a tag to compare

Minor Changes

  • 70bb7a1: BREAKING CHANGE: Update to latest plugins manager to get type safe options

    There is no longer a name string as a key for a plugin. It is identified by it's function/class. You will need to adjust your code if you are adding or adjusting plugins.

    - addPlugin({ name: 'my-plugin', plugin: myPlugin, options: { myFlag: true }, location: 'top' });
    + addPlugin(myPlugin, { myFlag: true }, { location: 'top' });
    - adjustPluginOptions('my-plugin', { myFlag: true });
    + adjustPluginOptions(myPlugin, { myFlag: true });

    For more details please see the Changelog of the plugins-manager package.

@rocket/[email protected]

03 Oct 15:17
Compare
Choose a tag to compare

Minor Changes

  • 70bb7a1: BREAKING CHANGE: Updating to latest version of @mdjs/core which requires the latest version of plugins-manager

Patch Changes

@rocket/[email protected]

03 Oct 15:17
Compare
Choose a tag to compare

Minor Changes

  • 70bb7a1: BREAKING CHANGE: Update to latest plugins manager to get type safe options

    There is no longer a name string as a key for a plugin. It is identified by it's function/class. You will need to adjust your code if you are adding or adjusting plugins.

    - addPlugin({ name: 'my-plugin', plugin: myPlugin, options: { myFlag: true }, location: 'top' });
    + addPlugin(myPlugin, { myFlag: true }, { location: 'top' });
    - adjustPluginOptions('my-plugin', { myFlag: true });
    + adjustPluginOptions(myPlugin, { myFlag: true });

    For more details please see the Changelog of the plugins-manager package.

Patch Changes

@rocket/[email protected]

03 Oct 15:17
Compare
Choose a tag to compare

Minor Changes

  • 70bb7a1: BREAKING CHANGE: Update to latest plugins manager to get type safe options

    There is no longer a name string as a key for a plugin. It is identified by it's function/class. You will need to adjust your code if you are adding or adjusting plugins.

    - addPlugin({ name: 'my-plugin', plugin: myPlugin, options: { myFlag: true }, location: 'top' });
    + addPlugin(myPlugin, { myFlag: true }, { location: 'top' });
    - adjustPluginOptions('my-plugin', { myFlag: true });
    + adjustPluginOptions(myPlugin, { myFlag: true });

    For more details please see the Changelog of the plugins-manager package.

@rocket/[email protected]

03 Oct 15:17
Compare
Choose a tag to compare

Minor Changes

  • 70bb7a1: BREAKING CHANGE: Update to latest plugins manager to get type safe options

    There is no longer a name string as a key for a plugin. It is identified by it's function/class. You will need to adjust your code if you are adding or adjusting plugins.

    - addPlugin({ name: 'my-plugin', plugin: myPlugin, options: { myFlag: true }, location: 'top' });
    + addPlugin(myPlugin, { myFlag: true }, { location: 'top' });
    - adjustPluginOptions('my-plugin', { myFlag: true });
    + adjustPluginOptions(myPlugin, { myFlag: true });

    For more details please see the Changelog of the plugins-manager package.

Patch Changes

@mdjs/[email protected]

03 Oct 15:17
Compare
Choose a tag to compare

Minor Changes

  • 70bb7a1: BREAKING CHANGE: Update to latest plugins manager to get type safe options

    There is no longer a name string as a key for a plugin. It is identified by it's function/class. You will need to adjust your code if you are adding or adjusting plugins.

    - addPlugin({ name: 'my-plugin', plugin: myPlugin, options: { myFlag: true }, location: 'top' });
    + addPlugin(myPlugin, { myFlag: true }, { location: 'top' });
    - adjustPluginOptions('my-plugin', { myFlag: true });
    + adjustPluginOptions(myPlugin, { myFlag: true });

    For more details please see the Changelog of the plugins-manager package.

Patch Changes

@rocket/[email protected]

13 Sep 11:35
Compare
Choose a tag to compare

Patch Changes

@rocket/[email protected]

13 Sep 11:35
Compare
Choose a tag to compare

Patch Changes

  • 7301a0f: Pass on rocketConfig to the eleventy function to enable conditional configurations/filters
  • 42418f2: Disable the service worker for local development
  • 5ac6aa6: Set the encoding of the simulator to utf8 via a html meta tag

@rocket/[email protected]

13 Sep 11:35
Compare
Choose a tag to compare

Patch Changes

@mdjs/[email protected]

13 Sep 11:35
Compare
Choose a tag to compare

Patch Changes

  • 0987a41: - Make [slot="content"] selector more specific
  • 0987a41: Fix styling in darkmode