Development | Preprod | Production |
---|---|---|
ingenie WordPress theme using TailwindCSS and Laravel Mix.
cd
into ingenie2020 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
- Once theme is dropped into your local development site just activate the 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 */
Work in progress but currently if checked into github a shippable build starts and runs the #### npm run prod
script. It is then deplyed to the master branch on the new ingenie website we are building out.
Work in progress...