Ticket #2893: 2893.diff
File 2893.diff, 1.3 KB (added by , 10 years ago) |
---|
-
Gruntfile.js
89 89 src: [] 90 90 } 91 91 }, 92 checkDependencies: { 93 options: { 94 packageManager: 'npm' 95 }, 96 src: {} 97 }, 92 98 copy: { 93 99 files: { 94 100 files: [ … … 328 334 grunt.registerTask( 'colors', [ 'sass:colors' ] ); 329 335 330 336 // Build tasks. 331 grunt.registerTask( 'src', [ ' jsvalidate:src', 'jshint' ] );337 grunt.registerTask( 'src', [ 'checkDependencies', 'jsvalidate:src', 'jshint' ] ); 332 338 grunt.registerTask( 'commit', [ 'src', 'checktextdomain' ] ); 333 339 grunt.registerTask( 'build', [ 'commit', 'clean:all', 'copy:files', 'colors', 'rtlcss:core', 'cssmin:ltr', 'cssmin:rtl', 'uglify:core', 'jsvalidate:build', 'makepot' ] ); 334 340 grunt.registerTask( 'release', [ 'build' ] ); -
package.json
6 6 "description": "Forum software with a twist from the creators of WordPress.", 7 7 "devDependencies": { 8 8 "grunt": "~0.4.5", 9 "grunt-check-dependencies": "~0.11.2", 9 10 "grunt-checktextdomain": "~1.0.0", 10 11 "grunt-contrib-clean": "~0.6.0", 11 12 "grunt-contrib-copy": "~0.8.0",