是否可以在任何grunt任务中提示用户输入?

时间:2013-05-19 04:06:59

标签: javascript node.js gruntjs

我正在尝试使用Grunt在项目中创建一个目录,以便为博客发布新帖子。它本质上会在posts目录中创建一个名为YYYYMMDDDD-PostNameInPascalCase的目录。

为了做到这一点,我每次执行任务时都必须提示用户输入帖子名称。我知道grunt-init会提示用户从项目模板创建项目,但我很好奇是否有办法在Gruntfile.js文件中为已经建立的项目执行此操作。

有什么想法吗?

2 个答案:

答案 0 :(得分:13)

自从上次提出这个问题以来已经有一段时间了,但是Github上有一个项目试图做提问者正在寻找的问题。它被称为grunt-prompt,这里是网址:https://github.com/dylang/grunt-prompt。它基本上是一种将提示集成到Gruntfile中的方法。从项目自述文件中,您可以执行以下操作:

grunt.initConfig({
  prompt: {
    target: {
      options: {
        questions: [
        {
          config: 'config.name', // arbitray name or config for any other grunt task
           type: '<question type>', // list, checkbox, confirm, input, password
          message: 'Question to ask the user',
          default: 'value', // default value if nothing is entered
          choices: 'Array|function(answers)',
          validate: function(value), // return true if valid, error message if invalid
          filter:  function(value), // modify the answer
          when: function(answers) // only ask this question when this function returns true
        }
      ]
    }
  },
},
})

答案 1 :(得分:1)

是的,你可以这样做:

grunt.registerTask('makePost', 'Make a new post dir.', function(n) {
  if (n == null) {
    grunt.log.warn('Post name must be specified, like makePost:PostNameGoesHere.');
  }

  // Run other tasks here
  grunt.task.run('foo:' + n, 'bar:' + n, 'baz:' + n);
});

有关如何传递某些参数的更多信息和来源,请查看Grunt FAQ