gradient-parser/gruntfile.js
2014-09-05 00:34:08 +02:00

27 lines
384 B
JavaScript

'use strict';
module.exports = function (grunt) {
var config = {
app: '.',
dist: '.'
};
grunt.initConfig({
config: config,
mochaTest: {
test: {
options: {
reporter: 'spec'
},
src: ['spec/**/*.js']
}
}
});
grunt.loadNpmTasks('grunt-mocha-test');
grunt.registerTask('default', [
'mochaTest'
]);
};