Changeset 25178
- Timestamp:
- 08/30/2013 04:06:34 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Gruntfile.js
r25173 r25178 54 54 } 55 55 }, 56 qunit: { 57 files: ['tests/qunit/**/*.html'] 58 }, 56 59 uglify: { 57 60 core: { … … 105 108 interval: 2000 106 109 } 110 }, 111 test: { 112 files: ['tests/qunit/**'], 113 tasks: ['qunit'] 107 114 } 108 115 } … … 113 120 grunt.loadNpmTasks('grunt-contrib-copy'); 114 121 grunt.loadNpmTasks('grunt-contrib-cssmin'); 122 grunt.loadNpmTasks('grunt-contrib-qunit'); 115 123 grunt.loadNpmTasks('grunt-contrib-uglify'); 116 124 grunt.loadNpmTasks('grunt-contrib-watch'); … … 119 127 grunt.registerTask('build', ['clean:all', 'copy:all', 'cssmin:core', 120 128 'uglify:core', 'uglify:tinymce']); 129 130 // Testing task. 131 grunt.registerTask('test', ['qunit']); 121 132 122 133 // Default task. -
trunk/package.json
r25001 r25178 14 14 "grunt-contrib-copy": "~0.4.1", 15 15 "grunt-contrib-cssmin": "~0.6.1", 16 "grunt-contrib-qunit": "~0.2.2", 16 17 "grunt-contrib-uglify": "~0.2.2", 17 18 "grunt-contrib-watch": "~0.5.1"
Note: See TracChangeset
for help on using the changeset viewer.