A minimalist boilerplate for WordPress theme development using Laravel Mix.
- Clone into an empty theme directory
cd
into your new theme directory- Run
npm install
- Copy the
local-example.json
file tolocal.json
and replace theproxy
value with your local development hostname- This will allow you to use live reload/injection while working on your CSS/JS
Run npm run dev
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.
Run npm run prod
This will prepare versioned assets and sourcemaps for your CSS and JS files.
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.