gulp-tmod icon indicating copy to clipboard operation
gulp-tmod copied to clipboard

grunt-tmod gulp version

Results 4 gulp-tmod issues
Sort by recently updated
recently updated
newest added

pipe(tmodjs({ templateBase: 'template' })) 令我感到困惑的是这里的templateBase 参数,不写,gulp 编译不通过, 但是我把参数改成 'hahaha' , 'heiheihei' , 在生成的template.js 里面得不到更合的反应; 弄明白这个参数的动力源自于我遇到的路径问题,我按照文档的默认写法,最终..... 得到的template.js 底下的生成代码写的是绝对路径 template('**/Users/longlei/Desktop/营天下/src/template/footer**','div code'); 而https://github.com/aui/tmodjs/ 给出的demo 写法则是 var html = template('news/list', _list); document.getElementById('list').innerHTML = html;...

![image](https://cloud.githubusercontent.com/assets/16040462/21446029/2ae32f42-c8fc-11e6-9274-ec814a4ed7bd.png) ![image](https://cloud.githubusercontent.com/assets/16040462/21446050/5b456e16-c8fc-11e6-9723-c1f5080af1bd.png)

由于工作原因,不在使用tmod. 所以现在想找一个负责人或者直接把项目转交出来。 有意者请留言

你好,使用 gulp-tmod 中遇到了点问题,求指导。 # 我这样用是ok的 ``` javascript gulp.task('mobile-tmod', function () { return gulp.src(['./mobile/tpl/*.html', './mobile/tpl/**/*.html']). pipe(tmodjs({ base: './mobile/tpl', output: './mobile/tpl/build' })); }); ``` ![image](https://cloud.githubusercontent.com/assets/1010130/6481335/8d60249e-c297-11e4-9258-44666e180d80.png) # 问题来了... 然后我要使用watch。 完全按照readme的使用哦。 ``` javascript gulp.task('mobile-tmod-watch',...