Changeset 10399
- Timestamp:
- 12/03/2015 10:31:07 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r10230 r10399 27 27 grunt.initConfig( { 28 28 pkg: grunt.file.readJSON( 'package.json' ), 29 checkDependencies: { 30 options: { 31 packageManager: 'npm' 32 }, 33 src: {} 34 }, 29 35 jshint: { 30 36 options: grunt.file.readJSON( '.jshintrc' ), … … 253 259 * Register tasks. 254 260 */ 255 grunt.registerTask( 'src', [' jsvalidate:src', 'jshint', 'scsslint', 'sass', 'cssjanus'] );261 grunt.registerTask( 'src', ['checkDependencies', 'jsvalidate:src', 'jshint', 'scsslint', 'sass', 'cssjanus'] ); 256 262 grunt.registerTask( 'commit', ['src', 'checktextdomain', 'imagemin'] ); 257 263 grunt.registerTask( 'build', ['commit', 'clean:all', 'copy:files', 'uglify', 'jsvalidate:build', 'cssmin', 'makepot', 'exec:bpdefault'] ); -
trunk/package.json
r10352 r10399 17 17 "grunt-cssjanus": "~0.2.4", 18 18 "grunt-exec": "~0.4.6", 19 "grunt-check-dependencies": "~0.11.2", 19 20 "grunt-jsvalidate": "~0.2.2", 20 21 "grunt-legacy-util": "^0.2.0",
Note: See TracChangeset
for help on using the changeset viewer.