From 01f006122b716c1a718526b3f061bf06a35d934a Mon Sep 17 00:00:00 2001 From: tree Date: Mon, 30 Jan 2023 15:54:03 +0100 Subject: [PATCH] fmt --- utils/engine.js | 3 ++- utils/mirror.js | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/utils/engine.js b/utils/engine.js index c8ebefc..f2a4f05 100644 --- a/utils/engine.js +++ b/utils/engine.js @@ -19,7 +19,8 @@ export class DeConfEngine { this.srcDir = this.options.srcDir || "./data"; this.outputDir = this.options.outputDir || "./dist"; this.publicUrl = this.options.publicUrl || "https://data.prgblockweek.com"; - this.exploreUrl = this.options.exploreUrl || "https://explore.prgblockweek.com"; + this.exploreUrl = this.options.exploreUrl || + "https://explore.prgblockweek.com"; this.githubUrl = this.options.githubUrl || "https://github.com/utxo-foundation/prague-blockchain-week/tree/main/data"; diff --git a/utils/mirror.js b/utils/mirror.js index c3cb1c3..cfde31a 100644 --- a/utils/mirror.js +++ b/utils/mirror.js @@ -1,10 +1,10 @@ import { DeConfEngine } from "./engine.js"; const deconf = new DeConfEngine({ - publicUrl: "https://mirror.data.prgblockweek.com", - exploreUrl: "https://mirror.explore.prgblockweek.com", - outputDir: "./dist-mirror" + publicUrl: "https://mirror.data.prgblockweek.com", + exploreUrl: "https://mirror.explore.prgblockweek.com", + outputDir: "./dist-mirror", }); await deconf.init(); -await deconf.build(); \ No newline at end of file +await deconf.build();