Skip to content

Commit 8e9eaee

Browse files
style: fix
1 parent 7c21581 commit 8e9eaee

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/utils.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,7 @@ async function getSassOptions(
176176
};
177177
}
178178

179-
const isModernAPI =
180-
apiType === "modern" || apiType === "modern-compiler";
179+
const isModernAPI = apiType === "modern" || apiType === "modern-compiler";
181180
const { resourcePath } = loaderContext;
182181

183182
if (isModernAPI) {

test/implementation-option.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ describe("implementation option", () => {
203203
it("not specify with node-sass", async () => {
204204
const testId = getTestId("language", "scss");
205205
const options = {
206-
implementation: nodeSass
206+
implementation: nodeSass,
207207
};
208208
const compiler = getCompiler(testId, { loader: { options } });
209209
const stats = await compile(compiler);

0 commit comments

Comments
 (0)