diff --git Gruntfile.js Gruntfile.js
index 7d820e1075..0101888be5 100644
|
|
|
module.exports = function(grunt) { |
| 1127 | 1127 | files: [ |
| 1128 | 1128 | SOURCE_DIR + '**', |
| 1129 | 1129 | '!' + SOURCE_DIR + 'js/**/*.js', |
| 1130 | | // Ignore version control directories. |
| 1131 | | '!' + SOURCE_DIR + '**/.{svn,git}/**' |
| | 1130 | // Ignore version control directories and build files. |
| | 1131 | '!' + SOURCE_DIR + '**/.{svn,git}/**', |
| | 1132 | '!' + SOURCE_DIR + '**/node_modules/**', |
| | 1133 | '!' + SOURCE_DIR + '**/build/**', |
| | 1134 | '!' + SOURCE_DIR + '**/build-*/**', |
| 1132 | 1135 | ], |
| 1133 | 1136 | tasks: ['clean:dynamic', 'copy:dynamic'], |
| 1134 | 1137 | options: { |