From 57d12c592533f4b47cf9220dbf3f31c3dffd6058 Mon Sep 17 00:00:00 2001 From: "Christian G. Warden" Date: Thu, 31 Oct 2013 14:35:17 -0700 Subject: [PATCH] Fix sample task aliases Fix syntax of sample task aliases, specifying tasks in an array. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aa5c677..f873fbf 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ Specify an ENV configuration as a task, e.g. ``` -grunt.registerTask('dev', 'env:dev lint server watch'); -grunt.registerTask('build', 'env:build lint other:build:tasks'); +grunt.registerTask('dev', ['env:dev', 'lint', 'server', 'watch']); +grunt.registerTask('build', ['env:build', 'lint', 'other:build:tasks']); ``` ## Getting Started