From 3b9c0a651617f31e26e36d3bd129dc5a41acfc8d Mon Sep 17 00:00:00 2001 From: Nicholas Zuber Date: Mon, 18 Dec 2023 22:09:28 -0500 Subject: [PATCH] oopsi --- package.json | 2 +- src/index.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index fc2a871..49c3897 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "skipper-native", "productName": "Skipper", - "version": "1.2.3", + "version": "1.2.4", "description": "Native executables for different platforms to launch the Skipper app.", "main": "src/index.js", "scripts": { diff --git a/src/index.js b/src/index.js index 3d7eafb..7ab9e53 100644 --- a/src/index.js +++ b/src/index.js @@ -7,8 +7,8 @@ const path = require("path"); // ============ Variables ============= // ==================================== -const IS_LOCAL = true; -const IS_DEBUGGING = true; +const IS_LOCAL = false; +const IS_DEBUGGING = false; // ==================================== // ============= Helpers ==============