mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-01 03:30:25 +00:00
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?
21 lines
No EOL
409 B
JavaScript
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']);
|
|
|
|
}; |