accelerator-tool-cli
Advanced tools
Comparing version 0.3.12 to 0.3.13
@@ -22,3 +22,6 @@ import { | ||
const fixedFiles = matches.filter((aa) => !aa.endsWith('index.hbs')); | ||
const basenames = fixedFiles.map((aa) => basename(aa)) | ||
const basenames = fixedFiles.map((aa) => ( | ||
basename(aa).slice(0, -3) | ||
)); | ||
let files; | ||
@@ -28,3 +31,3 @@ | ||
files = await Promise.all( | ||
basenames.map((path) => readFile(path, 'utf8')), | ||
files.map((path) => readFile(path, 'utf8')), | ||
); | ||
@@ -37,3 +40,3 @@ } catch (err) { | ||
registerPartial(basenames[index], content) | ||
)) | ||
)); | ||
@@ -40,0 +43,0 @@ return resolve(); |
{ | ||
"name": "accelerator-tool-cli", | ||
"version": "0.3.12", | ||
"version": "0.3.13", | ||
"description": "All the code for the Accelerator devtool. Generally invoked by accelerator-tool or xlr8r.", | ||
@@ -5,0 +5,0 @@ "author": "furkle", |
65430
1052