1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00

Update sass import in styles.js

This commit is contained in:
Chauncey McAskill
2023-09-08 17:11:27 -04:00
committed by GitHub
parent 7f1b6dad2e
commit df1a3a6f3c

View File

@@ -11,7 +11,7 @@ import { merge } from '../utils/index.js';
import { writeFile } from 'node:fs/promises'; import { writeFile } from 'node:fs/promises';
import { basename } from 'node:path'; import { basename } from 'node:path';
import { promisify } from 'node:util'; import { promisify } from 'node:util';
import sass from 'sass'; import * as sass from 'sass';
import { PurgeCSS } from 'purgecss'; import { PurgeCSS } from 'purgecss';
const sassRender = promisify(sass.render); const sassRender = promisify(sass.render);