npm @redwoodjs/core 0.37.3
v0.37.3

latest releases: 9.0.0-canary.148, 9.0.0-canary.147, 9.0.0-canary.146...
2 years ago

This release requires a code modification for projects created at v0.37.2

Patch release with critical fix for webpack-cli bug:

Code Modification

Projects that started with v0.37.2 (or projects experiencing a Webpack error when running yarn rw dev) should add the following resolution to their root ./package.json:

Note: once webpack/webpack-cli#2990 is resolved, the resolution can be removed

// ./package.json

{
  "private": true,
  "workspaces": {
    "packages": [
      "api",
      "web",
      "packages/*"
    ]
  },
  "devDependencies": {
    "@redwoodjs/core": "0.37.3"
  },
  "eslintConfig": {
    "extends": "@redwoodjs/eslint-config",
    "root": true
  },
  "engines": {
    "node": "14.x",
    "yarn": "1.x"
  },
+  "resolutions": {
+    "@webpack-cli/serve": "1.5.2"
+  }
}

Don't miss a new core release

NewReleases is sending notifications on new releases.