Make WordPress Core

Ticket #26615: 26615-exclude-wp-content.patch

File 26615-exclude-wp-content.patch, 392 bytes (added by TobiasBg, 11 years ago)

Don't jsvalidate files in wp-content

  • Gruntfile.js

     
    303303                        },
    304304                        build: {
    305305                                files: {
    306                                         src: BUILD_DIR + '/**/*.js'
     306                                        src: [
     307                                                BUILD_DIR + '/**/*.js',
     308                                                '!' + BUILD_DIR + '/wp-content/**/*.js',
     309                                        ]
    307310                                }
    308                         } 
     311                        }
    309312                },
    310313                watch: {
    311314                        all: {