index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
-rw-r--r-- | esbuild-server.mjs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/esbuild-server.mjs b/esbuild-server.mjs index 51d953d..b897a09 100644 --- a/esbuild-server.mjs +++ b/esbuild-server.mjs @@ -125,17 +125,17 @@ const resolveImportedSvg = { build.onLoad({ filter: /\.svg$/ }, async (args) => { const document = (await JSDOM.fromFile(args.path)).window.document; const externalResourceUseEls = Array.from(document.querySelectorAll('use[href*=".svg"')); - const readFiles = {}; const files = [...new Set([...externalResourceUseEls.map(el => el.getAttributeNS(null, 'href').match(/.+\.svg/).at(0) )])]; - await Promise.all(files.map((filename) => - JSDOM - .fromFile(path.join(path.dirname(args.path), filename)) - .then(dom => readFiles[filename] = dom.window.document) - )); + const readFiles = await Promise.all( + files.map(filename => JSDOM.fromFile(path.join(path.dirname(args.path), filename))) + ).then(result => result.reduce((acc, dom, index) => { + acc[files[index]] = dom.window.document; + return acc; + }, {})); const refs = {}; |