We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04237c8 commit d10cbc7Copy full SHA for d10cbc7
README.md
@@ -26,16 +26,16 @@ You can accept parameters in a task by wrapping the task function in `parameteri
26
```javascript
27
var parameterized = require('gulp-parameterized');
28
29
-gulp.task('hello', parameterized(function(cb, params)) {
+gulp.task('hello', parameterized(function(cb, params) {
30
console.log('hello ' + params.name + '!');
31
cb();
32
-});
+}));
33
```
34
35
You can then pass parameters to a task on the command line:
36
37
38
-$ gulp hello --name world!
+$ gulp hello --name world
39
[23:43:51] Using gulpfile ~/hello-example/gulpfile.js
40
[23:43:51] Starting 'hello'...
41
hello world!
0 commit comments