function getFiles(filepath) {
  return fs
    .readdirSync(filepath)
    .filter((file) => fs.statSync(path.join(filepath, file)).isFile())
}