forked from mystiq/hydrogen-web
do non-debug build by default
This commit is contained in:
parent
325077bcb0
commit
4b28eee8b9
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "brawl-chat",
|
"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",
|
"description": "A javascript matrix client prototype, trying to minize RAM usage by offloading as much as possible to IndexedDB",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"directories": {
|
"directories": {
|
||||||
|
|
|
@ -14,7 +14,7 @@ const __dirname = dirname(__filename);
|
||||||
const projectDir = path.join(__dirname, "../");
|
const projectDir = path.join(__dirname, "../");
|
||||||
const targetDir = path.join(projectDir, "target");
|
const targetDir = path.join(projectDir, "target");
|
||||||
|
|
||||||
const debug = true;
|
const debug = false;
|
||||||
const offline = true;
|
const offline = true;
|
||||||
|
|
||||||
async function build() {
|
async function build() {
|
||||||
|
|
Loading…
Reference in a new issue