Urara-Blog/node_modules/.pnpm-store/v3/files/25/6107405a20f51123809e301d7329a6caedeaf72650f1ba2b6b353cb01f2724b2b240cf85d31f5445b1be9ca9ea69238f21c431da909c7c7063c217bce6b792
2022-08-14 01:14:53 +08:00

23 lines
No EOL
548 B
Text

module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-mocha-test');
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
options: {
node: true
},
main : ["index.js"]
},
mochaTest: {
options: {
reporter: 'spec'
},
src: ['test/*.test.js']
}
});
grunt.registerTask('default', ['jshint:main', 'mochaTest']);
};