mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-28 22:05:38 +00:00
21 lines
409 B
JavaScript
21 lines
409 B
JavaScript
|
|
module.exports = function(grunt) {
|
||
|
|
|
||
|
|
grunt.initConfig({
|
||
|
|
concat_css: {
|
||
|
|
options: {
|
||
|
|
// Task-specific options go here.
|
||
|
|
},
|
||
|
|
all: {
|
||
|
|
src: ["css/*.css"],
|
||
|
|
dest: "spritesheets.css"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
});
|
||
|
|
|
||
|
|
// Load the plugin that provides the "uglify" task.
|
||
|
|
grunt.loadNpmTasks('grunt-concat-css');
|
||
|
|
|
||
|
|
// Default task(s).
|
||
|
|
grunt.registerTask('default', ['concat_css']);
|
||
|
|
|
||
|
|
};
|