December 3rd, 2024
The latest news releases from the Qwik team
December 3rd, 2024
December 3rd, 2024
November 25th, 2024
November 25th, 2024
November 25th, 2024
Minor Changes
CHORE: Prepare backwards compatibility for V1 libraries in V2. (by @wmertens in #7044)
We move internal fields
immutablePropsandflagsout of JSXNode as they are not meant for public use.This will allow projects using older V1 libraries to continue to work with the Qwik V2 by adding the following
package.jsonchanges:{ "dependencies": { "@builder.io/qwik": "^1.11.0", "@qwik.dev/core": "^2.0.0" } }And will prevent typescript errors when using libraries which haven't upgraded to V2 yet.
✨ add monorepo support to the
qwik addcommand by adding aprojectDirparam (by @shairez in #7059)That way you can run
qwik add --projectDir=packages/my-packageand it will add the feature to the specified project/package (sub) folder, instead of the root folder.