Skip to content

Commit 277ce77

Browse files
authored
fix: import sass (#38)
Sass has declared that `import sass from 'sass'` is deprecated so now index.js imports as sass indicates
1 parent f0637f9 commit 277ce77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// tooling
22
import mergeSourceMaps from './merge-source-maps';
33
import sassResolve from '@csstools/sass-import-resolve';
4-
import sass from 'sass';
4+
import * as sass from 'sass';
55
import { dirname, resolve as pathResolve } from 'path';
66

77
const requiredPostConfig = {

0 commit comments

Comments
 (0)