Make WordPress Core

Ticket #30334: 30334.diff

File 30334.diff, 1.3 KB (added by georgestephanis, 10 years ago)
  • Gruntfile.js

     
    421421                                dest: SOURCE_DIR
    422422                        }
    423423                },
     424                search: {
     425                        // The __DIR__ constant isn't available in PHP 5.2, so we can't use it yet.
     426                        DIR: {
     427                                files: {
     428                                        src: [
     429                                                '*.php',
     430                                                '**/*.php'
     431                                        ]
     432                                },
     433                                options: {
     434                                        searchString: '__DIR__',
     435                                        logFormat:    'console',
     436                                        failOnMatch:  true
     437                                }
     438                        }
     439                },
    424440                watch: {
    425441                        all: {
    426442                                files: [
     
    476492
    477493        // Pre-commit task.
    478494        grunt.registerTask('precommit', 'Runs front-end dev/test tasks in preparation for a commit.',
    479                 ['autoprefixer:core', 'imagemin:core', 'jshint:corejs', 'qunit:compiled']);
     495                ['autoprefixer:core', 'imagemin:core', 'jshint:corejs', 'qunit:compiled', 'search']);
    480496
    481497        // Copy task.
    482498        grunt.registerTask('copy:all', ['copy:files', 'copy:wp-admin-rtl', 'copy:version']);
  • package.json

     
    2626    "grunt-legacy-util": "^0.2.0",
    2727    "grunt-patch-wordpress": "~0.2.1",
    2828    "grunt-sass": "~0.16.0",
     29    "grunt-search": "^0.1.6",
    2930    "matchdep": "~0.3.0"
    3031  }
    3132}