Skip to content

Commit

Permalink
general config file clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Kusumgar committed Nov 6, 2024
1 parent f23fc89 commit 3ee30dd
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
/app/server/coverage/
/app/server/node_modules/
/app/server/public/
!/app/server/public/favicon.ico
/app/server/dist/
/app/static/node_modules/
/app/static/coverage/
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v16
v20
File renamed without changes.
2 changes: 1 addition & 1 deletion app/static/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"dev": "npm run copy-assets && vite",
"build-with-check": "npm run copy-assets && run-p type-check \"build-only {@}\" -- && npm run copy-dist",
"build": "npm run copy-assets && vite build && npm run copy-dist",
"copy-assets": "cp -r ./src/assets/ ../server/public/",
"copy-assets": "rm -rf ../server/public/* && cp -r ./src/assets/ ../server/public/ && cp ../server/assets/favicon.ico ../server/public/.",
"copy-dist": "cp -r ./dist/. ../server/public/.",
"test:unit": "vitest",
"test:e2e": "playwright test",
Expand Down

0 comments on commit 3ee30dd

Please sign in to comment.