-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcopy-files.ts
50 lines (43 loc) · 1.41 KB
/
copy-files.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import glob from "fast-glob"
import fs from "fs"
import path from "path"
import { promisify } from "util"
const pStat = promisify(fs.stat)
const pCopyFile = promisify(fs.copyFile)
interface ICopyFile {
source: string
dest: string
}
const filesToCopy: ICopyFile[] = [
{ source: "package.json", dest: "dist" },
{ source: "package-lock.json", dest: "dist" },
{ source: "README.md", dest: "dist" },
{ source: "LICENSE.md", dest: "dist" }
]
const expandFilePatterns = (cwd?: string) => async (file: ICopyFile) => {
const files = await glob(file.source, {cwd})
return Promise.all(files.map(async (resolvedFile): Promise<ICopyFile> => {
const source = path.resolve(cwd || "./", resolvedFile)
let dest = path.resolve(cwd || "./", file.dest)
const destStats = await pStat(dest)
if (destStats.isDirectory) {
dest = path.resolve(dest, path.basename(source))
}
return { source, dest }
}))
}
const start = async () => {
const root = path.resolve(__dirname, "../")
const resolvedFilesDeep = await Promise.all(filesToCopy.map(expandFilePatterns(root)))
const resolvedFiles = ([] as ICopyFile[]).concat.apply([], resolvedFilesDeep)
console.log(`Copying ${resolvedFiles.length} files`)
await Promise.all(resolvedFiles.map((aFile) => {
console.log(" ", aFile.source, " -> ", aFile.dest)
return pCopyFile(aFile.source, aFile.dest)
}))
console.log("Done")
}
start().catch((e) => {
console.error(e)
process.exit(1)
})