From 4c92bead42a66e73e87cbd0cad4271e8c83205d0 Mon Sep 17 00:00:00 2001 From: Christopher Hoskin Date: Wed, 9 Jan 2019 15:22:57 +0000 Subject: [PATCH] Remove grunt --- services/notifications/Gruntfile.coffee | 54 ------------------------- 1 file changed, 54 deletions(-) delete mode 100644 services/notifications/Gruntfile.coffee diff --git a/services/notifications/Gruntfile.coffee b/services/notifications/Gruntfile.coffee deleted file mode 100644 index 0e32ec4bcf..0000000000 --- a/services/notifications/Gruntfile.coffee +++ /dev/null @@ -1,54 +0,0 @@ -module.exports = (grunt) -> - grunt.initConfig - coffee: - app_src: - expand: true, - cwd: "app/coffee" - src: ['**/*.coffee'], - dest: 'app/js/', - ext: '.js' - - app: - src: "app.coffee" - dest: "app.js" - - unit_tests: - expand: true - cwd: "test/unit/coffee" - src: ["**/*.coffee"] - dest: "test/unit/js/" - ext: ".js" - - clean: - app: ["app/js/"] - unit_tests: ["test/unit/js"] - - execute: - app: - src: "app.js" - - mochaTest: - unit: - options: - reporter: grunt.option('reporter') or 'spec' - grep: grunt.option("grep") - - src: ["test/unit/js/**/*.js"] - - grunt.loadNpmTasks 'grunt-contrib-coffee' - grunt.loadNpmTasks 'grunt-contrib-clean' - grunt.loadNpmTasks 'grunt-mocha-test' - grunt.loadNpmTasks 'grunt-execute' - grunt.loadNpmTasks 'grunt-bunyan' - - grunt.registerTask 'compile:app', ['clean:app', 'coffee:app', 'coffee:app_src'] - grunt.registerTask 'run', ['compile:app', 'bunyan', 'execute'] - - grunt.registerTask 'compile:unit_tests', ['clean:unit_tests', 'coffee:unit_tests'] - grunt.registerTask 'test:unit', ['compile:app', 'compile:unit_tests', 'mochaTest:unit'] - - grunt.registerTask 'install', 'compile:app' - - grunt.registerTask 'default', ['run'] - -