UNPKG

@forwardslashns/fws-cli

Version:

CLI meant to work together with other Forwardslash boilerplates.

9 lines (7 loc) 241 B
import { readdirSync } from 'fs'; import { handleSvgFile } from './handleSvgFile.js'; export const handleSvgFiles = (svgDirPath) => { readdirSync(svgDirPath).forEach(async (file) => { handleSvgFile(svgDirPath, file); }); };