File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 66 "install-dependencies" : " npm run install-dependencies-front && npm run install-dependencies-back" ,
77 "install-dependencies-front" : " cd frontend && npm i" ,
88 "install-dependencies-back" : " cd backend && npm i" ,
9- "start:front" : " cd frontend && npm start" ,
9+ "start:front" : " npm run install-dependencies-front && cd frontend && npm start" ,
1010 "build:front" : " cd frontend && npm run build" ,
11- "start:back" : " cd backend && npm start" ,
11+ "start:back" : " npm run install-dependencies-back && cd backend && npm start" ,
1212 "build:back" : " cd backend && npm run build" ,
13- "start" : " npm run start:back && npm run start:front" ,
1413 "build" : " npm run install-dependencies && npm run build:back && npm run build:front" ,
1514 "heroku-postbuild" : " npm run install-dependencies-back && npm run build:back"
1615 },
You can’t perform that action at this time.
0 commit comments