Skip to content

Commit

Permalink
style: print space usage before and after install
Browse files Browse the repository at this point in the history
  • Loading branch information
hamirmahal committed Oct 1, 2023
1 parent c1b3f7b commit 549aab0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"preinstall": "echo -n 'Disk space before install: ' && du -sh . | cut -f1 && echo",
"postinstall": "echo -n 'Disk space after install: ' && du -sh . | cut -f1 && echo"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.18",
Expand Down

0 comments on commit 549aab0

Please sign in to comment.