UNPKG

grunt-edools-server

Version:
73 lines (61 loc) 1.49 kB
/* * edools-grunt-server * * * Copyright (c) 2014 Diogo Beda * Licensed under the MIT license. */ 'use strict'; module.exports = function (grunt) { // load all npm grunt tasks require('load-grunt-tasks')(grunt); // Project configuration. grunt.initConfig({ jshint: { all: [ 'Gruntfile.js', 'tasks/*.js', '<%= nodeunit.tests %>' ], options: { jshintrc: '.jshintrc', reporter: require('jshint-stylish') } }, // Before generating any new files, remove any previously-created files. clean: { tests: ['tmp'] }, // Configuration to be run (and then tested). edools_server: { extending_connect: { options: { paramsPath: 'test/fixtures/test.json', appPath: 'test/fixtures', port: 9000, hostname: '0.0.0.0', livereload: 35729, base: [ 'test', ] } } }, // Unit tests. nodeunit: { tests: ['test/*_test.js'] }, release: { options: { npm: true } } }); // Actually load this plugin's task(s). grunt.loadTasks('tasks'); // Whenever the "test" task is run, first clean the "tmp" dir, then run this // plugin's task(s), then test the result. grunt.registerTask('test', ['clean', 'edools_server', 'nodeunit']); // By default, lint and run all tests. grunt.registerTask('default', ['jshint', 'test']); };