-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: π import less cjs instead of es6
- Loading branch information
1 parent
c7ec0f4
commit bf8627f
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
const less = require('less/lib/less-node'); | ||
const less = require('less') | ||
|
||
module.exports = async ({ content, filename, options }) => { | ||
const { css, map, imports } = await less.render(content, { | ||
sourceMap: {}, | ||
filename, | ||
...options, | ||
}); | ||
}) | ||
|
||
return { | ||
code: css, | ||
map, | ||
dependencies: imports, | ||
}; | ||
}; | ||
} | ||
} |