Initial commit
This commit is contained in:
22
node_modules/ping/Gruntfile.js
generated
vendored
Normal file
22
node_modules/ping/Gruntfile.js
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
'use strict';
|
||||
|
||||
module.exports = function (grunt) {
|
||||
grunt.initConfig({
|
||||
eslint: {
|
||||
src: ['lib/*.js', 'lib/**/*.js'],
|
||||
options: {
|
||||
configFile: '.eslintrc.json',
|
||||
},
|
||||
},
|
||||
mochaTest: {
|
||||
src: ['test/test-*.js'],
|
||||
options: {
|
||||
reporter: 'dot',
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
grunt.loadNpmTasks('gruntify-eslint');
|
||||
grunt.loadNpmTasks('grunt-mocha-test');
|
||||
grunt.registerTask('test', ['eslint', 'mochaTest']);
|
||||
};
|
Reference in New Issue
Block a user