Uncaught module jqueryify not found

无人久伴 提交于 2019-12-05 12:10:25

Hem is not supported on Windows. I found myself in the same situation and tried the same approaches.

More info here: https://github.com/maccman/hem/issues/23

Try inserting that before line 9:

for(var winPath in require.modules)
{
path = winPath.replace(/\\/g, '/'); 
path = path.match('/node_modules/') ? path.split('/node_modules/')[1] : path;
path = path.match('/app/') ? path.split('/app/')[1] : path;
require.modules[path] = require.modules[winPath];
}

I think a fix will be there soon.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!