We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
在模块定义的时候,使用了模块简写:
define([ { path: '/mobile/test' } ]);
然后module合并的时候挂了,报了这个错:
edp INFO Running ModuleCompiler (16ms) ... edp WARN TypeError: Cannot read property 'type' of undefined
改成了函数包裹的方式,就可以合并了:
define(function () { return [ { path: '/mobile/test' } ]; });
module builder应该兼容一下简写的模块。
The text was updated successfully, but these errors were encountered:
好像的确没有处理你说的这种情况
Sorry, something went wrong.
No branches or pull requests
在模块定义的时候,使用了模块简写:
然后module合并的时候挂了,报了这个错:
edp INFO Running ModuleCompiler
(16ms) ...
edp WARN TypeError: Cannot read property 'type' of undefined
改成了函数包裹的方式,就可以合并了:
module builder应该兼容一下简写的模块。
The text was updated successfully, but these errors were encountered: