This fixes the constant eslint error and warnings in the repository. It is mostly a temporally solution rather than a actual refactor, so a lot of eslint-disable comments where used.
12 lines
269 B
JavaScript
12 lines
269 B
JavaScript
#!/usr/bin/env node
|
|
import process from 'node:process';
|
|
|
|
import Cli from '@eslegant/cli';
|
|
|
|
const cli = new Cli({
|
|
// eslint-disable-next-line unicorn/no-await-expression-member
|
|
configs: (await import('./configs.js')).default,
|
|
dir: process.cwd(),
|
|
});
|
|
await cli.run();
|