mirror of
https://github.com/arnaucube/commonroutesApp.git
synced 2026-02-08 03:56:41 +01:00
12 lines
189 B
JavaScript
12 lines
189 B
JavaScript
'use strict';
|
|
|
|
module.exports = function (grunt, options) {
|
|
// Options
|
|
return {
|
|
options: {
|
|
debug: true,
|
|
coverage_dir: 'coverage'
|
|
}
|
|
};
|
|
};
|