diff options
author | GitExample <git@example.com> | 2022-02-05 03:41:35 +0100 |
---|---|---|
committer | GitExample <git@example.com> | 2022-02-05 03:41:35 +0100 |
commit | 5c7370a6b07a7914a7d16b853c3e92624849ba9d (patch) | |
tree | a82d2762daedca2052ca8590548eb36a7319b276 /package.json | |
parent | 7573f80030d9536d97b6a60dd1f9bce3c4093209 (diff) | |
download | Viper-5c7370a6b07a7914a7d16b853c3e92624849ba9d.tar.gz Viper-5c7370a6b07a7914a7d16b853c3e92624849ba9d.zip |
fixed max mod install limit of 512mb
If a mod had a file that was bigger than 512mb inside it, it'd error
out, simply switching the copy-dir module to recursive-copy fixes this.
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json index b4624c3..e1d0c25 100644 --- a/package.json +++ b/package.json @@ -48,13 +48,13 @@ }, "homepage": "https://github.com/0neGal/viper#readme", "dependencies": { - "copy-dir": "^1.3.0", "electron-updater": "^4.6.1", "follow-redirects": "^1.14.7", "fs-extra": "^10.0.0", "fuse.js": "^6.5.3", "marked": "^4.0.10", "marked-man": "^0.7.0", + "recursive-copy": "^2.0.13", "unzipper": "^0.10.11" }, "devDependencies": { |