You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have noticed that the geostats npm package size is surprisingly large, at about 63 MB. Upon investigating, it seems this is due to a directory called OpenLayers that is not actually present in the GitHub repository. This unaccounted space usage could potentially create storage and deployment inefficiencies for users of the package.
Steps to Reproduce:
Install the geostats package via npm with npm install geostats
Check the disk usage of the installed package with du -sh node_modules/geostats (on Unix-like systems) or equivalent commands on other systems
Navigate into the installed geostats directory in node_modules and observe the OpenLayers directory.
Expected Behavior:
The npm package size should be more or less similar to the repository size, considering only the necessary files for the library to function.
Actual Behavior:
The npm package size is much larger than the GitHub repository due to an extraneous OpenLayers directory.
The text was updated successfully, but these errors were encountered:
Description:
I have noticed that the
geostats
npm package size is surprisingly large, at about 63 MB. Upon investigating, it seems this is due to a directory calledOpenLayers
that is not actually present in the GitHub repository. This unaccounted space usage could potentially create storage and deployment inefficiencies for users of the package.Steps to Reproduce:
Install the
geostats
package via npm withnpm install geostats
Check the disk usage of the installed package with
du -sh node_modules/geostats
(on Unix-like systems) or equivalent commands on other systemsNavigate into the installed
geostats
directory innode_modules
and observe theOpenLayers
directory.Expected Behavior:
The npm package size should be more or less similar to the repository size, considering only the necessary files for the library to function.
Actual Behavior:
The npm package size is much larger than the GitHub repository due to an extraneous
OpenLayers
directory.The text was updated successfully, but these errors were encountered: