Skip to content

Releases: seek-oss/sku

sku@12.6.2

27 May 01:56
45a72c8
Compare
Choose a tag to compare

Patch Changes

  • Fix default compile package detection in PNPM repos (#975)

sku@12.6.1

15 May 05:08
a51c77a
Compare
Choose a tag to compare

Patch Changes

  • When cleaning the build output directory, only delete files within the directory, rather than the entire directory (#969)

sku@12.6.0

15 May 03:32
77e4572
Compare
Choose a tag to compare

Minor Changes

  • Add support for removing assertion functions named invariant and assertions from the tiny-invariant library, a lightweight alternative to assert (#966)

    EXAMPLE USAGE:

    import React from 'react';
    import invariant from 'tiny-invariant';
    
    export const Rating = ({ rating }: { rating: number }) => {
      invariant(rating >= 0 && rating <= 5, 'Rating must be between 0 and 5');
    
      return <div>...</div>;
    };

sku@12.5.1

13 May 00:40
33b01c5
Compare
Choose a tag to compare

Patch Changes

  • Remove rimraf dependency in favour of Node.js's rm (#961)

  • Unpin and bump @pmmmwh/react-refresh-webpack-plugin (#959)

  • Ensure all sku-generated gitignored files are present in .prettierignore and .eslintignore too (#957)

    Consumers should notice a few new files being added to the sku-managed sections within .prettierignore and .eslintignore the next time a sku command is run:

    # managed by sku
    *.less.d.ts
    +.eslintcache
    +.eslintrc
    +.prettierrc
    .storybook/main.js
    coverage/
    dist-storybook/
    dist/
    report/
    # end managed by sku

    These changes should be committed to your repo.

  • Disable peer dependency validation for PNPM (#952)

    The method we currently use to validate peer dependencies and warn users about duplicate package is not compatible with how PNPM organizes dependencies in node_modules. This feature has been disabled for PNPM repos until further notice.

  • Replace memoizee dependency with nano-memoize (#953)

  • Replace fast-glob with fdir and picomatch (#952)

  • Replace validate-npm-package-name dependency with a regexp (#954)

  • Improve performance of peer dependency validation (#952)

    Peer dependency validation shoould now complete within a few seconds, rather than a few minutes.

sku@12.5.0

25 Mar 04:57
e5710f4
Compare
Choose a tag to compare

Minor Changes

Patch Changes

  • Remove empty-dir dependency (#935)

  • Replace command-line-args with minimist for parsing CLI arguments (#940)

  • Emit incremental TypeScript build info for faster subsequent type checking (#938)

sku@12.4.11

05 Mar 04:12
53898a8
Compare
Choose a tag to compare

Patch Changes

  • Update webpack-dev-server to v5 (#930)

  • Stop passing --quiet flag to the Storybook CLI when running sku storybook (#929)

    This flag was added to suppress verbose CLI output, but as of Storybook CLI v7.1.0 this also hides the dev server info which includes the URL to access the Storybook UI.

    The flag has now been removed to provide a better default experience when using the Storybook CLI.
    Users can still pass --quiet to suppress verbose output if desired:

    pnpm run sku storybook --quiet

sku@12.4.10

01 Feb 00:18
cffd49e
Compare
Choose a tag to compare

Patch Changes

  • Update dependencies (#917)

sku@12.4.9

23 Jan 06:07
0626fc9
Compare
Choose a tag to compare

Patch Changes

  • Report braid-design-system version via telemetry (#913)

sku@12.4.8

16 Jan 02:11
fcd340c
Compare
Choose a tag to compare

Patch Changes

  • Fix running lint-staged when package.json files are staged (#918)

sku@12.4.7

27 Nov 05:37
205a989
Compare
Choose a tag to compare

Patch Changes

  • Fixes a bug where .cjs and .mjs files were not being transpiled for browser targets (#906)