Skip to content

Commit

Permalink
fix: don't prettify if prettier 3 is detected
Browse files Browse the repository at this point in the history
  • Loading branch information
sodatea committed Aug 23, 2023
1 parent ed0d284 commit aa2558d
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ When both options are specified, enables file-system-based template compilation
## prettify

- type: `boolean`
- default: `true`
- default: `true` if prettier v1 or v2 is installed, `false` otherwise

In development mode, we use [prettier](https://prettier.io/) to format the compiled render function for ease of debugging by default. However, if you encounter any obscure bug of prettier, such as [exponential compilation time for deeply nested functions](https://github.com/prettier/prettier/issues/4672), you can disable this option to circumvent it.

Expand Down
2 changes: 1 addition & 1 deletion docs/zh/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ sidebar: auto
## prettify

- 类型:`boolean`
- 默认值:`true`
- 默认值:当检测到 prettier v1 或 v2 时为 `true`,否则为 `false`

在开发环境下,我们默认使用 [prettier](https://prettier.io/) 格式化编译后的模板渲染代码,以方便调试。然而,如果你开发时碰到了 prettier 的某些罕见 bug,比如[格式化多层嵌套的函数时运行时间过长](https://github.com/prettier/prettier/issues/4672),你可以通过禁用这个选项来绕开。

Expand Down
13 changes: 12 additions & 1 deletion lib/loaders/templateLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,17 @@ module.exports = function (source) {
const descriptor = getDescriptor(filename, options, loaderContext)
const script = resolveScript(descriptor, id, options, loaderContext)

// Prettier 3 APIs are all async
// but `vue/compiler-sfc` and `@vue/component-compiler-utils` can only use sync function to format code
let hasCompatiblePrettier = false
try {
const prettier = require('prettier/package.json')
const major = parseInt(prettier.version.split('.')[0], 10)
if (major === 1 || major === 2) {
hasCompatiblePrettier = true
}
} catch (e) {}

// for vue/compiler-sfc OR @vue/component-compiler-utils
const finalOptions = {
source,
Expand All @@ -53,7 +64,7 @@ module.exports = function (source) {
isProduction,
isFunctional,
optimizeSSR: isServer && options.optimizeSSR !== false,
prettify: options.prettify,
prettify: options.prettify === undefined ? hasCompatiblePrettier : options.prettify,
bindings: script ? script.bindings : undefined
}

Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@
},
"vue-template-compiler": {
"optional": true
},
"prettier": {
"optional": true
}
},
"dependencies": {
Expand Down

0 comments on commit aa2558d

Please sign in to comment.