You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed other package that install and use circomlib by including in directly in their node_modules directory, which results in no such file or directory errors when those packages are then installed and used by others.
If one could include "circomlib/circuits/mux1.circom"; instead of include "../node_modules/circomlib/circuits/mux1.circom"; it would be better for everyone.
The text was updated successfully, but these errors were encountered:
I've noticed other package that install and use
circomlib
by including in directly in theirnode_modules
directory, which results inno such file or directory
errors when those packages are then installed and used by others.Example:
'/Users/some_user/Projects/maci/contracts/node_modules/maci-circuits/node_modules/circomlib/circuits/mux1.circom'
If one could
include "circomlib/circuits/mux1.circom";
instead ofinclude "../node_modules/circomlib/circuits/mux1.circom";
it would be better for everyone.The text was updated successfully, but these errors were encountered: