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
So, require('es5-ext/string/#/contains') converts to es-ext/string/ with hash /contains.
Thus, error occurs:
[!] Error: Could not load /home/runner/BustlingImpracticalMice/node_modules/es5-ext/string/index.js#/contains (imported by node_modules/d/index.js): ENOENT: no such file or directory, open '/home/runner/BustlingImpracticalMice/node_modules/es5-ext/string/index.js#/contains'
Expected Behavior
#
can be part of path instead hash usage, expectingnode-resolve
can handle this situationActual Behavior
#
is split into two parts by the following code:So,
require('es5-ext/string/#/contains')
converts toes-ext/string/
with hash/contains
.Thus, error occurs:
Additional Information
package
d
source codeAs you can see,
es5-ext/string/#/contians
is the full path of import instead of hash tag...The text was updated successfully, but these errors were encountered: