Concurrent prettier runner
Перейти к файлу
dependabot[bot] 18d2cd7fe7
chore(deps-dev): bump braces from 3.0.2 to 3.0.3
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3.
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
- [Commits](https://github.com/micromatch/braces/compare/3.0.2...3.0.3)

---
updated-dependencies:
- dependency-name: braces
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-16 17:33:23 +00:00
.vscode fix: handle error gracefully 2021-01-21 23:04:02 -08:00
src Upgrade to prettier 3.0 (#24) 2023-10-09 10:19:16 -07:00
.eslintrc.js chore: remove old plugin 2021-01-21 23:40:45 -08:00
.gitignore init 2019-05-08 13:06:47 -07:00
.npmignore init 2019-05-08 13:06:47 -07:00
LICENSE init 2019-05-08 13:06:47 -07:00
SECURITY.md Microsoft mandatory file 2023-06-02 17:45:42 +00:00
package-lock.json chore(deps-dev): bump braces from 3.0.2 to 3.0.3 2024-06-16 17:33:23 +00:00
package.json Upgrade to prettier 3.0 (#24) 2023-10-09 10:19:16 -07:00
readme.md init 2019-05-08 13:06:47 -07:00
tsconfig.json fix: handle error gracefully 2021-01-21 23:04:02 -08:00

readme.md

@mixer/parallel-prettier

A wrapper around prettier that formats files in parallel to speed up large projects.

npm install -g @mixer/parallel-prettier

After installing the CLI, the pprettier command will be available to you.

Ad-hoc Performance

# 300 file project:

prettier --write "src/**/*.{ts,tsx,json,scss}"  6.57s user 0.55s system 131% cpu 5.405 total
pprettier --write "src/**/*.{ts,tsx,json,scss}"  0.41s user 0.08s system 14% cpu 3.455 total

# 1200 file project:

prettier --write "src/**/*.{ts,tsx,json,scss}"  27.09s user 3.26s system 123% cpu 24.496 total
pprettier --write "src/**/*.{ts,tsx,json,scss}"  1.21s user 0.27s system 14% cpu 10.580 total