bodar / totallylazy.js

TotallyLazy.js
Apache License 2.0
8 stars 5 forks source link

file copy function should support copying everything from source to destination folder #1

Open jvmartins opened 6 years ago

jvmartins commented 6 years ago

There is no support for doing this

const source = new File('src');

source.copy('dist');

I would expect to end up like that:

\dist
    \src
        \subfolder
            file.js
        main.js
\src
    \subfolder
        file.js
    main.js