uiwjs / react-codemirror

CodeMirror 6 component for React. @codemirror https://uiwjs.github.io/react-codemirror/
https://uiwjs.github.io/react-codemirror/
MIT License
1.69k stars 134 forks source link

Large Repository Size #558

Open curran opened 1 year ago

curran commented 1 year ago

The respository is 311MB, which is quite large. I bet there are some large files that have no business being tracked by git.

image

jaywcjlove commented 1 year ago
git rev-list --objects --all | git cat-file --batch-check='%(objecttype) %(objectname) %(objectsize) %(rest)' | awk '/^blob/ {print substr($0,6)}' | sort --numeric-sort --key=2 --reverse | head -n 10 | cut -c 13-
62e3e2898875019be03d591f6d04 16472482 static/js/main.36bd2671.js.map
79ee92c10aaea9d004a84c06a2a2 16472238 static/js/main.5f898922.js.map
8f44388e0c05ee330d934eebfc4b 16472104 static/js/main.0db4eaf5.js.map
c5bf6f664d34594aa8481a8a274e 16468932 static/js/main.5027cdf2.js.map
c68cf8910bc241ee8c7993aec9e8 16468069 static/js/main.85687721.js.map
16e8b2b055ae0c76566edb26d51f 16468069 static/js/main.61970924.js.map
102d76cf720ce2fcf011354ad110 16463759 static/js/main.6f93f6ea.js.map
547fb8d5749846d271671e5bdf42 16463056 static/js/main.54b2ae9a.js.map
04450eab5440f229f1372a2d33d8 16117213 static/js/main.ce8c28e0.js.map
6815557bdf4b35c93f41bb758d38 16115955 static/js/main.c65a2b60.js.map

This is because the static pages generated by the documentation website are large in size, and each submission will compile and generate the documentation website and submit it to the gh-pages branch.

@curran

jaywcjlove commented 1 year ago

@curran You can just pull the master branch code