Skip to content

Commit 26f0505

Browse files
committed
🆙 update: remove debug code
1 parent f715ffa commit 26f0505

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/utils.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,7 @@ export function stringfyContent (content: any, lang: string): string {
6060
switch (lang) {
6161
case 'yaml':
6262
case 'yml':
63-
const s = yaml.safeDump(content, { indent: 20 })
64-
debug('yaml:', s)
65-
return s
63+
return yaml.safeDump(content)
6664
case 'json5':
6765
return JSON5.stringify(content, null, 2)
6866
case 'json':

0 commit comments

Comments
 (0)