a workshop in Grunt and Hologram
Front-end engineer & designer at Vox Media (publisher of Vox, SB Nation, The Verge, Polygon, Curbed, Eater & Racked)
Sassvocate
Co-host of the DC Sass Meetup
Hologram is a Ruby gem that parses comments in your CSS and turns them into a beautiful style guide.
/*doc
---
title: Buttons
name: button
category: Base CSS
---
Button styles can be applied to any element. Typically you'll want to
use either a `<button>` or an `<a>` element:
```html_example
<button class="btn btnDefault">Click</button>
<a class="btn btnPrimary" href="http://trulia.com">Trulia!</a>
```
*/
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
//tasks go here
sass: {
dist: {
files: {
// Project Scss
'css/*' : 'scss/*'
}
}
},
});
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.registerTask('default', ['sass']);
};
github.com/allypalanzi/codeherconf
github.com/allypalanzi/codeherconf
slides.com/allypalanzi/codeherconf
@mylifeasalllly