Simplify grunt file and update .gitignore
This commit is contained in:
parent
d6059b87d6
commit
9264cc3438
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,4 +1,6 @@
|
|||||||
build
|
build
|
||||||
build/*
|
build/*
|
||||||
coverage
|
coverage
|
||||||
coverage/*
|
coverage/*
|
||||||
|
npm-debug.log
|
||||||
|
tests/FB_TEST_DB.FDB
|
34
Gruntfile.js
34
Gruntfile.js
@ -1,14 +1,9 @@
|
|||||||
module.exports = function(grunt) {
|
module.exports = function(grunt) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var tests = 'tests/**/*_test.js';
|
|
||||||
var src = 'lib/**/*.js';
|
|
||||||
var reportDir = 'coverage';
|
|
||||||
|
|
||||||
// Project configuration
|
// Project configuration
|
||||||
grunt.initConfig({
|
grunt.initConfig({
|
||||||
pkg: grunt.file.readJSON('package.json'),
|
pkg: grunt.file.readJSON('package.json'),
|
||||||
clean: [ 'build' ],
|
|
||||||
jsdoc: {
|
jsdoc: {
|
||||||
dist: {
|
dist: {
|
||||||
src: ['lib/*.js', 'README.md'],
|
src: ['lib/*.js', 'README.md'],
|
||||||
@ -20,45 +15,18 @@ module.exports = function(grunt) {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
nodeunit: {
|
nodeunit: {
|
||||||
all: [tests],
|
all: ['tests/**/*_test.js'],
|
||||||
options: {
|
options: {
|
||||||
reporter: 'verbose'
|
reporter: 'verbose'
|
||||||
}
|
}
|
||||||
},
|
|
||||||
watch: {
|
|
||||||
files: [src, tests],
|
|
||||||
tasks: 'default'
|
|
||||||
},
|
|
||||||
instrument: {
|
|
||||||
files: src,
|
|
||||||
options: {
|
|
||||||
lazy: true,
|
|
||||||
basePath : 'build/instrument/'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
storeCoverage : {
|
|
||||||
options : {
|
|
||||||
dir: reportDir
|
|
||||||
}
|
|
||||||
},
|
|
||||||
makeReport: {
|
|
||||||
src: 'build/reports/**/*.json',
|
|
||||||
options: {
|
|
||||||
type: ['lcov', 'html'],
|
|
||||||
dir: reportDir,
|
|
||||||
print: 'detail'
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
grunt.loadNpmTasks('grunt-jsdoc');
|
grunt.loadNpmTasks('grunt-jsdoc');
|
||||||
grunt.loadNpmTasks('grunt-contrib-clean');
|
|
||||||
grunt.loadNpmTasks('grunt-contrib-nodeunit');
|
grunt.loadNpmTasks('grunt-contrib-nodeunit');
|
||||||
grunt.loadNpmTasks('grunt-istanbul');
|
|
||||||
|
|
||||||
|
|
||||||
grunt.registerTask('default', ['nodeunit','jsdoc']);
|
grunt.registerTask('default', ['nodeunit','jsdoc']);
|
||||||
grunt.registerTask('tests', 'nodeunit');
|
grunt.registerTask('tests', 'nodeunit');
|
||||||
grunt.registerTask('docs', 'jsdoc');
|
grunt.registerTask('docs', 'jsdoc');
|
||||||
grunt.registerTask('cover', ['clean', 'instrument', 'tests', 'storeCoverage', 'makeReport']);
|
|
||||||
};
|
};
|
Loading…
Reference in New Issue
Block a user