Skip to content
This repository has been archived by the owner on Apr 14, 2022. It is now read-only.

Commit

Permalink
Prettier commands had an extra backslash (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamTReineke authored and muenzpraeger committed Jan 24, 2020
1 parent 19f7848 commit 4ecb29e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/create-lwc-app/src/generators/createGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,9 @@ class CreateGenerator extends Generator {
this.pjson.scripts.lint = 'eslint ./src/**/*.js'
}
this.pjson.scripts.prettier =
'prettier --write \\"**/*.{css,html,js,json,md,ts,yaml,yml}"'
'prettier --write \"**/*.{css,html,js,json,md,ts,yaml,yml}"'
this.pjson.scripts['prettier:verify'] =
'prettier --list-different \\"**/*.{css,html,js,json,md,ts,yaml,yml}"'
'prettier --list-different \"**/*.{css,html,js,json,md,ts,yaml,yml}"'
if (this.clientserver) {
if (this.typescript) {
this.pjson.scripts.build =
Expand Down

0 comments on commit 4ecb29e

Please sign in to comment.