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
http://www.gruntjs.org/article/configuring_tasks.html 模板
下面提供了一个concat任务配置示例,运行grunt concat:sample时将通过banner中的/* abcde */连同foo/*.js+bar/*.js+bar/*.js匹配的所有文件来生成一个名为build/abcde.js的文件。
应当是连同foo/.js+bar/.js+baz/*.js
The text was updated successfully, but these errors were encountered:
src: ['<%= qux %>', 'baz/*.js'], // [['foo/*js', 'bar/*.js'], 'baz/*.js']
src: ['<%= qux %>', 'baz/*.js'], // [['foo/*.js', 'bar/*.js'], 'baz/*.js']
Sorry, something went wrong.
能否详细描述一下,我大致看了一下,貌似这里描述没有问题呀。
你搜索那个页面的“连同foo”吧。是“baz”不是bar,写重复了。
@TooBug 还有个小错误,搜索 foo/js 有两处,应该改为 foo/.js
No branches or pull requests
http://www.gruntjs.org/article/configuring_tasks.html 模板
下面提供了一个concat任务配置示例,运行grunt concat:sample时将通过banner中的/* abcde */连同foo/*.js+bar/*.js+bar/*.js匹配的所有文件来生成一个名为build/abcde.js的文件。
应当是连同foo/.js+bar/.js+baz/*.js
The text was updated successfully, but these errors were encountered: