|
@@ -104,7 +104,7 @@ function parse(source, dest, callback = null) {
|
|
|
timer.start();
|
|
|
}
|
|
|
// Analyse du fichier xml
|
|
|
- const parser = require('./src/parser').from(source).to(dest);
|
|
|
+ const parser = require('./src/coauth/parser').from(source).to(dest);
|
|
|
parser.parse(dest => {
|
|
|
if (verbose) {
|
|
|
timer.stop();
|
|
@@ -127,7 +127,7 @@ function find(source, name) {
|
|
|
console.info(`Search for ${name}'s co-authors...`);
|
|
|
timer.start();
|
|
|
}
|
|
|
- const finder = require('./src/finder');
|
|
|
+ const finder = require('./src/coauth/finder');
|
|
|
finder.in(source).find(name, (result) => {
|
|
|
if (verbose) {
|
|
|
timer.stop();
|