DEBUG.md
January 19, 2022 ยท View on GitHub
Debugging
How to run example in the repository ?
yarn run example examples/example.ts --config .prettierrc
How to debug the plugin using node debugger ?
You can set a debugger anywhere in the code and then use following command:
yarn run compile && node --inspect-brk ./node_modules/.bin/prettier --config .prettierrc --plugin lib/src/index.js examples/example.ts
How to debug the unit test using debugger ?
You can set a debugger anywhere in the code and then use following command:
node --inspect-brk ./node_modules/.bin/jest -i
Or, to debug a single unit test file
node --inspect-brk ./node_modules/.bin/jest -i <name-or-relative-path-of-the-file-file>
How to run prettier in any codebase using the plugin ?
First, install the @trivago/prettier-plugin-sort-imports and then use following command:
./node_modules/.bin/prettier --write '**/*.{ts,tsx,js}'