prettier/website/versioned_docs/version-stable/watching-files.md

483 B

id title original_id
version-stable-watching-files Watching For Changes watching-files

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}}"
  },