Closed github-actions[bot] closed 7 months ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
pandabox-z5kx | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Apr 2, 2024 7:47am |
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 main, this PR will be updated.
Releases
@pandabox/unplugin@0.1.0
Minor Changes
c1b48fd: - Fix CSS generation when using
outfile
Add
optimizeJs
option to optionally transform your source code by inlining thecss
/cva
/${patternFn}
resulting classNames or even simplifystyled
JSX factory to their primitive HTML tags (originally coming from@pandabox/unplugin-panda-macro
)-> This is enabled by default and can be disabled by setting
optimizeJs
tofalse
or"macro"
(to only transform functions usingwith { type: "macro" }
)Transform
cva
to an optimized string-version of thecva
function :-> Style objects are converted to class strings, this might not work when styles should be merged and you can opt-out of this by using
with { type: "runtime" }
on yourcva
import or by settingoptimizeJs
to false (ormacro
to only transform functions usingwith { type: "macro" }
)Add e2e tests (in-browser + HMR)