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
a.js define('/res/static/component/a.js',[], function(require, exports, module){}); b.js seajs.use(['/res/static/component/a.js'], function(Spec_popup){}); 修改了spec_popup.js,构建后有两个问题, 问题1: 引用了a.js的 b.js 并没有被构建出来,即b.js引用的还是旧版的a.js 问题2: a.js的文件名md5值和内容里面的md5值不对应 a_12345.js define('/res/static/component/a_45628.js',[], function(require, exports, module){});
The text was updated successfully, but these errors were encountered:
No branches or pull requests
a.js
define('/res/static/component/a.js',[], function(require, exports, module){});
b.js
seajs.use(['/res/static/component/a.js'], function(Spec_popup){});
修改了spec_popup.js,构建后有两个问题,
问题1: 引用了a.js的 b.js 并没有被构建出来,即b.js引用的还是旧版的a.js
问题2: a.js的文件名md5值和内容里面的md5值不对应
a_12345.js
define('/res/static/component/a_45628.js',[], function(require, exports, module){});
The text was updated successfully, but these errors were encountered: