Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
fix: make sure prettier is explicitly installed
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolassutter committed Jan 17, 2023
1 parent 40b3750 commit f5ffbf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export function removeUnusedItems (items: string[]) {
export const TS = packageExists('typescript')
export const Nuxt = packageExists('nuxt')
export const Vue = packageExists('vue')
export const Prettier = packageExists('prettier')
export const Prettier = packageExists('prettier') && isPackageListed('prettier')
export const EslintPluginPrettier = packageExists('eslint-plugin-prettier')
export const VueEslintTypescript = packageExists('@vue/eslint-config-typescript')
export const VueEslintPrettier = packageExists('@vue/eslint-config-prettier')

0 comments on commit f5ffbf6

Please sign in to comment.