From 1b7851c31c1df4d0462e93da0b2b108843b7d1b8 Mon Sep 17 00:00:00 2001 From: bnu Date: Wed, 8 Apr 2015 10:28:39 +0900 Subject: [PATCH] =?UTF-8?q?ignore=20=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 6 ++++-- Gruntfile.js | 8 +++++++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ea34c6950..5d06e0e6b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ config.user.inc.php +.DS_Store +Thumbs.db /files/ /build/ /node_modules/ -.DS_Store -Thumbs.db +/vendor/ +tests/_output/* diff --git a/Gruntfile.js b/Gruntfile.js index d91b423d4..c2195afea 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -181,6 +181,8 @@ module.exports = function(grunt) { 'common/js/x.js', 'common/js/xe.js', 'common/js/modernizr.js', + 'vendor/**', + 'tests/**', ] } }, @@ -203,6 +205,8 @@ module.exports = function(grunt) { '!common/css/bootstrap.css', '!common/css/bootstrap-responsive.css', '!**/*.min.css', + '!vendor/**', + '!tests/**', ] } }, @@ -218,7 +222,9 @@ module.exports = function(grunt) { "!tests/**", "!tools/**", "!node_modules/**", - "!libs/**" + "!libs/**", + "!vendor/**", + "!tests/_output/**" ], }, }