Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要创建一个任务来获取存储库中的所有标签并将它们构建到单独的文件夹中。
我可以创建一个任务来获取所有标签名称,但是我如何获取该信息并将其提供给另一个任务/任务集,该任务/任务集将使用该数据在循环中运行?
在获取标签的任务中,在运行其他任务之前,您可以手动设置任务配置。
像这样的东西:
grunt.config.set('yourOtherTask.dist.options.tags', tags); grunt.task.run('yourOtherTask');