Skip to content
This repository has been archived by the owner on Jul 12, 2021. It is now read-only.

Commit

Permalink
Fix Windows compatibility of NPM scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelmeuli committed Jan 2, 2020
1 parent f411433 commit 0203e4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
"private": true,
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "npm-run-all start:ts --parallel start:app 'start:ts:* --watch'",
"start": "npm-run-all build:ts --parallel start:*",
"start:ts": "run-p start:ts:*",
"start:ts:main": "webpack --config ./webpack.main.ts --mode development",
"start:ts:renderer": "webpack --config ./webpack.renderer.ts --mode development",
"start:ts:main": "webpack --config ./webpack.main.ts --mode development --watch",
"start:ts:renderer": "webpack --config ./webpack.renderer.ts --mode development --watch",
"start:app": "electron .",
"build": "run-s build:*",
"build:clean": "rm -rf ./bundle ./dist",
Expand Down

0 comments on commit 0203e4c

Please sign in to comment.