Skip to content

Commit 02ae9d8

Browse files
Use single quotes in Sass fallback error message
Switch error string from template literal to single quotes for consistency with repo style (Prettier singleQuote). No behavioral change; build and lint remain green.
1 parent 9568d81 commit 02ae9d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ async function runWebpack(isWithoutKatex, isWithoutTiktoken, minimal, sourceBuil
9696
const mod = await import('sass')
9797
sassImpl = mod.default || mod
9898
} catch (e2) {
99-
throw new Error(`No Sass implementation available. Install 'sass-embedded' or 'sass'.`)
99+
throw new Error("No Sass implementation available. Install 'sass-embedded' or 'sass'.")
100100
}
101101
}
102102

0 commit comments

Comments
 (0)