git ssb

0+

mixmix / marama



Tree: ca2790e4654757e6f97c0d5cff97163c1865af61

Files: ca2790e4654757e6f97c0d5cff97163c1865af61 / lib / styles-write.js

329 bytesRaw
1const getCSS = require('./styles-compile')
2const fs = require('fs')
3const { join } = require('path')
4
5function stylesWrite () {
6 fs.writeFile(join(__dirname, '../marama.css'), getCSS(), (err, done) => {
7 if (err) throw err
8 console.log('mcss built')
9 })
10}
11
12module.exports = stylesWrite
13
14if (!module.parent) stylesWrite()
15

Built with git-ssb-web