2015-03-29 14:43:02 +02:00
|
|
|
module.exports = function (grunt) {
|
2017-03-17 03:14:57 +01:00
|
|
|
grunt.loadNpmTasks("grunt-git-describe");
|
2015-04-19 12:55:14 +02:00
|
|
|
|
|
|
|
grunt.initConfig({
|
|
|
|
"git-describe": {
|
|
|
|
options: {},
|
|
|
|
default: {}
|
|
|
|
}
|
2017-03-17 03:14:57 +01:00
|
|
|
});
|
2015-04-19 12:55:14 +02:00
|
|
|
|
2017-03-17 03:14:57 +01:00
|
|
|
grunt.registerTask("saveRevision", function () {
|
2015-04-19 12:55:14 +02:00
|
|
|
grunt.event.once("git-describe", function (rev) {
|
2017-03-17 03:14:57 +01:00
|
|
|
grunt.option("gitRevision", rev);
|
|
|
|
});
|
|
|
|
grunt.task.run("git-describe");
|
|
|
|
});
|
2015-04-19 12:55:14 +02:00
|
|
|
|
2017-03-17 03:14:57 +01:00
|
|
|
grunt.loadTasks("tasks");
|
2015-03-29 14:43:02 +02:00
|
|
|
|
2017-03-17 03:14:57 +01:00
|
|
|
grunt.registerTask("default", ["bower-install-simple", "lint", "saveRevision", "copy", "sass", "postcss", "requirejs"]);
|
|
|
|
grunt.registerTask("lint", ["eslint"]);
|
|
|
|
grunt.registerTask("dev", ["default", "connect:server", "watch"]);
|
|
|
|
};
|
2015-03-29 14:43:02 +02:00
|
|
|
|