Ticket #44241: 44241.diff
File 44241.diff, 879 bytes (added by , 7 years ago) |
---|
-
Gruntfile.js
1070 1070 'Gruntfile.js', 1071 1071 'webpack-dev.config.js', 1072 1072 'webpack.config.js' 1073 ] 1073 ], 1074 options: { 1075 interval: 2000 1076 } 1074 1077 }, 1075 1078 colors: { 1076 1079 files: [SOURCE_DIR + 'wp-admin/css/colors/**'], 1077 tasks: ['sass:colors'] 1080 tasks: ['sass:colors'], 1081 options: { 1082 interval: 2000 1083 } 1078 1084 }, 1079 1085 rtl: { 1080 1086 files: [ … … 1092 1098 'tests/qunit/**', 1093 1099 '!tests/qunit/editor/**' 1094 1100 ], 1095 tasks: ['qunit'] 1101 tasks: ['qunit'], 1102 options: { 1103 interval: 2000 1104 } 1096 1105 }, 1097 1106 phpunit: { 1098 1107 files: [ '**/*.php' ], 1099 tasks: [ 'phpunit:default' ] 1108 tasks: [ 'phpunit:default' ], 1109 options: { 1110 interval: 2000 1111 } 1100 1112 } 1101 1113 } 1102 1114 });