Merge pull request #45 from Bouncey/fix/ui

Fix up the UI and pull in the latest seed files
This commit is contained in:
Stuart Taylor
2018-05-18 14:54:21 +01:00
committed by Mrugesh Mohapatra
parent 04a6a2026c
commit f962d7774a
105 changed files with 7019 additions and 9431 deletions

View File

@@ -45,7 +45,7 @@ that delivers challenge files to the plugin
const { source } = pluginOptions;
const createAndProcessNodes = () =>
source()
.filter(node => node.challengeType !== 7)
.filter(nodes => nodes.some(node => node.superBlock !== 'Certificates'))
.map(nodes => nodes.map(node => createChallengeNodes(node, reporter)))
.map(nodes => nodes.map(node => createNode(node)))
.subscribe();