Skip to content

Commit

Permalink
Merge pull request #51 from chuguixin/master
Browse files Browse the repository at this point in the history
delete several ','
  • Loading branch information
TooBug committed Jan 20, 2014
2 parents 7a2d3c8 + 2defa2e commit d41f286
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/creating_tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

大部分的contrib任务(主要是指官方提供的任务),包括[grunt-contrib-jshint插件的jshint任务](https://github.com/gruntjs/grunt-contrib-jshint),以及[grunt-contrib-concat插件的concat任务](https://github.com/gruntjs/grunt-contrib-concat)都是多任务形式的。

grunt.registerMultiTask(taskName, [description, ], taskFunction);
grunt.registerMultiTask(taskName, [description, ] taskFunction);

鉴于指定的配置,这里有一个示例演示了如果通过`grunt log:foo`运行Grunt,它会输出`foo: 1,2,3`;如果通过`grunt log:bar`来运行Grunt, 它会输出`bar: hello world`。然而如果通过`grunt log`运行Grunt, 它会输出`foo: 1,2,3`,然后是`bar: hello world`,最后是`baz: false`(任务目标会按照指定的顺序进行处理)。

Expand All @@ -46,7 +46,7 @@

当运行一个基本任务时,Grunt并不会查找配置和检查运行环境--它仅仅运行指定的任务函数,可以传递任意使用冒号分割的参数作为任务函数的参数(注意多任务中的冒号并不是传递参数,而是指定具体任务的目标)。

grunt.registerTask(taskName, [description, ], taskFunction);
grunt.registerTask(taskName, [description, ] taskFunction);

这里有一个例子演示了如果通过`grunt foo:testing:123`运行Grunt将输出`foo, testing 123`。如果运行这个任务时不传递参数,只运行`grunt foo`,那么这个任务会输出`foo, no args`

Expand Down
4 changes: 2 additions & 2 deletions docs/grunt_file.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@

类似`mkdir -p`操作。可以使用任意参考目录创建一个新目录。如果没有指定`mode`选项,则默认为`0777 & (~process.umask())`

*如果指定了`--no-write`命令行选项,者不会真正创建目录*
*如果指定了`--no-write`命令行选项,则不会真正创建目录*

grunt.file.mkdir(dirpath [, mode])

Expand Down Expand Up @@ -289,4 +289,4 @@ grunt.file.minimatch

grunt.file.findup

[findup-sync](https://github.com/cowboy/node-findup-sync) - 向上搜索的文件匹配模式。
[findup-sync](https://github.com/cowboy/node-findup-sync) - 向上搜索的文件匹配模式。

0 comments on commit d41f286

Please sign in to comment.