Skip to content

Commit

Permalink
Updating npm scripts for modularity
Browse files Browse the repository at this point in the history
  • Loading branch information
bvsam committed Nov 22, 2023
1 parent 7abc8e1 commit 5b7d41f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ npm install

```
cd src/app/
npm run dev
npm run app
```

### Tips for Running
Expand Down
3 changes: 2 additions & 1 deletion src/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"npm run api\"",
"app": "concurrently \"npm run dev\" \"npm run api\"",
"dev": "vite",
"api": "cd backend && flask run --no-debugger",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
Expand Down

0 comments on commit 5b7d41f

Please sign in to comment.