Added grunt server task to run server+watch
This commit is contained in:
parent
bc23e9cea6
commit
adca1bbd08
2 changed files with 33 additions and 10 deletions
40
Gruntfile.js
40
Gruntfile.js
|
@ -64,12 +64,29 @@ module.exports = function(grunt) {
|
|||
base : '.',
|
||||
port : 4321
|
||||
}
|
||||
},
|
||||
serve : {
|
||||
options : {
|
||||
base : '.',
|
||||
port : 1234,
|
||||
keepalive : true
|
||||
}
|
||||
},
|
||||
express: {
|
||||
server: {
|
||||
options: {
|
||||
port: 9001,
|
||||
hostname : 'localhost',
|
||||
bases: ['dest']
|
||||
}
|
||||
}
|
||||
},
|
||||
open : {
|
||||
server : {
|
||||
path : 'http://localhost:9001/'
|
||||
}
|
||||
},
|
||||
|
||||
watch: {
|
||||
scripts: {
|
||||
files: ['src/**/*.*'],
|
||||
tasks: ['merge'],
|
||||
options: {
|
||||
spawn: false
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -175,14 +192,17 @@ module.exports = function(grunt) {
|
|||
src: ['src/css/**/*.css']
|
||||
});
|
||||
|
||||
grunt.loadNpmTasks('grunt-closure-tools');
|
||||
grunt.loadNpmTasks('grunt-contrib-clean');
|
||||
grunt.loadNpmTasks('grunt-contrib-concat');
|
||||
grunt.loadNpmTasks('grunt-contrib-connect');
|
||||
grunt.loadNpmTasks('grunt-contrib-copy');
|
||||
grunt.loadNpmTasks('grunt-contrib-jshint');
|
||||
grunt.loadNpmTasks('grunt-contrib-concat');
|
||||
grunt.loadNpmTasks('grunt-contrib-uglify');
|
||||
grunt.loadNpmTasks('grunt-closure-tools');
|
||||
grunt.loadNpmTasks('grunt-contrib-watch');
|
||||
grunt.loadNpmTasks('grunt-express');
|
||||
grunt.loadNpmTasks('grunt-ghost');
|
||||
grunt.loadNpmTasks('grunt-open');
|
||||
grunt.loadNpmTasks('grunt-leading-indent');
|
||||
|
||||
// Validate
|
||||
|
@ -202,6 +222,6 @@ module.exports = function(grunt) {
|
|||
// Validate & Build
|
||||
grunt.registerTask('default', ['clean:before', 'lint', 'compile', 'merge']);
|
||||
|
||||
// Start webserver
|
||||
grunt.registerTask('serve', ['connect:serve']);
|
||||
// Start webserver and watch for changes
|
||||
grunt.registerTask('server', ['express', 'open', 'watch']);
|
||||
};
|
||||
|
|
|
@ -19,7 +19,10 @@
|
|||
"grunt-contrib-copy": "0.5.0",
|
||||
"grunt-contrib-jshint": "0.5.4",
|
||||
"grunt-contrib-uglify": "0.2.2",
|
||||
"grunt-contrib-watch": "0.6.1",
|
||||
"grunt-express": "1.0",
|
||||
"grunt-ghost": "1.0.12",
|
||||
"grunt-open": "0.2.3",
|
||||
"grunt-leading-indent": "0.1.0",
|
||||
"grunt-closure-tools": "~0.8.3"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue