Skip to content

Commit 1294385

Browse files
committed
fix(compiler-sfc): preserve old deindent behavior for pug
fix #12611
1 parent fb93c1b commit 1294385

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/compiler-sfc/src/parseComponent.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export const DEFAULT_FILENAME = 'anonymous.vue'
1010
const splitRE = /\r?\n/g
1111
const replaceRE = /./g
1212
const isSpecialTag = makeMap('script,style,template', true)
13+
const isNeedIndentLang = makeMap('pug,jade')
1314

1415
export interface SFCCustomBlock {
1516
type: string
@@ -177,7 +178,11 @@ export function parseComponent(
177178
if (depth === 1 && currentBlock) {
178179
currentBlock.end = start
179180
let text = source.slice(currentBlock.start, currentBlock.end)
180-
if (options.deindent) {
181+
if (
182+
options.deindent ||
183+
// certain langs like pug are indent sensitive, preserve old behavior
184+
(currentBlock.lang && isNeedIndentLang(currentBlock.lang))
185+
) {
181186
text = deindent(text)
182187
}
183188
// pad content so that linters and pre-processors can output correct

0 commit comments

Comments
 (0)