Patch Release
-
Enable CSS nesting syntax by default when using Tailwind (#10116) by @cannikin
This lets you use nested CSS syntax in your
web/src/index.css
right after you install Tailwind..button { @apply p-2 font-semibold bg-gray-500; &:hover { @apply bg-red-500; } .icon { @apply w-4 h-4; } span { @apply text-sm; } }
-
fix(setup realtime): remove "exp" from suggested setup command (#10151) by @jtoar
The realtime setup command was still suggesting running the experimental server file setup command if the server file wasn't setup. This fixes it so that it points users to the stable setup command,
yarn rw setup server-file
, instead. -
fix(esm): use CJS wrapper for ESM default interop (#10119) by @jtoar
This PR builds on the work started in #10083 around ESM. One of the caveats of that PR was that the default export from
@redwoodjs/vite
broke. The workaround was referencing thedefault
property on the Redwood Vite plugin, likeredwood.default()
. This fixes the ES module default export interoperability so that no change is necessary in switching between module types.