For example, I have two projects /a and /b. The current directory where the DLL needs to be compiled is /a, but the directory introduced by autodll-webpack-plugin is /b. I find that the plugin currently does not support this function.Then I found the point of the problem through the source code.
I found that the findCacheDir plugin was introduced but does not support thecwd attribute of this plugin to change the directory location that references autodll-webpack-plugin.So I suggest to add support for cwd attribute?
For example, I have two projects
/a
and/b
. The current directory where theDLL
needs to be compiled is/a
, but the directory introduced byautodll-webpack-plugin
is/b
. I find that the plugin currently does not support this function.Then I found the point of the problem through the source code.I found that the
findCacheDir
plugin was introduced but does not support thecwd
attribute of this plugin to change the directory location that referencesautodll-webpack-plugin
.So I suggest to add support forcwd
attribute?