mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
fba17d77de
* Refactor and fix styling for first time flow. Remove seed phrase from persisted metamask state * Fix linting and tests * Fix translations, initialization notice routing * Fix drizzle tests * Fix e2e tests * Fix integration tests * Fix styling * Fix migration naming from 030 to 031 * Open extension in browser when user has not completed onboarding
26 lines
834 B
JavaScript
26 lines
834 B
JavaScript
const fs = require('fs')
|
|
const path = require('path')
|
|
|
|
module.exports = bundleCss
|
|
|
|
var cssFiles = {
|
|
'index.css': fs.readFileSync(path.join(__dirname, '/app/css/output/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
|
|
}
|