The turretcss-boilerplate is a basic boilerplate using turretcss, PostCSS, PostCSS CLI, postcss-preset-env, and CSSNano.
There are two quick start ways to download turretcss boilerplate:
- Download the latest release.
- Clone the repo:
git clone https://github.com/turretcss/turretcss-boilerplate.git
.
Once downloaded make sure to run npm install
or yarn
to install all npm dependancies.
Within the download you'll find the following directories and files.
template/
├── assets/
│ ├── css/
│ ├── fonts/
│ ├── glyphs/
│ ├── images/
├── dist/
│ index.html
│ package.json
│ postcss.config.js
│ README.md
│ theme.html
└─ yarn.lock
Start script runs the watch
script
"start": "npm run watch"
Runs the build script and watches directory
"watch": "npm run build -- -w"
Builds CSS using PostCSS through postcss-cli
, config is contained in postcss.config.js
"build": "postcss assets/css/main.css -o dist/bundle.css",
Scott de Jonge
- Twitter: @scottdejonge
- Github: @scottdejonge
Template is maintained under the Semantic Versioning guidelines.
Code released under the MIT license.