Changeset 25243
- Timestamp:
- 09/04/2013 08:50:29 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r25200 r25243 4 4 var SOURCE_DIR = 'src/'; 5 5 var BUILD_DIR = 'build/'; 6 7 // Load tasks. 8 require('matchdep').filterDev('grunt-*').forEach( grunt.loadNpmTasks ); 6 9 7 10 // Project configuration. … … 155 158 }); 156 159 157 // Load tasks.158 grunt.loadNpmTasks('grunt-contrib-clean');159 grunt.loadNpmTasks('grunt-contrib-copy');160 grunt.loadNpmTasks('grunt-contrib-cssmin');161 grunt.loadNpmTasks('grunt-contrib-qunit');162 grunt.loadNpmTasks('grunt-contrib-uglify');163 grunt.loadNpmTasks('grunt-contrib-watch');164 grunt.loadNpmTasks('grunt-contrib-compress');165 grunt.loadNpmTasks('grunt-contrib-concat');166 167 160 // Register tasks. 168 161 grunt.registerTask('build', ['clean:all', 'copy:all', 'cssmin:core', 'uglify:core', -
trunk/package.json
r25188 r25243 18 18 "grunt-contrib-watch": "~0.5.1", 19 19 "grunt-contrib-compress": "~0.5.2", 20 "grunt-contrib-concat": "~0.3.0" 20 "grunt-contrib-concat": "~0.3.0", 21 "matchdep": "~0.1.2" 21 22 } 22 23 }
Note: See TracChangeset
for help on using the changeset viewer.