prettier/docs/watching-files.md

440 B

id title
watching-files Watching For Changes

If you prefer to have prettier watch for changes from the command line you can use a package like onchange. For example:

npx onchange '**/*.js' -- npx prettier --write {{changed}}

or add the following to your package.json

  "scripts": {
    "prettier-watch": "onchange '**/*.js' -- prettier --write {{changed}}"
  },