Ticket #27343: 27343.2.diff
File 27343.2.diff, 1.6 KB (added by , 10 years ago) |
---|
-
Gruntfile.js
5 5 BUILD_DIR = 'build/'; 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. 11 13 grunt.initConfig({ -
package.json
10 10 "license": "GPLv2 or later", 11 11 "devDependencies": { 12 12 "grunt": "~0.4.2", 13 "grunt-autoprefixer": "~0.7.1", 13 14 "grunt-contrib-clean": "~0.5.0", 15 "grunt-contrib-compress": "~0.6.0", 16 "grunt-contrib-concat": "~0.3.0", 14 17 "grunt-contrib-copy": "~0.5.0", 15 18 "grunt-contrib-cssmin": "~0.7.0", 19 "grunt-contrib-imagemin": "~0.4.1", 20 "grunt-contrib-jshint": "~0.8.0", 16 21 "grunt-contrib-qunit": "~0.4.0", 17 22 "grunt-contrib-uglify": "~0.3.0", 18 23 "grunt-contrib-watch": "~0.5.3", 19 "grunt-contrib-compress": "~0.6.0",20 "grunt-contrib-concat": "~0.3.0",21 "grunt-contrib-jshint": "~0.8.0",22 24 "grunt-cssjanus": "~0.2.2", 25 "grunt-jsvalidate": "~0.2.2", 26 "grunt-legacy-util": "^0.2.0", 27 "grunt-patch-wordpress": "~0.2.1", 23 28 "grunt-sass": "~0.10.0", 24 "grunt-autoprefixer": "~0.7.1",25 "grunt-jsvalidate": "~0.2.2",26 "grunt-contrib-imagemin" : "~0.4.1",27 "grunt-patch-wordpress" : "~0.2.1",28 29 "matchdep": "~0.3.0" 29 30 } 30 31 }