spmjs / grunt-cmd-transport

Transport everything into common module.
MIT License
70 stars 32 forks source link

grunt-cmd-transport的配置有简化的写法吗? #66

Open mtyang opened 10 years ago

mtyang commented 10 years ago

grunt-cmd-transport的配置有简化的写法吗?这么写感觉有点复杂哈

popomore commented 10 years ago

指的是哪些配置?

yunfour commented 9 years ago

如果模块下有.css文件的时候会有些问题,如: define("pages/test02/0.0.1/test02-debug", [ "$-debug" ], function(require) { console.log(12313); require("$-debug"); require("./test02-debug.css"); });

在模块中中依赖了一个css文件:/test02-debug.css,但是在转化是并没有把依赖的文件的URI加入依赖数组中,此时依赖数组只有一个元素:["$-debug"],实际上除了依赖了$-debug模块还依赖了css文件./test02-debug.css,所以我认为转化后的依赖数组应该是:["$-debug", ".//test02-debug.css"] 这样的

popomore commented 9 years ago

需要 concat 进来