UNPKG

gel-grid

Version:

A flexible code implementation of the GEL Grid

8 lines (5 loc) 184 B
const sass = require('sass'); global.compileCSS = async (filePath = '') => { const { css } = await sass.compileAsync(filePath, { loadPaths: ['./node_modules'] }); return css; };