Upgrade Guide
Upgrading your Maizzle projects from v4.x to v5.
Maizzle 5 is a major framework rewrite that comes with awesome new features and improvements, but also includes a few breaking changes.
Migrating an existing project to Maizzle 5 takes less than 10 minutes in most cases.
Node.js
BREAKING CHANGE
Maizzle 5 requires Node.js v18.20 or higher.
Check your current Node.js version:
node --version
Update @maizzle/cli
If you use @maizzle/cli
installed globally, you must upgrade it to v2.x in order to use it in Maizzle 5 projects:
npm install -g @maizzle/cli
Alternatively, you can just use the NPM scripts like npm run dev
from package.json
.
Update package.json
The @maizzle/framework
package is now a module, so you need to update your package.json
file to reflect this change.
{
"private": true,
"type": "module",
"scripts": {
"dev": "maizzle serve",
"build": "maizzle build production"
},
"dependencies": {
"@maizzle/framework": "latest",
"tailwindcss-preset-email": "latest"
}
}
Upgrade dependencies
It's probably best that you do a clean install:
- remove
node_modules
directory - remove
package-lock.json
and/oryarn.lock
Install the latest
version of Maizzle:
npm install @maizzle/framework@latest
Update your HTML
yield
BREAKING CHANGE
The <content />
tag has been replaced with <yield />
.
Make sure to update it in your Layouts and Components:
<!doctype html>
<html lang="en">
<head>
<!-- ... -->
</head>
<body>
<content />
<yield />
</body>
</html>
style
BREAKING CHANGE
Tailwind CSS can now be used as expected, with @tailwind
directives in any <style>
tag, instead of the old <style>{{{ page.css }}}</style>
.
<!doctype html>
<html lang="en">
<head>
<style>
{{{ page.css }}}
@tailwind components;
@tailwind utilities;
</style>
</head>
<body>
<yield />
</body>
</html>
Update tailwind.config.js
We created tailwindcss-preset-email
to make it easier to use Tailwind CSS for styling HTML emails - it outputs more email-friendly CSS and includes some useful plugins.
Using it will now greatly simplify your tailwind.config.js
file, this is all you need:
/** @type {import('tailwindcss').Config} */
module.exports = {
presets: [
require('tailwindcss-preset-email'),
],
content: [
'./components/**/*.html',
'./emails/**/*.html',
'./layouts/**/*.html',
],
}
You now also need to define content sources in your tailwind.config.js
- Maizzle will not automatically scan any paths for files containing Tailwind classes to generate.
Update config.js
The Maizzle config has been reimagined, so naturally there are a few breaking changes.
ESM export
BREAKING CHANGE
The config file is now an ESM module, which means you can use import
and cool stuff like top-level await
.
It also means you need to make this change:
module.exports = {
export default {
If you need to keep using module.exports
you must use the .cjs
extension:
config.js
config.production.js
config.cjs
config.production.cjs
build
BREAKING CHANGE
The build
key, which is where you define what emails to build and where to output them, has changed considerably.
This is how the build
key looks in Maizzle 5:
export default {
build: {
content: ['emails/**/*.html'],
static: {
source: ['images/**/*.*'],
destination: 'images',
},
output: {
path: 'build_production',
extension: 'html',
},
summary: true,
spinner: 'circleHalves',
},
}
components
The components
key has been moved outside build
, to the root of the config file:
export default {
build: {
components: {}
}
components: {}
}
events
Events have been moved to the root of the config file:
export default {
events: {...}
async beforeRender({html, matter, config}) {
// ...
},
}
extraAttributes
This key has been moved to css.attributes.add
:
export default {
extraAttributes: {}
css: {
attributes: {
add: {}
}
}
}
layouts
The layouts
key is no longer used, you can safely remove it.
inlineCSS
Configuration for CSS inlining has been moved under the css.inline
key:
export default {
inlineCSS: {}
css: {
inline: true,
}
}
See the CSS inlining docs for all the options available.
outlook
Configuring the custom tag for Outlook conditionals is done through the same outlook
key, but at the root of the config file instead of inside the posthtml
key:
export default {
posthtml: {
outlook: {}
}
outlook: {
tag: 'mso',
},
}
fetch
The fetch
key has been moved to the root of the config file:
export default {
posthtml: {
fetch: {}
}
fetch: {
tags: ['get'],
},
}
See the fetch docs for the available options.
postcss
PostCSS may now be configured under the root postcss
key:
export default {
build: {
postcss: {}
}
postcss: {}
}
removeAttributes
This Transformer has been moved to css.attributes.remove
:
export default {
removeAttributes: []
css: {
attributes: {
remove: []
}
}
}
removeUnusedCSS
Configuration for this Transformer has been moved to css.purge
:
export default {
removeUnusedCSS: {}
css: {
purge: {}
}
}
shorthandCSS
The shorthand CSS Transformer config has been moved to css.shorthand
:
export default {
shorthandCSS: true
css: {
shorthand: true
}
}
safeClassNames
The safeClassNames
option has been renamed and moved to css.safe
:
export default {
safeClassNames: {}
css: {
safe: {}
}
}
server
Browsersync has been replaced with a custom dev server, powered by Express.js and WebSockets with morphdom
for an HMR-like local development experience.
We call this Hot Markup Replacement™.
This new dev server is much faster and provides a nicer experience, but you'll need to update your config.js
if you want to configure it:
export default {
browsersync: {...},
server: {
port: 3000,
hmr: true,
scrollSync: false,
watch: ['./images/**/*'],
reportFileSize: false,
spinner: 'circleHalves',
},
}
sixHex
This Transformer config has been moved to css.sixHex
:
export default {
sixHex: true
css: {
sixHex: true
}
}
tailwind
The tailwind
key in config.js
has been deprecated, you can safely remove it.
You may now simply use @config
in your <style>
tags or files included with <link>
, to specify a custom Tailwind CSS config file to use:
<style>
@config 'tailwind.custom.js';
@tailwind components;
@tailwind utilities;
</style>
If you prefer using CSS files:
@config 'tailwind.custom.js';
@tailwind components;
@tailwind utilities;
... you may import that through a <link>
tag or with an @import
statement:
<link rel="stylesheet" href="css/tailwind.css">
<!-- or -->
<style>
@import 'css/tailwind.css';
</style>
You can still define a Tailwind config object if you need to, under css.tailwind
:
export default {
css: {
tailwind: {}, // custom Tailwind CSS config object
},
}
templates
The templates
key has been deprecated, see build
above for how to define Template and other assets sources.
applyTransformers
This has been renamed to useTransformers
:
export default {
applyTransformers: true
useTransformers: true
}
Optional
These updates are optional but highly recommended.
Update components
The Maizzle 5 Starter uses updated components for dividers, spacers, or buttons.
We recommend you update your components to the latest versions, which you can find in the Starter project on GitHub.