Project made using Liquid, a Yeoman generator for building WordPress and static projects with the following: Scotch Box (Vagrant), Gulp, SCSS, BrowserSync.
There's a config.php file embedded in the Liquid theme that displays the Vagrant configuration settings for the project. Once Vagrant is running, you can access the file, locally, at http://192.168.33.10/config.php.
$ vagrant up$ vagrant suspend$ vagrant halt$ vagrant reload$ vagrant destroyThe package.json file has been set up to trigger the bower-installer tool after npm install is complete. This will automagically run bower install. In the case that you need to install bower components manually, the command is below.
$ npm install$ bower installDefault task
Builds source code to the theme folder, launches BrowserSync, and watches for code changes.
$ gulpBuild task
Builds source code to the theme folder.
$ gulp buildCSScomb is a coding style formatter that uses the .csscomb.json configuration file in the project root to format CSS.
Install CSScomb
npm install -g csscombUse CSScomb
csscomb src/assets/scss/CSScomb plugins