cmd格式化的问题
修改\AppData\Roaming\npm\node_modules\tmodjs\src\AOTcompile.js
coolie
中使用的cmd
模块的格式与传统的seajs
不太一样。所以有冲突,修改文件后解决~
压缩后的的非amd或cmd版本与requirejs整合使用无法找到tempalate方法
修改 C:\Users\Administrator\AppData\Roaming\npm\node_modules\tmodjs\src\runtime.js
2: var runtime = function (window) {
176: '<:namespace:>'
'<:helpers:>'
'<:templates:>'
//添加
window.template = template;
245: code = '!' + code + '(window)';
return code;
网友评论