What's New
Created qwik
CLI
qwik add
command
Added a qwik
cli to the @builder.io/qwik
package, that can be used to add integrations, such as middlewares cloudflare-pages
, netlify-edge
, node
(express/connect middleware api). Also includes adding static site generations (ssg) and Qwik React.
qwik build
command
The qwik build
command should speed up production builds by parallelizing typechecking, the client build, the server build, and the ssg build. Note that this CLI command is not required to build qwik apps, but only added as a convenience to speed up builds and simplify npm build scripts.
Updated create-qwik
Updated npm create qwik
cli to only include creating a starter app. Additionally, it'll ask to install dependencies.
Preview command
Starters now come with a preview
script, that runs the vite preview
command. This is so the initial starter does not have to come with a server (such as express) by default, and allows the dev to later choose which server they want to add. To allow the preview script to work, a new src/entry.preview.tsx
file was added, along with the build.preview
npm script.
Features and Performance
Fixes
Docs
Tests and Chores
New Contributors
Full Changelog: https://github.com/BuilderIO/qwik/compare/v0.0.108...v0.0.109