do non-debug build by default

This commit is contained in:
Bruno Windels 2019-11-22 08:55:30 +01:00
parent 325077bcb0
commit 4b28eee8b9
2 changed files with 2 additions and 2 deletions

View file

@ -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": {

View file

@ -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() {