Skip to content

Commit

Permalink
style: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-akait committed Jul 25, 2024
1 parent 7c21581 commit 8e9eaee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,7 @@ async function getSassOptions(
};
}

const isModernAPI =
apiType === "modern" || apiType === "modern-compiler";
const isModernAPI = apiType === "modern" || apiType === "modern-compiler";
const { resourcePath } = loaderContext;

if (isModernAPI) {
Expand Down
2 changes: 1 addition & 1 deletion test/implementation-option.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ describe("implementation option", () => {
it("not specify with node-sass", async () => {
const testId = getTestId("language", "scss");
const options = {
implementation: nodeSass
implementation: nodeSass,
};
const compiler = getCompiler(testId, { loader: { options } });
const stats = await compile(compiler);
Expand Down

0 comments on commit 8e9eaee

Please sign in to comment.