Skip to content

Releases: seek-oss/sku

sku@15.11.0

12 Mar 02:38
360ee7a

Choose a tag to compare

Minor Changes

  • config: Stable support for vitePlugins (#1520)

sku@15.10.3

11 Mar 05:29
4a2fdf3

Choose a tag to compare

Patch Changes

  • start(vite): minimize reloads caused by dependency optimization on cold startup (#1516)

sku@15.10.2

11 Mar 04:31
60f29dd

Choose a tag to compare

Patch Changes

  • Fix a bug where conditional CJS interop for @apollo/client would fail if the app used a PNPM catalog dependency (#1517)

sku@15.10.1

10 Mar 05:49
55d70b9

Choose a tag to compare

Patch Changes

  • vite: Improve compatibility with @apollo/client v3 and v4 (#1512)

    CJS interop for @apollo/client is now applied conditionally depending on both the major version and the sku command being executed.

sku@15.10.0

03 Mar 02:32
c31bd4d

Choose a tag to compare

Minor Changes

  • Update prettier dependency from ~3.6.2 to ~3.8.0 (#1500)

    While the 3.8.0 release was primarily focused on formatting Angular code, the 3.7.0 release contains changes that may result in code formatting changes in your application.
    Please review the Prettier 3.7.0 release notes.

  • Introduce __UNSTABLE_vitePlugins configuration option to support adding 3rd-party and/or custom Vite plugins (#1502)

Patch Changes

  • Update Storybook babel config to target last 2 chrome versions (#1497)

@sku-lib/codemod@1.2.5

03 Mar 02:32
c31bd4d

Choose a tag to compare

Patch Changes

  • Update @ast-grep/napi dependency to ^0.41.0 (#1509)

sku@15.9.1

11 Feb 23:48
e103d6e

Choose a tag to compare

Patch Changes

  • Resolve paths for transitive compilePackage dependencies (#1495)

@sku-lib/codemod@1.2.4

11 Feb 23:48
e103d6e

Choose a tag to compare

Patch Changes

  • Update @ast-grep/napi dependency to ^0.40.0 (#1487)

sku@15.9.0

19 Jan 22:05
6686a25

Choose a tag to compare

Minor Changes

  • Add auto-translate feature for translations push command (#1444)

    Adds a new --auto-translate flag to the sku translations push command that enables automatic translation for missing translations in the Phrase platform. When enabled, this flag instructs Phrase to automatically translate any missing keys using machine translation.

    $ sku translations push --auto-translate

sku@15.8.0

14 Jan 02:10
5bdac49

Choose a tag to compare

Minor Changes

  • lint|format: Enforce sorted keys in package.json (#1480)

    ESLint will now warn if the keys in package.json are not sorted. Running sku format will automatically fix the sort order.

    If you need to, you can disable this rule by using dangerouslySetESLintConfig in your sku config (not recommended):

    const config = {
      ...,
      dangerouslySetESLintConfig: (esLintConfig) => [
        ...esLintConfig,
        {
          files: ['**/package.json'],
          rules: {
            'package-json/sort': 'off',
          },
        },
      ],
    }