UNPKG

539 BJavaScriptView Raw
1(function () {
2 /*
3 * grunt-karma-sonar
4 * https://github.com/mdasberg/grunt-karma-sonar
5 *
6 * Copyright (c) 2015 Mischa Dasberg and contributors
7 * Licensed under the MIT license.
8 */
9
10 'use strict';
11 module.exports = function (grunt) {
12 /** Sonar karma results. */
13 grunt.registerMultiTask('karmaSonar', 'Grunt plugin for integrating karma reports with sonar', function () {
14 //grunt.log.warn('log.warn');
15 require('./sonar')(grunt).run(this);
16 });
17 };
18})();
\No newline at end of file