Skip to content

luetkemj/grunt-for-bones

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Grunt for Bones

Get Started

  1. Download Bones
  2. Add Gruntfile.js and package.json and bower.json to bones at root.
  3. cd to bones
  4. npm install
  5. bower install
  6. grunt init
  7. add to footer.php just before the closing body tag
<script src="//localhost:35729/livereload.js"></script>
  1. grunt dev
  2. add to footer.php just before closing body tag the code that the terminal spits back out at you. should look like
<script type='text/javascript' id="__bs_script__">//<![CDATA[
    document.write("<script async src='http://HOST:3000/browser-sync/browser-sync-client.2.7.6.js'><\/script>".replace("HOST", location.hostname));
//]]></script>
  1. refresh browser
  2. make happy!
  3. grunt build when ready to push to production. creates a build folder of minimized everything. send that to your server and breathe easy.

Requirements

Dev Notes

To get Susy and Breakpoint working you need to include them in scss/style.scss. Add the following @imports and susy config above all other @imports in that file.

@import "../../bower_components/susy/sass/susy";
@import "../../bower_components/breakpoint-sass/stylesheets/breakpoint";

$susy: (
  columns: 12,
  gutters: (2/3),
  math: fluid,
  output: float,
  gutter-position: after,
  grid-padding: 2em,
  debug: (
    image: hide,
    color: rgba(#66f, .25),
    output: background,
    toggle: overlay,
  ),
);

$wrapper-width: 1600px;

Bones has media queries in seperate files that it includes later. This is neat but Susy does not work out of the box in those files. You will need to individually include Susy in each file if you want access to Susy stuff.

Alternately you can just use breakpoint and add your media queries inline. Grunt will parse the style sheet and move all queries to the bottom of a single minified style sheet. You can then ignore/remove bones default way of handling media queries.

About

Grunt boiler for Bones WordPress starter theme

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published