Copy-webpack-plugin: Doesn't Work Node 6.1

Created on 23 May 2016  路  5Comments  路  Source: webpack-contrib/copy-webpack-plugin

It doesn't appear to be working for Node 6.1. I am getting this error:

ERROR in EISDIR: illegal operation on a directory, read

Bug

Most helpful comment

This should be resolved in 3.0.1. Thanks for reporting!

All 5 comments

I see the same error but my node is v4.3.1.

In my case the problem was with the glob.

I have the same issue and am using a glob like so.
from: { glob: '**/*' }

What did you do to fix it?

Same problem here on 6.2.0. The error basically means that it tries to read something as a file, but it is actually a directory. It fails, when your glob patterns contains subdirectories. It works when reading a directory without subdirectories.

Definitely needs fixing.

This should be resolved in 3.0.1. Thanks for reporting!

Was this page helpful?
0 / 5 - 0 ratings