this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove `.executableDir()`

+1 -3
+1 -3
cli.js
··· 1 1 #! /usr/bin/env node 2 2 3 - import {fileURLToPath} from 'node:url'; 4 3 import {program} from 'commander'; 5 4 import {packageJson} from './constants/index.js'; 6 5 import { ··· 14 13 program 15 14 .name(packageJson.name) 16 15 .description(packageJson.description) 17 - .version(packageJson.version) 18 - .executableDir(fileURLToPath(new URL('commands', import.meta.url))); 16 + .version(packageJson.version); 19 17 20 18 program 21 19 .command('disable')