Update to NPM version
This commit is contained in:
23
ProjectSourceCode/node_modules/memorystream/Gruntfile.js
generated
vendored
Normal file
23
ProjectSourceCode/node_modules/memorystream/Gruntfile.js
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
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']);
|
||||
};
|
||||
Reference in New Issue
Block a user