Skip to content

Commit

Permalink
feat: cli 명령어 수정
Browse files Browse the repository at this point in the history
electron:forge 를 만들고 start 는 기존의 기능으로 되돌립니다.
별도의 env 설정 없이 기존의 GitHub Actions 를 사용하기 위해 test 명령어를 되돌립니다.
  • Loading branch information
iyu88 committed Feb 19, 2023
1 parent d990677 commit 2b21e5d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@
"author": "5-line-poem",
"private": true,
"scripts": {
"start": "electron-forge start",
"start": "react-scripts start",
"start:dev": "env-cmd -f .env.development react-scripts start",
"build": "env-cmd -f .env.production react-scripts build",
"test": "env-cmd -f .env.development react-scripts test",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron": "electron .",
"electron:dev": "concurrently 'npm run start:dev' 'wait-on http://localhost:3000 && electron .'",
"electron:forge": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make"
},
Expand Down

0 comments on commit 2b21e5d

Please sign in to comment.