mirror of
https://github.com/owenthereal/jqplay.git
synced 2025-04-19 06:02:17 +03:00
7 lines
248 B
JavaScript
7 lines
248 B
JavaScript
module.exports = function(grunt) {
|
|
grunt.loadTasks('tasks');
|
|
grunt.registerTask('build', "Builds the application.",
|
|
['clean', 'concat', 'cssmin', 'copy', 'uglify', 'replace']);
|
|
grunt.option('ts', new Date().getTime());
|
|
}
|