From 71e3181f689b3f7c1dd0af664c5f49da873e5465 Mon Sep 17 00:00:00 2001 From: tree Date: Tue, 12 Apr 2022 13:29:48 +0200 Subject: [PATCH] update --- utils/engine.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/engine.js b/utils/engine.js index 8e9410b..fe93509 100644 --- a/utils/engine.js +++ b/utils/engine.js @@ -162,7 +162,7 @@ export class UTXOEngine { await emptyDir(outputSchemaDir); console.log(`UTXO: writing schema (v${schemaVersion}) ..`); - const schemaBundle = [] + const schemaBundle = []; for (const schema of schemas) { await this._jsonWrite( [outputSchemaDir, schema.name + ".json"], @@ -170,7 +170,7 @@ export class UTXOEngine { ); schemaBundle.push(schema.schema); } - await this._jsonWrite([ outputSchemaDir, 'bundle.json' ]) + await this._jsonWrite([outputSchemaDir, "bundle.json"]); // write global index await this._jsonWrite([outputDir, "index.json"], entriesIndex);