import { run } from './script.ts'; import { parse } from 'https://deno.land/std@0.87.0/flags/mod.ts'; const {_: [entryFilePath], ...options} = parse(Deno.args); if (typeof entryFilePath === 'number') throw Error('entryFilePath must be string'); await run(entryFilePath, options);