Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.
Releases
[email protected]
Minor Changes
Add Port and Strict Port toggle for Start and Serve (#1232)
Previously
sku serve
would allow you to choose the port to use with--port
. This is now available onsku start
.Start development server using 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:
vite (start|start-ssr)
: Open default browser on server start (#1223)vite start
: EnabledevServerMiddleware
for vite projects (#1225)vite (start|build)
: Enablecsp
functionality (#1226)Change output behaviour of
sku build
withvite
as the bundler. All asset files now get added directly to thedist
folder instead of being nested. (#1234)Change
publicPath
behaviour in thesku.config
forsku build
withvite
. The given value now prepends itself to thehref
andsrc
attributes of assets in theindex.html
file.Support root resolution of
.jsx
and.cjs
files (#1219)setup-hosts
ipv6 hosts are now added alongside their ipv4 counterpart (#1221)vite (start)
: EnablehttpsDevServer
config option (#1227)Patch Changes
vite
: Ensure bundled pre-render entrypoint has a consistent name, regardless of the configured (#1216)renderEntry
Disable Node experimental warnings to reduce log noise (#1236)
vite
: Change render entrypoint fileapi
to match that ofwebpack
rendering (#1222)Re-order root resolution file extensions in order of most common to least common file types (#1219)
Files with no extension will now be resolved in the following order:
.ts
->.tsx
->.mts
->.cts
->.js
->.jsx
->.mjs
->.cjs
->.json