Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit cd2b2be

Browse files
diofeherbryanvu
authored andcommitted
Removing unnecessary code
1 parent 353821a commit cd2b2be

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

apps/desktop/main.dev.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ const runProcesses = (processes, logs) => {
4141
const filePath = path.join(__dirname, 'bin', plat, plat === 'win32' ? `${ proc.name }.exe` : proc.name)
4242

4343
try {
44+
console.log(proc.args)
4445
const instance = cp.spawn(filePath, proc.args)
4546
runningProcesses.push(instance)
4647
instance.stdout.on('data', data => logs.push(`${ proc.name }: ${ data }`))

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"package": "cross-env NODE_ENV=production node -r babel-register -r babel-polyfill scripts/package.js",
1212
"package-all": "npm run package -- --all",
1313
"start": "f() { node scripts/startup-message.js && concurrently --kill-others \"npm run start-electron -- $*\" \"npm run start-webpack\" -n \"electron,webpack\" -p name; }; f",
14-
"start-electron": "cross-env HOT=1 NODE_ENV=development electron -r babel-register ./main.dev -- $*",
14+
"start-electron": "cross-env HOT=1 NODE_ENV=development electron -r babel-register ./main.dev --",
1515
"start-webpack": "cross-env NODE_ENV=development node -r babel-register scripts/dev-server.js",
1616
"install-grpc": "cd node_modules/grpc && git submodule update --init && npm run electron-build -- --target=1.4.6"
1717
},

0 commit comments

Comments
 (0)