Skip to content

Commit

Permalink
Version Packages (#880)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
seek-oss-ci and github-actions[bot] committed Sep 12, 2023
1 parent 78b5e0c commit e011b59
Show file tree
Hide file tree
Showing 14 changed files with 59 additions and 89 deletions.
5 changes: 0 additions & 5 deletions .changeset/breezy-ads-return.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/breezy-squids-lay.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/friendly-ladybugs-fly.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/gorgeous-nails-film.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/healthy-beds-sniff.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/lucky-meals-grab.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/many-nails-drop.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/pink-feet-trade.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/popular-keys-boil.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/real-rabbits-yawn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thick-cameras-arrive.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/thirty-pots-invite.md

This file was deleted.

58 changes: 58 additions & 0 deletions packages/sku/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,63 @@
# sku

## 12.4.0

### Minor Changes

- Enable caching for ESLint and Prettier ([#881](https://github.com/seek-oss/sku/pull/881))

- Add `--packageManager` flag ([#884](https://github.com/seek-oss/sku/pull/884))

Sku detects package managers in the following order: `yarn` -> `pnpm` -> `npm`.
The `--packageManager` flag can be used to override the package manager used for the `sku init` script.
This affects what package manager is used to install dependencies, as well as the scripts present in the initialized app template.

```sh
$ pnpm dlx sku init --packageManager pnpm my-app
```

- Adds support for Storybook configuration via the `.storybook` directory ([#878](https://github.com/seek-oss/sku/pull/878))

sku now supports the standard `.storybook` configuration directory, as documented in [Storybook's configuration documentation].
Please read [sku's storybook documentation][sku storybook docs] for more info.

[Storybook's configuration documentation]: https://storybook.js.org/docs/react/configure/overview
[sku storybook docs]: https://seek-oss.github.io/sku/#/./docs/storybook

- Drop support for running `devServerMiddleware` alongside `sku storybook` ([#878](https://github.com/seek-oss/sku/pull/878))

Now that sku supports Storybook configuration via the `.storybook` directory, this feature is unnecessary.
Storybook middleware can be configured by creating a `middleware.js` file in the `.storybook` directory.
See [the sku docs][sku storybook middleware] for more info.

**NOTE**: While this is technically a breaking change, it does not affect app builds, therefore it has been downgraded to a `minor` release.

[sku storybook middleware]: https://seek-oss.github.io/sku/#/./docs/storybook?id=devserver-middleware

- Update TypeScript to 5.2 ([#886](https://github.com/seek-oss/sku/pull/886))

This release includes breaking changes. See the [TypeScript 5.2 announcement][ts52] for more information.

[ts52]: https://devblogs.microsoft.com/typescript/announcing-typescript-5-2/

### Patch Changes

- Fixes a bug where sku would fail to suggest existing `package.json` scripts before suggesting its own commands ([#876](https://github.com/seek-oss/sku/pull/876))

- Remove `lodash` dependency ([#883](https://github.com/seek-oss/sku/pull/883))

- Propagate `--config` argument to Storybook process ([#879](https://github.com/seek-oss/sku/pull/879))

Fixes a bug where `sku storybook` and `sku build-storybook` would not honour a custom sku config specified via the `--config` flag

- Fixes a bug where `pnpm` was not detected correctly when detecting [compile packages](https://seek-oss.github.io/sku/#/./docs/extra-features?id=compile-packages) ([#876](https://github.com/seek-oss/sku/pull/876))

- Bump `@pmmmwh/react-refresh-webpack-plugin` and `webpack-dev-server` dependencies. Remove unused dependencies. ([#885](https://github.com/seek-oss/sku/pull/885))

- Adds support for `pnpm` when suggesting commands ([#876](https://github.com/seek-oss/sku/pull/876))

- Disable Storybook telemetry ([#878](https://github.com/seek-oss/sku/pull/878))

## 12.3.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sku/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sku",
"version": "12.3.3",
"version": "12.4.0",
"description": "Front-end development toolkit, powered by Webpack, Babel, CSS Modules, Less and Jest",
"main": "index.js",
"bin": {
Expand Down

0 comments on commit e011b59

Please sign in to comment.