Changeset 43335
- Timestamp:
- 06/08/2018 04:40:18 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r43329 r43335 1112 1112 ], 1113 1113 tasks: ['qunit'] 1114 },1115 phpunit: {1116 files: [ '**/*.php' ],1117 tasks: [ 'phpunit:default' ]1118 1114 } 1119 1115 } … … 1159 1155 if ( ! this.args.length || this.args.indexOf( 'webpack' ) > -1 ) { 1160 1156 grunt.task.run( 'build' ); 1157 } 1158 1159 if ( 'watch:phpunit' === grunt.cli.tasks[ 0 ] || 'undefined' !== typeof grunt.option( 'phpunit' ) ) { 1160 grunt.config.data._watch.phpunit = { 1161 files: [ '**/*.php' ], 1162 tasks: [ 'phpunit:default' ] 1163 }; 1161 1164 } 1162 1165
Note: See TracChangeset
for help on using the changeset viewer.