Skip to content

sku@15.7.0

Choose a tag to compare

@seek-oss-ci seek-oss-ci released this 05 Jan 23:10
· 108 commits to master since this release
0df444a

Minor Changes

  • Support Storybook v10 (#1472)

    Storybook v10 requires its configuration files to be written in ESM. In applications that are already using ESM (have set "type": "module" in their package.json), there should be very little, if anything, to change.

    If you are not using ESM yet, then you may need to make changes to your storybook configuration files, though it's worth running storybook first to confirm whether any changes are necessary.

    Typical changes include:

    • Renaming file extensions from .js to .mjs (or typescript equivalents)
    • Converting require statements to import statements
    • Converting module.exports to export statements
    • Adding file extensions to import statements (e.g. import foo from './foo.js' instead of import foo from './foo')

    For more information, see the Storybook v10 migration guide.

Patch Changes

  • Enable pnpm-plugin-sku install notice (#1478)

    Messaging was temporarily removed due to Renovate issues with configDependencies. With the issue fixed, the install notice is reenabled.

  • Update eslint-config-seek dependency to ^15.0.4 (#1476)