Formatting gruntfile correctly
This commit is contained in:
parent
d794301301
commit
72a28f7905
2 changed files with 52 additions and 49 deletions
99
Gruntfile.js
99
Gruntfile.js
|
@ -1,48 +1,53 @@
|
|||
grunt.loadNpmTasks('grunt-contrib-connect');
|
||||
grunt.loadNpmTasks('grunt-contrib-jshint');
|
||||
//grunt.loadNpmTasks('grunt-contrib-nodeunit');
|
||||
grunt.loadNpmTasks('grunt-ghost');
|
||||
|
||||
grunt.registerTask('test', ['jshint', /*'nodeunit',*/ 'connect', 'ghost']);
|
||||
|
||||
jshint: {
|
||||
/*options: {
|
||||
jshintrc: '.jshintrc'
|
||||
},*/
|
||||
files: [
|
||||
'Gruntfile.js',
|
||||
'package.json',
|
||||
'source/**/*.js'/*,
|
||||
'<%= nodeunit.tests %>'*/
|
||||
]
|
||||
},
|
||||
/*
|
||||
nodeunit: {
|
||||
tests: ['tests/nodeunit/*_test.js']
|
||||
},
|
||||
*/
|
||||
connect: {
|
||||
www: {
|
||||
options: {
|
||||
base: 'source',
|
||||
port: 4545
|
||||
}
|
||||
}
|
||||
},
|
||||
ghost: {
|
||||
test: {
|
||||
files: [{
|
||||
src: ['tests/integration/casperjs/*_test.js']
|
||||
}]
|
||||
},
|
||||
options: {
|
||||
args: {
|
||||
baseUrl: 'http://localhost:' +
|
||||
'<%= connect.www.options.port %>/'
|
||||
module.exports = function(grunt) {
|
||||
grunt.initConfig({
|
||||
jshint: {
|
||||
/*options: {
|
||||
jshintrc: '.jshintrc'
|
||||
},*/
|
||||
files: [
|
||||
'Gruntfile.js',
|
||||
'package.json',
|
||||
'source/**/*.js'/*,
|
||||
'<%= nodeunit.tests %>'*/
|
||||
]
|
||||
},
|
||||
direct: false,
|
||||
logLevel: 'error',
|
||||
printCommand: false,
|
||||
printFilePaths: true
|
||||
}
|
||||
}
|
||||
/*
|
||||
nodeunit: {
|
||||
tests: ['tests/nodeunit/*_test.js']
|
||||
},
|
||||
*/
|
||||
connect: {
|
||||
www: {
|
||||
options: {
|
||||
base: 'source',
|
||||
port: 4545
|
||||
}
|
||||
}
|
||||
},
|
||||
ghost: {
|
||||
test: {
|
||||
files: [{
|
||||
src: ['tests/integration/casperjs/*_test.js']
|
||||
}]
|
||||
},
|
||||
options: {
|
||||
args: {
|
||||
baseUrl: 'http://localhost:' +
|
||||
'<%= connect.www.options.port %>/'
|
||||
},
|
||||
direct: false,
|
||||
logLevel: 'error',
|
||||
printCommand: false,
|
||||
printFilePaths: true
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
grunt.loadNpmTasks('grunt-contrib-connect');
|
||||
grunt.loadNpmTasks('grunt-contrib-jshint');
|
||||
//grunt.loadNpmTasks('grunt-contrib-nodeunit');
|
||||
grunt.loadNpmTasks('grunt-ghost');
|
||||
|
||||
grunt.registerTask('test', ['jshint', /*'nodeunit',*/ 'connect', 'ghost']);
|
||||
|
||||
};
|
||||
|
|
2
Makefile
2
Makefile
|
@ -1,2 +0,0 @@
|
|||
test:
|
||||
jshint js/*.js
|
Loading…
Reference in a new issue