Rename wizard.js to intake.js

This commit is contained in:
Will Boyd
2025-01-28 16:38:29 -05:00
parent 1877e43611
commit afc22e7ba5
2 changed files with 2 additions and 2 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ import * as commander from 'commander';
import path from 'path';
import * as parser from './src/parser.js';
import * as settings from './src/settings.js';
import * as wizard from './src/wizard.js';
import * as intake from './src/intake.js';
import * as writer from './src/writer.js';
(async () => {
@@ -15,7 +15,7 @@ import * as writer from './src/writer.js';
.addHelpText('after', '\nMore documentation is at https://github.com/lonekorean/wordpress-export-to-markdown')
// gather config options from command line and wizard
const config = await wizard.getConfig();
const config = await intake.getConfig();
// parse data from XML and do Markdown translations
const posts = await parser.parseFilePromise(config)
View File