UNPKG

@dbml/cli

Version:

See our website [@dbml/cli](https://dbml.dbdiagram.io/cli/) for more information

13 lines (10 loc) 218 B
import fs from 'fs'; function validateFilePlugin (_path) { const stat = fs.statSync(_path); if (stat.isDirectory(_path)) { throw new Error('Expect input to be files'); } } export { validateFilePlugin, };