We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abbaf04 commit f41f7a7Copy full SHA for f41f7a7
bin/cosmere
@@ -12,13 +12,13 @@ Options:
12
`);
13
14
if (options['generate-config']) {
15
- require('../dist/src/GenerateCommand').default(options['--config']);
+ require('../dist/src/cli/GenerateCommand').default(options['--config']);
16
} else {
17
- require('../dist/src/MainCommand').default(options['--config'], options['--force'])
+ require('../dist/src/cli/MainCommand').default(options['--config'], options['--force'])
18
.then()
19
.catch(e => {
20
require('signale').fatal(e);
21
process.exit(1);
22
}
23
);
24
-}
+}
0 commit comments