0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 18:32:41 +00:00

vitreum 4 is looking stable

This commit is contained in:
Scott Tolksdorf
2016-12-25 21:44:27 -05:00
parent 1ec0b2fa91
commit 56048ab936
11 changed files with 121 additions and 712 deletions

10
scripts/phb.js Normal file
View File

@@ -0,0 +1,10 @@
const less = require('less');
const fs = require('fs');
less.render(fs.readFileSync('./client/homebrew/phbStyle/phb.style.less', 'utf8'), {compress : true})
.then((output) => {
fs.writeFileSync('./phb.standalone.css', output.css);
console.log('phb.standalone.css created!');
}, (err) => {
console.error(err);
});