A boilerplate for WordPress theme development using TailwindCSS and Laravel Mix.
- Clone into an empty theme directory
cd
into your new theme directory- Run
npm install
- Duplicate the
local-example.json
file tolocal.json
, then replace theproxy
value with your local development hostname- This will allow you to use live reload/injection while working on your CSS/JS
- Run a search & replace across the theme to replace all instances of 'WpTailwindCssThemeBoilerplate' with a PHP namespace specific to your theme/project
- Change the theme information in
style.css
- Activate your theme
- Run
npm run dev
and start coding
Assets will be compiled and BrowserSync will proxy the dev host allowing you to work while seeing your CSS and JS changes appear on the site as they are recompiled.
Runs the development build
Runs the product build which includes asset file versioning and Purge CSS
Versioned assets will appear in a build
directory alongside a manifest file which is used while
enqueuing scripts and styles.
This saves you the need to adjust version parameters on your assets and makes it possible to remove parameters on
asset URLs without losing the ability to force those assets to update in browsers.
Purge CSS is pretty darn excellent and is used to strip out any CSS that isn't being used during the production build.
It does this by looking through specified template files to work out which CSS selectors have been used. If it can't find a CSS rule being used in the templates, it removes it from the final CSS.
See the paths
option in the mix.purgeCss()
invocation in webpack.mix.js
for the file paths being looked at.
The easiest way is to delineate your CSS with comments as per the example below. See whitelisting for more options.
/* purgecss start ignore */
h1 {
color: blue;
}
h3 {
color: green;
}
/* purgecss end ignore */