Well, this has been annoying since I (and everyone who uses modern build systems) have to use import webgazer from 'webgazer/dist/webgazer.commonjs2' instead of import webgazer from 'webgazer'. The import statement in src/facemesh.mjs was not correct, because that module does not have a default export.
Resolves #223, resolves #172, and maybe #183
Well, this has been annoying since I (and everyone who uses modern build systems) have to use
import webgazer from 'webgazer/dist/webgazer.commonjs2'
instead ofimport webgazer from 'webgazer'
. The import statement insrc/facemesh.mjs
was not correct, because that module does not have a default export.