Skip to content

Version Packages #1217

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions .changeset/clever-facts-accept.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dark-plums-play.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/dark-wolves-argue.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/evil-socks-sell.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/flat-berries-swim.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/forty-adults-jog.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/full-zoos-appear.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lovely-houses-spend.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/mighty-groups-tell.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/plenty-doodles-train.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slimy-pots-press.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stupid-onions-speak.md

This file was deleted.

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

## 14.3.0

### Minor Changes

- Add Port and Strict Port toggle for Start and Serve ([#1232](https://github.com/seek-oss/sku/pull/1232))

Previously `sku serve` would allow you to choose the port to use with `--port`. This is now available on `sku start`.

**Start development server using port 8080:**

```sh
sku start --port 8080
```

By default, if this port is unavailable a new port will be chosen. If you'd instead prefer to the command to fail, the `--strict-port` in now available.

**Fails if port not available:**

```sh
sku serve --port 8080 --strict-port
```

- `vite (start|start-ssr)`: Open default browser on server start ([#1223](https://github.com/seek-oss/sku/pull/1223))

- `vite start`: Enable `devServerMiddleware` for vite projects ([#1225](https://github.com/seek-oss/sku/pull/1225))

- `vite (start|build)`: Enable `csp` functionality ([#1226](https://github.com/seek-oss/sku/pull/1226))

- Change output behaviour of `sku build` with `vite` as the bundler. All asset files now get added directly to the `dist` folder instead of being nested. ([#1234](https://github.com/seek-oss/sku/pull/1234))
Change `publicPath` behaviour in the `sku.config` for `sku build` with `vite`. The given value now prepends itself to the `href` and `src` attributes of assets in the `index.html` file.
- Support root resolution of `.jsx` and `.cjs` files ([#1219](https://github.com/seek-oss/sku/pull/1219))

- `setup-hosts` ipv6 hosts are now added alongside their ipv4 counterpart ([#1221](https://github.com/seek-oss/sku/pull/1221))

- `vite (start)`: Enable `httpsDevServer` config option ([#1227](https://github.com/seek-oss/sku/pull/1227))

### Patch Changes

- `vite`: Ensure bundled pre-render entrypoint has a consistent name, regardless of the configured ([#1216](https://github.com/seek-oss/sku/pull/1216))
`renderEntry`
- Disable Node experimental warnings to reduce log noise ([#1236](https://github.com/seek-oss/sku/pull/1236))

- `vite`: Change render entrypoint file `api` to match that of `webpack` rendering ([#1222](https://github.com/seek-oss/sku/pull/1222))

- Re-order root resolution file extensions in order of most common to least common file types ([#1219](https://github.com/seek-oss/sku/pull/1219))

Files with no extension will now be resolved in the following order: `.ts` -> `.tsx` -> `.mts` -> `.cts` -> `.js` -> `.jsx` -> `.mjs` -> `.cjs` -> `.json`

## 14.2.0

### Minor 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": "14.2.0",
"version": "14.3.0",
"description": "Front-end development toolkit, powered by Webpack, Babel, Vanilla Extract and Jest",
"types": "./dist/index.d.ts",
"bin": {
Expand Down
10 changes: 6 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading