Updated version number & fixed start-dev script for windows

This commit is contained in:
KRTirtho 2021-03-31 16:22:04 +06:00
parent 912f5a16ba
commit 6a09c0c913
3 changed files with 7 additions and 6 deletions

View File

@ -1,10 +1,10 @@
Package: Spotube Package: Spotube
Version: 0.0.1 Version: 0.0.2
Section: sound Section: sound
Priority: optional Priority: optional
Architecture: all Architecture: all
Essential: no Essential: no
Installed-Size: 44000 Installed-Size: 31000
Maintainer: KR Tirtho Maintainer: KR Tirtho
Description: A music streaming app combining the power of Spotify & Youtube Description: A music streaming app combining the power of Spotify & Youtube
Homepage: https://github.com/KRTirtho/spotube Homepage: https://github.com/KRTirtho/spotube

View File

@ -1,10 +1,10 @@
Package: Spotube Package: Spotube
Version: 0.0.1 Version: 0.0.2
Section: sound Section: sound
Priority: optional Priority: optional
Architecture: all Architecture: all
Essential: no Essential: no
Installed-Size: 44000 Installed-Size: 31000
Maintainer: KR Tirtho Maintainer: KR Tirtho
Description: A music streaming app combining the power of Spotify & Youtube Description: A music streaming app combining the power of Spotify & Youtube
Homepage: https://github.com/KRTirtho/spotube Homepage: https://github.com/KRTirtho/spotube

View File

@ -1,6 +1,6 @@
{ {
"name": "spotube", "name": "spotube",
"version": "0.0.1", "version": "0.0.2",
"main": "index.js", "main": "index.js",
"author": "KR Tirtho", "author": "KR Tirtho",
"license": "MIT", "license": "MIT",
@ -9,7 +9,8 @@
"build": "webpack --mode=production", "build": "webpack --mode=production",
"dev": "cross-env TSC_WATCHFILE=UseFsEvents webpack --mode=development", "dev": "cross-env TSC_WATCHFILE=UseFsEvents webpack --mode=development",
"start": "qode ./dist/index.js", "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", "start:trace": "qode ./dist/index.js --trace",
"debug": "qode --inspect ./dist/index.js", "debug": "qode --inspect ./dist/index.js",
"pack": "nodegui-packer -p ./dist", "pack": "nodegui-packer -p ./dist",