From 4b28eee8b95cb3156e9a846e15153db337c7de26 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Fri, 22 Nov 2019 08:55:30 +0100 Subject: [PATCH] do non-debug build by default --- package.json | 2 +- scripts/build.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ac134916..57e868bb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "brawl-chat", - "version": "0.0.9", + "version": "0.0.10", "description": "A javascript matrix client prototype, trying to minize RAM usage by offloading as much as possible to IndexedDB", "main": "index.js", "directories": { diff --git a/scripts/build.mjs b/scripts/build.mjs index bd847e76..719d556b 100644 --- a/scripts/build.mjs +++ b/scripts/build.mjs @@ -14,7 +14,7 @@ const __dirname = dirname(__filename); const projectDir = path.join(__dirname, "../"); const targetDir = path.join(projectDir, "target"); -const debug = true; +const debug = false; const offline = true; async function build() {