mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-11-11 01:54:04 +08:00
46 lines
1.1 KiB
JavaScript
46 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
module.exports = function(grunt) {
|
|
// Project configuration.
|
|
grunt.initConfig({
|
|
eslint: {
|
|
all: ['lib/**/*.js', 'imap-core/**/*.js', 'test/**/*.js', 'examples/**/*.js', 'Gruntfile.js']
|
|
},
|
|
|
|
mochaTest: {
|
|
all: {
|
|
options: {
|
|
reporter: 'spec'
|
|
},
|
|
// run imap-core tests first
|
|
src: ['imap-core/test/**/*-test.js', 'test/**/*-test.js']
|
|
}
|
|
},
|
|
|
|
wait: {
|
|
server: {
|
|
options: {
|
|
delay: 7 * 1000
|
|
}
|
|
}
|
|
},
|
|
|
|
shell: {
|
|
server: {
|
|
command: 'node server.js',
|
|
options: {
|
|
async: true
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
// Load the plugin(s)
|
|
grunt.loadNpmTasks('grunt-eslint');
|
|
grunt.loadNpmTasks('grunt-mocha-test');
|
|
grunt.loadNpmTasks('grunt-shell-spawn');
|
|
grunt.loadNpmTasks('grunt-wait');
|
|
|
|
// Tasks
|
|
grunt.registerTask('default', ['eslint', 'shell:server', 'wait:server', 'mochaTest', 'shell:server:kill']);
|
|
};
|