node-red-nodes/Gruntfile.js

56 lines
1.8 KiB
JavaScript
Raw Normal View History

2014-11-04 16:07:32 +01:00
// Configuration for Node-RED-nodes project
2014-11-04 16:07:32 +01:00
module.exports = function(grunt) {
grunt.initConfig({
simplemocha: {
options: {
globals: ['expect'],
timeout: 3000,
ignoreLeaks: false,
ui: 'bdd',
reporter: 'spec'
},
all: { src: ['test/*/*/*_spec.js'] }
2014-11-04 16:07:32 +01:00
},
jshint: {
options: {
2017-03-10 00:18:22 +01:00
jshintrc:".jshintrc", // Use external file
2014-11-04 16:07:32 +01:00
},
all: {
2015-03-26 19:54:10 +01:00
src: ['*/*.js','*/*/*.js'],
filter: function(filepath) { // on some developer machines the test coverage HTML report utilities cause further failures
2015-03-26 19:54:10 +01:00
if ((filepath.indexOf("coverage/") !== -1) || (filepath.indexOf("node_modules") !== -1)) {
2015-03-26 20:43:30 +01:00
console.log( "\033[30m filtered out \033[32m:\033[37m " + filepath + "\033[0m");
return false;
2015-03-26 19:54:10 +01:00
} else {
return true;
}
}
2014-11-04 16:07:32 +01:00
},
},
inlinelint: {
html: ['*/*/*.html', '!node_modules/*/*.html', '!*/node_modules/*.html'],
options: {
jshintrc: ".jshintrc"
//,reporter: require('jshint-stylish')
}
},
jscs: {
src: "*/*/*.js",
options: {
config: ".jscsrc",
reporter: "inline"
2017-03-10 00:18:22 +01:00
//,fix: true
}
2014-11-04 16:07:32 +01:00
}
});
grunt.loadNpmTasks('grunt-simple-mocha');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-lint-inline');
grunt.loadNpmTasks('grunt-jscs');
2014-11-04 16:07:32 +01:00
grunt.registerTask('default', ['jshint:all', 'inlinelint', 'simplemocha:all']);
grunt.registerTask('style', ['jscs']);
2014-11-04 16:07:32 +01:00
};