我想将在bower依赖项中声明的自定义grunt任务合并到我自己的grunt构建文件中。有问题的图书馆是animate.css - https://github.com/daneden/animate.css
相关的grunt文件位于:https://github.com/daneden/animate.css/blob/master/Gruntfile.js
作者创建了一个名为concat-anim
的自定义任务,允许您通过自定义animate-config.json
来声明您希望在构建中包含哪些动画。这些都记录在github自述文件页面上以获取更多信息。
我的项目目录很典型:
bower_components/
animate.css/
Gruntfile.js
animate-config.json
...
Gruntfile.js
bower.json
package.json
...
如果可能,我希望使用animate.css
的修改后的副本从我自己的grunt文件中执行concat-anim
animate-config.json
任务。