build(deps-dev): apply updates
[poolifier.git] / typedoc.mjs
index 1d74fb4e16d20aeb63dfd7ad8e7563130425378f..86f160da4960b68f9ec2c39a5b053ae14354372a 100644 (file)
@@ -1,7 +1,7 @@
+import { execSync } from 'node:child_process'
 import { copyFileSync, mkdirSync, readdirSync, rmSync } from 'node:fs'
 import { dirname, join } from 'node:path'
 import { fileURLToPath } from 'node:url'
-import { execSync } from 'node:child_process'
 
 try {
   mkdirSync(join(dirname(fileURLToPath(import.meta.url)), 'tmp'), {
@@ -9,7 +9,7 @@ try {
   })
   const markdownFiles = readdirSync(
     join(dirname(fileURLToPath(import.meta.url)), 'docs')
-  ).filter((file) => file.endsWith('.md'))
+  ).filter(file => file.endsWith('.md'))
   for (const markdownFile of markdownFiles) {
     copyFileSync(
       join(dirname(fileURLToPath(import.meta.url)), 'docs', markdownFile),