Make WordPress Core

Ticket #44241: 44241.diff

File 44241.diff, 879 bytes (added by jeremyfelt, 7 years ago)
  • Gruntfile.js

     
    10701070                                        'Gruntfile.js',
    10711071                                        'webpack-dev.config.js',
    10721072                                        'webpack.config.js'
    1073                                 ]
     1073                                ],
     1074                                options: {
     1075                                        interval: 2000
     1076                                }
    10741077                        },
    10751078                        colors: {
    10761079                                files: [SOURCE_DIR + 'wp-admin/css/colors/**'],
    1077                                 tasks: ['sass:colors']
     1080                                tasks: ['sass:colors'],
     1081                                options: {
     1082                                        interval: 2000
     1083                                }
    10781084                        },
    10791085                        rtl: {
    10801086                                files: [
     
    10921098                                        'tests/qunit/**',
    10931099                                        '!tests/qunit/editor/**'
    10941100                                ],
    1095                                 tasks: ['qunit']
     1101                                tasks: ['qunit'],
     1102                                options: {
     1103                                        interval: 2000
     1104                                }
    10961105                        },
    10971106                        phpunit: {
    10981107                                files: [ '**/*.php' ],
    1099                                 tasks: [ 'phpunit:default' ]
     1108                                tasks: [ 'phpunit:default' ],
     1109                                options: {
     1110                                        interval: 2000
     1111                                }
    11001112                        }
    11011113                }
    11021114        });