@prettier/plugin-pug
Advanced tools
Comparing version 1.13.1 to 1.13.2
# Next | ||
[diff](https://github.com/prettier/plugin-pug/compare/1.13.1...main) | ||
[diff](https://github.com/prettier/plugin-pug/compare/1.13.2...main) | ||
# 1.13.2 | ||
[diff](https://github.com/prettier/plugin-pug/compare/1.13.1...1.13.2) | ||
- Fix blank lines in inline syntax ([#171]) | ||
[#171]: https://github.com/prettier/plugin-pug/issues/171 | ||
# 1.13.1 | ||
@@ -6,0 +14,0 @@ |
{ | ||
"name": "@prettier/plugin-pug", | ||
"version": "1.13.1", | ||
"version": "1.13.2", | ||
"description": "Prettier Pug Plugin", | ||
@@ -39,11 +39,11 @@ "main": "dist/index.js", | ||
"devDependencies": { | ||
"@types/jest": "~26.0.17", | ||
"@types/node": "~14.14.11", | ||
"@types/prettier": "~2.1.5", | ||
"@typescript-eslint/eslint-plugin": "~4.9.1", | ||
"@typescript-eslint/parser": "~4.9.1", | ||
"@types/jest": "~26.0.20", | ||
"@types/node": "~14.14.20", | ||
"@types/prettier": "~2.1.6", | ||
"@typescript-eslint/eslint-plugin": "~4.12.0", | ||
"@typescript-eslint/parser": "~4.12.0", | ||
"benchmark": "~2.1.4", | ||
"eslint": "~7.15.0", | ||
"eslint-config-prettier": "~7.0.0", | ||
"eslint-plugin-prettier": "~3.2.0", | ||
"eslint": "~7.17.0", | ||
"eslint-config-prettier": "~7.1.0", | ||
"eslint-plugin-prettier": "~3.3.1", | ||
"jest": "~26.6.3", | ||
@@ -54,3 +54,3 @@ "jest-junit": "~12.0.0", | ||
"ts-jest": "~26.4.4", | ||
"typescript": "~4.1.2" | ||
"typescript": "~4.1.3" | ||
}, | ||
@@ -57,0 +57,0 @@ "peerDependencies": { |
@@ -1171,3 +1171,3 @@ import { BuiltInParserName, format, RequiredOptions } from 'prettier'; | ||
.split('\n') | ||
.map((line) => indentString + line) | ||
.map((line) => (line ? indentString + line : '')) | ||
.join('\n'); | ||
@@ -1174,0 +1174,0 @@ result = `\n${result}`; |
Sorry, the diff of this file is too big to display
290901