1
0
mirror of https://github.com/stolksdorf/homebrewery.git synced 2025-12-23 05:51:29 +00:00
This commit is contained in:
Scott Tolksdorf
2018-04-08 22:23:03 -04:00
committed by Trevor Buckner
parent 40f1d4c790
commit c8875cff94
51 changed files with 2837 additions and 2852 deletions

View File

@@ -1,10 +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) => {
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) => {
}, (err)=>{
console.error(err);
});