Changeset 50224 for branches/3.7/Gruntfile.js
- Timestamp:
- 02/05/2021 04:47:26 AM (5 years ago)
- Location:
- branches/3.7
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
Gruntfile.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/3.7
- Property svn:mergeinfo changed
-
branches/3.7/Gruntfile.js
r47343 r50224 6 6 7 7 // Load tasks. 8 require('matchdep').filterDev('grunt-*').forEach( grunt.loadNpmTasks ); 8 require('matchdep').filterDev(['grunt-*', '!grunt-legacy-util']).forEach( grunt.loadNpmTasks ); 9 // Load legacy utils 10 grunt.util = require('grunt-legacy-util'); 9 11 10 12 // Project configuration. … … 108 110 }, 109 111 uglify: { 112 options: { 113 '!ie8': false 114 }, 110 115 core: { 111 116 expand: true, … … 224 229 grunt.registerTask('travis:phpunit', 'Runs PHPUnit Travis CI tasks.', 'phpunit'); 225 230 231 // Patch task. 232 grunt.renameTask('patch_wordpress', 'patch'); 233 226 234 // Default task. 227 235 grunt.registerTask('default', ['build']);
Note: See TracChangeset
for help on using the changeset viewer.