npm @redwoodjs/core 7.1.1
v7.1.1

latest releases: 8.0.0-canary.819, 8.0.0-canary.816, 8.0.0-canary.813...
3 months ago

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 the default property on the Redwood Vite plugin, like redwood.default(). This fixes the ES module default export interoperability so that no change is necessary in switching between module types.

Don't miss a new core release

NewReleases is sending notifications on new releases.