Important Notice: Starting April 1st, 2025, OSx/macOS builds will no longer be supported due to the end-of-life (EOL) of VMWare support for macOS infrastructure.
Join over 500,000 developers testing and building on Travis CI
Pull Request #33
chore: reduce dependencies by replacing del with rimraf
Running yarn install after replacing del with rimraf removes 7 transitive dependencies: - globby@5.0.0 - pinkie-promise@2.0.1 - pinkie@2.0.4 - is-path-cwd@1.0.0 - is-path-in-cwd@1.0.1 - is-path-inside@1.0.1 - path-is-inside@1.0.2
node_modules size decreases from from 1.2M to 996K del uses rimraf under the hood. It adds a Promise api and different glob handling. Outside of tests, recursive-copy calls `del` once, to delete a file that's already been passed to lstat. recursive-copy already uses pify to promisify APIs and performs its own glob handling. It also uses `del` with the `force` option set, which bypasses extra safety checks that del introduces. Therefore there should be no downside to calling rimraf directly.