From 6a09c0c9131bf8daa20c669f05c1e127918e90ca Mon Sep 17 00:00:00 2001 From: KRTirtho Date: Wed, 31 Mar 2021 16:22:04 +0600 Subject: [PATCH] Updated version number & fixed start-dev script for windows --- control | 4 ++-- deb-struct/DEBIAN/control | 4 ++-- package.json | 5 +++-- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/control b/control index eb83fe7a..25465f00 100644 --- a/control +++ b/control @@ -1,10 +1,10 @@ Package: Spotube -Version: 0.0.1 +Version: 0.0.2 Section: sound Priority: optional Architecture: all Essential: no -Installed-Size: 44000 +Installed-Size: 31000 Maintainer: KR Tirtho Description: A music streaming app combining the power of Spotify & Youtube Homepage: https://github.com/KRTirtho/spotube diff --git a/deb-struct/DEBIAN/control b/deb-struct/DEBIAN/control index eb83fe7a..25465f00 100644 --- a/deb-struct/DEBIAN/control +++ b/deb-struct/DEBIAN/control @@ -1,10 +1,10 @@ Package: Spotube -Version: 0.0.1 +Version: 0.0.2 Section: sound Priority: optional Architecture: all Essential: no -Installed-Size: 44000 +Installed-Size: 31000 Maintainer: KR Tirtho Description: A music streaming app combining the power of Spotify & Youtube Homepage: https://github.com/KRTirtho/spotube diff --git a/package.json b/package.json index 0ec28002..8729de49 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "spotube", - "version": "0.0.1", + "version": "0.0.2", "main": "index.js", "author": "KR Tirtho", "license": "MIT", @@ -9,7 +9,8 @@ "build": "webpack --mode=production", "dev": "cross-env TSC_WATCHFILE=UseFsEvents webpack --mode=development", "start": "qode ./dist/index.js", - "start-dev": "concurrently -n 'webpack,spotube' -p '{name}-{pid}' -c 'bgBlue,bgGreen' -i --default-input-target spotube 'npm run dev' 'nodemon -e node -w ./*.babelrc -x \"npm start\"'", + "start:watch": "nodemon -e node -w ./*.babelrc -x \"npm start\"", + "start-dev": "concurrently -n \"webpack,spotube\" -p \"{name}-{pid}\" -c \"bgBlue,bgGreen\" -i --default-input-target spotube \"npm run dev\" \"npm run start:watch\"", "start:trace": "qode ./dist/index.js --trace", "debug": "qode --inspect ./dist/index.js", "pack": "nodegui-packer -p ./dist",