Skip to content

Commit

Permalink
fix: import sass (#38)
Browse files Browse the repository at this point in the history
Sass has declared that `import sass from 'sass'` is deprecated so now index.js imports as sass indicates
  • Loading branch information
PedroCuadra authored Dec 28, 2023
1 parent f0637f9 commit 277ce77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// tooling
import mergeSourceMaps from './merge-source-maps';
import sassResolve from '@csstools/sass-import-resolve';
import sass from 'sass';
import * as sass from 'sass';
import { dirname, resolve as pathResolve } from 'path';

const requiredPostConfig = {
Expand Down

0 comments on commit 277ce77

Please sign in to comment.