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
grunt-cmd-transport的配置有简化的写法吗?这么写感觉有点复杂哈
The text was updated successfully, but these errors were encountered:
指的是哪些配置?
Sorry, something went wrong.
如果模块下有.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"] 这样的
需要 concat 进来
No branches or pull requests
grunt-cmd-transport的配置有简化的写法吗?这么写感觉有点复杂哈
The text was updated successfully, but these errors were encountered: