Output radar html files

This commit is contained in:
Tom Raithel
2017-01-22 21:13:44 +01:00
parent 99df358c50
commit bd6e4ebc1c
3 changed files with 32 additions and 10 deletions

View File

@@ -10,17 +10,16 @@ import {
distPath,
} from './file';
import {
getTree,
createRadar,
outputRadar,
} from './radar';
(async () => {
try {
// const tree = await getTree();
// console.log(JSON.stringify(tree, null, 2));
const radar = await createRadar();
console.log(JSON.stringify(radar, null, 2));
outputRadar(radar);
// console.log(JSON.stringify(radar, null, 2));
} catch(e) {
console.error('error:', e);
}