purescript-puppeteer/bun/fmt.js

36 lines
833 B
JavaScript
Raw Normal View History

2023-09-29 05:14:09 +00:00
/** @type {(parser: string, ps: string[]) => import("bun").Subprocess} */
const prettier = (parser, ps) =>
Bun.spawn(['bun', 'x', 'prettier', '--write', '--parser', parser, ...ps], {
stdout: 'inherit',
stderr: 'inherit',
})
const procs = [
prettier('babel', [
'./src/**/*.js',
'./bun/**/*.js',
'./.prettierrc.js',
'./tailwind/**/*.js',
]),
prettier('json', ['./package.json', './jsconfig.json']),
prettier('html', ['./assets/**/*.html']),
prettier('css', ['./assets/**/*.css', './tailwind/**/*.css']),
prettier('sh', ['./Dockerfile']),
Bun.spawn(
[
'bun',
'x',
'purs-tidy',
'format-in-place',
'src/**/*.purs',
'test/**/*.purs',
],
{
stdout: 'inherit',
stderr: 'inherit',
},
),
]
await Promise.all(procs.map(p => p.exited))