feat(parser): handle multi-file solutions

This commit is contained in:
Oliver Eyton-Williams
2020-06-04 16:52:49 +02:00
committed by Mrugesh Mohapatra
parent a959d462e9
commit 063145fe90
4 changed files with 25 additions and 6 deletions

View File

@@ -20,8 +20,6 @@ function defaultFile(lang) {
};
}
function createCodeGetter(key, regEx, seeds) {
console.log('seeds');
console.log(seeds);
return container => {
const {
properties: { id }
@@ -122,4 +120,5 @@ function createPlugin() {
};
}
module.exports = createPlugin;
exports.challengeSeedToData = createPlugin;
exports.createCodeGetter = createCodeGetter;