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.
31 lines
1.3 KiB
31 lines
1.3 KiB
7 years ago
|
const fs = require('fs')
|
||
|
const path = require('path')
|
||
|
|
||
|
module.exports = bundleCss
|
||
|
|
||
|
var cssFiles = {
|
||
|
'fonts.css': fs.readFileSync(path.join(__dirname, '/app/css/fonts.css'), 'utf8'),
|
||
|
'reset.css': fs.readFileSync(path.join(__dirname, '/app/css/reset.css'), 'utf8'),
|
||
|
'lib.css': fs.readFileSync(path.join(__dirname, '/app/css/lib.css'), 'utf8'),
|
||
|
'index.css': fs.readFileSync(path.join(__dirname, '/app/css/index.css'), 'utf8'),
|
||
|
'transitions.css': fs.readFileSync(path.join(__dirname, '/app/css/transitions.css'), 'utf8'),
|
||
|
'first-time.css': fs.readFileSync(path.join(__dirname, '../mascara/src/app/first-time/index.css'), 'utf8'),
|
||
|
'react-tooltip-component.css': fs.readFileSync(path.join(__dirname, '..', 'node_modules', 'react-tooltip-component', 'dist', 'react-tooltip-component.css'), 'utf8'),
|
||
|
'react-css': fs.readFileSync(path.join(__dirname, '..', 'node_modules', 'react-select', 'dist', 'react-select.css'), 'utf8'),
|
||
|
}
|
||
|
|
||
|
function bundleCss () {
|
||
|
var cssBundle = Object.keys(cssFiles).reduce(function (bundle, fileName) {
|
||
|
var fileContent = cssFiles[fileName]
|
||
|
var output = String()
|
||
|
|
||
|
output += '/*========== ' + fileName + ' ==========*/\n\n'
|
||
|
output += fileContent
|
||
|
output += '\n\n'
|
||
|
|
||
|
return bundle + output
|
||
|
}, String())
|
||
|
|
||
|
return cssBundle
|
||
|
}
|