Skip to content

Instantly share code, notes, and snippets.

@gasolin
Created April 30, 2014 02:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gasolin/66ae3df1557f576f538b to your computer and use it in GitHub Desktop.
Save gasolin/66ae3df1557f576f538b to your computer and use it in GitHub Desktop.
BB headers build script
var provecss = require('provecss');
var fs = require('fs');
// read file
var input = fs.readFileSync('headers.css', 'utf8');
var output = provecss(input, {path:'headers.css'});
// write file
fs.writeFileSync('headers.out.css', output);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment