grunt server tasks added

This commit is contained in:
Лаврёнов Антон 2014-02-27 18:45:28 +08:00
parent aeecd2d200
commit ac2cb3c7ea
4 changed files with 28 additions and 4 deletions

View File

@ -208,7 +208,16 @@ module.exports = function(grunt) {
},
mocha_phantomjs: {
all: ['test/runner.html']
}
},
watch: {
dev: {
files: ['src/**/*.js'],
tasks: ['dev'],
options: {
spawn: false,
},
},
},
};
@ -243,8 +252,19 @@ module.exports = function(grunt) {
'shell:jsdoc',
]);
grunt.registerTask('hint', 'Check lint errors', ['clean', 'concat:dev', 'replace:dev', 'jshint']);
grunt.registerTask('tests', 'Run tests', ['dev', 'mocha_phantomjs']);
grunt.registerTask('lint', 'Check lint errors', ['jshint']);
grunt.registerTask('test', 'Run tests', ['dev', 'mocha_phantomjs']);
grunt.registerTask('server', 'run local server and create dev version', function() {
grunt.task.run('dev');
grunt.log.writeln('Tests server starts on http://localhost:8080/test/runner.html');
var connect = require('connect');
connect.createServer(
connect.static(__dirname)
).listen(8080);
grunt.task.run('watch:dev');
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-replace');
@ -254,4 +274,5 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-shell');
grunt.loadNpmTasks('grunt-mocha-phantomjs');
grunt.loadNpmTasks('grunt-contrib-watch');
};

0
jsdoc-master/jsdoc Normal file → Executable file
View File

View File

@ -18,7 +18,8 @@
"grunt-contrib-copy": "~0.5.0",
"grunt-shell": "^0.6.4",
"jsdoc": "^3.3.0-alpha4",
"grunt-mocha-phantomjs": "^0.4.2"
"grunt-mocha-phantomjs": "^0.4.2",
"grunt-contrib-watch": "^0.5.3"
},
"readmeFilename": "README.md",
"main": "Gruntfile.js",

View File

@ -1,3 +1,5 @@
console.log('Do not use this way, use grunt server (with watch functionality) instead.');
var connect = require('connect');
connect.createServer(
connect.static(__dirname)