Make WordPress Core

Changeset 27054


Ignore:
Timestamp:
01/29/2014 04:44:31 AM (13 years ago)
Author:
wonderboymusic
Message:

Ignore .js files in wp-content when running jsvalidate during grunt build. See [26977].

Props TobiasBg.
Fixes #26615.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Gruntfile.js

    r26977 r27054  
    304304                        build: {
    305305                                files: {
    306                                         src: BUILD_DIR + '/**/*.js'
    307                                 }
    308                         }
     306                                        src: [
     307                                                BUILD_DIR + '/**/*.js',
     308                                                '!' + BUILD_DIR + '/wp-content/**/*.js',
     309                                        ]
     310                                }
     311                        }
    309312                },
    310313                watch: {
Note: See TracChangeset for help on using the changeset viewer.