87 lines
1.6 KiB
JavaScript
87 lines
1.6 KiB
JavaScript
|
'use strict';
|
||
|
module.exports = function(grunt) {
|
||
|
require('load-grunt-tasks')(grunt);
|
||
|
|
||
|
grunt.initConfig({
|
||
|
|
||
|
jshint: {
|
||
|
options: {
|
||
|
jshintrc: '.jshintrc',
|
||
|
reporter: require('jshint-stylish')
|
||
|
},
|
||
|
all: [
|
||
|
'**/*.js',
|
||
|
'!bower_components/**/*.js',
|
||
|
'!node_modules/**/*.js'
|
||
|
]
|
||
|
},
|
||
|
|
||
|
csslint: {
|
||
|
options: { csslintrc: '.csslintrc' },
|
||
|
check: {
|
||
|
src: [
|
||
|
'**/*.css',
|
||
|
'!bower_components/**/*.css',
|
||
|
'!node_modules/**/*.css'
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
|
||
|
watch: {
|
||
|
options: {
|
||
|
interrupt: true,
|
||
|
livereload: true,
|
||
|
livereloadOnError: false
|
||
|
},
|
||
|
js: {
|
||
|
files: [
|
||
|
'**/*.js',
|
||
|
'!bower_components/**/*.js',
|
||
|
'!node_modules/**/*.js'
|
||
|
],
|
||
|
tasks: ['jshint:all']
|
||
|
},
|
||
|
css: {
|
||
|
files: [
|
||
|
'**/*.css',
|
||
|
'!bower_components/**/*.css',
|
||
|
'!node_modules/**/*.css'
|
||
|
],
|
||
|
tasks: ['csslint:check']
|
||
|
},
|
||
|
html: {
|
||
|
files: [
|
||
|
'**/*.html',
|
||
|
'!bower_components/**/*.html',
|
||
|
'!node_modules/**/*.html'
|
||
|
],
|
||
|
},
|
||
|
configFiles: {
|
||
|
files: [ 'Gruntfile.js' ],
|
||
|
options: { reload: true }
|
||
|
}
|
||
|
},
|
||
|
|
||
|
connect: {
|
||
|
server: {
|
||
|
options: {
|
||
|
port: 3000,
|
||
|
hostname: '*',
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
|
||
|
// Tasks
|
||
|
grunt.registerTask('serve', function () {
|
||
|
grunt.task.run([
|
||
|
'jshint:all',
|
||
|
'csslint:check',
|
||
|
'connect',
|
||
|
'watch'
|
||
|
]);
|
||
|
});
|
||
|
|
||
|
grunt.registerTask('default', ['serve']);
|
||
|
};
|