From 347e5c9b715f8c55af8a8e122bb0fb66ece75a06 Mon Sep 17 00:00:00 2001 From: terrykingcha Date: Thu, 13 Jun 2013 11:37:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/tools/grunt/tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/tools/grunt/tutorial.md b/pages/tools/grunt/tutorial.md index c203cde..90a17a5 100644 --- a/pages/tools/grunt/tutorial.md +++ b/pages/tools/grunt/tutorial.md @@ -104,11 +104,11 @@ grunt.loadNpmTasks('grunt-depconcat'); depconcat: { js: { src: ['src/*.js'], - dest: ['dist/all.js'] + dest: 'dist/all.js' }, css: { src: ['assets/*.css'], - dest: ['dist/all.css'] + dest: 'dist/all.css' } } ```