UNPKG

gel-sass-tools

Version:

A collection of Sass Settings & Tools which align to key GEL values

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