v5.7.0
Read the release post on bud.js.org for additional details
🛼 Improvements
🩹 Fixes
- fix: remove rules section from bud-tailwindcss base stylelint config (#1239) props @alexdanylyschyn
- fix: add scss stylelint rules for tailwindcss (#1288) props @joshuafredrickson
- fix: indicator/hmr errors (#1248)
- fix: bud.terser (#1285)
- fix: babel root (#1284)
- fix: bud.alias (#1283)
- fix: error logging (#1290)
Upgrade guide
If you were using bud.serve to set SSL options, you'll need to update that call as the function's API has changed slightly:
bud.serve({
url: 'https://my-site.com',
key: '/path/to/site.key',
cert: '/path/to/site.crt',
})
becomes:
bud.serve('https://my-site.com', {
key: '/path/to/site.key',
cert: '/path/to/site.crt',
})
You may pass any other node server options you want or need to using the second parameter.