This file ( 920B ) exceeds the allowed full mode (48 kb) size.
The editor full hight is disabled, only scrolling is allowed..
If you wish to edit a file, it is recommended to use the scroll mode as some users do not like the full height
mode, although some users like it.
/*
* grunt-express-server
* https://github.com/ericclemmons/grunt-express-server
*
* Copyright (c) 2013 Eric Clemmons
* Licensed under the MIT license.
*/
'use strict';
var path = require('path');
module.exports = function(grunt) {
var server = require('./lib/server')(grunt);
grunt.registerMultiTask('express', 'Start an express web server', function() {
var options = this.options({
args: [ ],
background: true,
error: function(err, result, code) { /* Callback has to exist */ },
fallback: function() { /* Prevent EADDRINUSE from breaking Grunt */ },
port: 3000
});
options.script = path.resolve(options.script);
options.args.unshift(options.script);
if (!grunt.file.exists(options.script)) {
grunt.log.error('Could not find server script: ' + options.script);
return false;
}
server.start(options);
});
};