habitica-self-host/Gruntfile.js
Tyler Renelle 614f734e67 move a bunch of the spritesheets from the website into css/, add a Grunt
step to compile all the spritesheets into a top-level spritesheets.css,
add an archive/ directory for all the old stuff i'm not sure we need?
2013-08-26 21:24:48 -04:00

21 lines
No EOL
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']);
};