Vehicle energy consumption and production simulator
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
const purify = require("purify-css")
|
|
|
|
|
|
|
|
// Reference of all HTML files from root directory
|
|
|
|
let content = ['./*.html'];
|
|
|
|
|
|
|
|
// Reference of all CSS files from root directory
|
|
|
|
let css = ['3rdparty/bulma/css/bulma.css', './app/app.css'];
|
|
|
|
|
|
|
|
let files = {
|
|
|
|
output: '../.intermediate/app.css',
|
|
|
|
whitelist: ['is-multiple', 'is-loading', 'is-narrow', 'is-active', 'climate-zone'],
|
|
|
|
minify: true,
|
|
|
|
info: true
|
|
|
|
};
|
|
|
|
|
|
|
|
purify(content, css, files, function (purifiedAndMinifiedResult) {
|
|
|
|
console.log(purifiedAndMinifiedResult);
|
|
|
|
});
|