Does anyone know about an alpha/beta bootstrap 4 custom generator, same that is available for bootstrap 3 at Customize and download?
https://getbootstrap.com/docs/4.0/customize/ still unavailable
As discussed here, there will not be a customizer for Bootstrap 4. This means that you'll need to set up build tools for yourself. This is my workflow (in NodeJS):
npm init
npm install bootstrap
npm install scss-powertools --save-dev
scss
folder (in the root of your project), like scss/name.scss
@import "bootstrap/scss/bootstrap";
or import the individual components as you need thempackage.json
: "build": "scss-powertools scss/name.scss output/compiled.css"
npm run build
, you will find your compiled CSS in output/compiled.css
(or whatever you have specified as an option in the build command)Notice! scss-powertools
doesn't minify by default. To enable it use the --production
flag. You can find all information about it here.
Simple setup can be found from this Gist.
You can find my previous workflow here. In it I had to set up everything from compilation to linting manually.