Skip to content

Commit

Permalink
fix: Forward preprocessor options to less (#25)
Browse files Browse the repository at this point in the history
Fixes #24
  • Loading branch information
znck authored Jun 27, 2018
1 parent 986084e commit 3b19c1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/styleProcessors/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const less = {
let error: Error | null = null
nodeLess.render(
source,
{ syncImport: true },
Object.assign({}, options, { syncImport: true }),
(err: Error | null, output: any) => {
error = err
result = output
Expand Down

1 comment on commit 3b19c1e

@JaredCen
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Excuse me, can the new version with this commit be published as soon as possible?

Please sign in to comment.