-
-
Notifications
You must be signed in to change notification settings - Fork 670
[Bug] Supplying folder for --lib
results in no lib files found
#714
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
--lib
results in no lib files found--lib
results in no lib files found
Yep that's the one. Though this has me wondering what your use case is? Could it not be solved with package management, e.i #594? |
Use case is I want to supply an assembly folder to export all the assembly root files as globals. This is expected behavior according to @dcodeIO |
@jtenner Is it still relevant issue? |
No this not. This how the assemblyscript/node project sets up tests. I think I submitted the pull request to fix it. |
I tried to follow the error as best as I can and I found the problem inside
listFilesNode()
When this function is called,
baseDir
isundefined
.Can be fixed by calling
libFiles = listFiles(libDir, baseDir);
instead.Which file should be changed exactly? Is it the
assemblyscript/cli/asc.js
file? If so, I'd be happy to write a pull request with that change.The text was updated successfully, but these errors were encountered: