mirror of
https://github.com/moparisthebest/mail
synced 2024-11-04 16:25:07 -05:00
228 lines
7.7 KiB
JavaScript
228 lines
7.7 KiB
JavaScript
module.exports = function(grunt) {
|
|
'use strict';
|
|
|
|
// Project configuration.
|
|
grunt.initConfig({
|
|
connect: {
|
|
dev: {
|
|
options: {
|
|
port: 8580,
|
|
base: '.',
|
|
keepalive: true
|
|
}
|
|
},
|
|
test: {
|
|
options: {
|
|
port: 8581,
|
|
base: '.'
|
|
}
|
|
},
|
|
prod: {
|
|
options: {
|
|
port: process.env.PORT || 8585,
|
|
base: './dist/',
|
|
keepalive: true,
|
|
middleware: function(connect, options) {
|
|
// Return array of whatever middlewares you want
|
|
return [
|
|
function(req, res, next) {
|
|
res.setHeader('Content-Security-Policy', "default-src 'self'; connect-src *; object-src 'none'; style-src 'self' 'unsafe-inline'");
|
|
|
|
return next();
|
|
},
|
|
|
|
// Serve static files.
|
|
connect.static(options.base)
|
|
];
|
|
}
|
|
}
|
|
}
|
|
},
|
|
|
|
jshint: {
|
|
all: ['Gruntfile.js', 'src/*.js', 'src/js/**/*.js', 'test/new-unit/*.js', 'test/unit/*.js', 'test/integration/*.js'],
|
|
options: {
|
|
jshintrc: '.jshintrc'
|
|
}
|
|
},
|
|
|
|
qunit: {
|
|
all: {
|
|
options: {
|
|
timeout: 20000,
|
|
urls: ['http://localhost:<%= connect.test.options.port %>/test/unit/index.html'
|
|
/*,
|
|
'http://localhost:<%= connect.test.options.port %>/test/integration/index.html'*/
|
|
]
|
|
}
|
|
}
|
|
},
|
|
|
|
mocha: {
|
|
all: {
|
|
options: {
|
|
urls: ['http://localhost:<%= connect.test.options.port %>/test/new-unit/index.html'],
|
|
run: false
|
|
}
|
|
}
|
|
},
|
|
|
|
clean: {
|
|
dist: ['dist', 'src/lib/*.js', 'test/lib', 'test/integration/src']
|
|
},
|
|
sass: {
|
|
dist: {
|
|
files: {
|
|
'dist/css/all.css': 'src/sass/all.scss'
|
|
}
|
|
}
|
|
},
|
|
autoprefixer: {
|
|
options: {
|
|
browsers: ['last 2 versions']
|
|
},
|
|
dist: {
|
|
files: {
|
|
'dist/css/all.css': 'dist/css/all.css'
|
|
}
|
|
}
|
|
},
|
|
csso: {
|
|
options: {
|
|
banner: '<%= banner %>'
|
|
},
|
|
dist: {
|
|
files: {
|
|
'dist/css/all.min.css': 'dist/css/all.css'
|
|
}
|
|
}
|
|
},
|
|
watch: {
|
|
css: {
|
|
files: ['src/sass/**/*.scss'],
|
|
tasks: ['dist-css']
|
|
},
|
|
js: {
|
|
files: ['src/js/**/*.js'],
|
|
tasks: ['copy:js']
|
|
},
|
|
lib: {
|
|
files: ['src/lib/**/*.js'],
|
|
tasks: ['copy:lib']
|
|
},
|
|
app: {
|
|
files: ['src/*.js', 'src/**/*.html', 'src/**/*.json', 'src/img/**/*', 'src/font/**/*'],
|
|
tasks: ['copy:app', 'copy:tpl', 'copy:img', 'copy:font']
|
|
}
|
|
},
|
|
copy: {
|
|
npm: {
|
|
expand: true,
|
|
flatten: true,
|
|
cwd: 'node_modules/',
|
|
src: [
|
|
'requirejs/require.js',
|
|
'crypto-lib/node_modules/node-forge/js/*.js',
|
|
'imap-client/src/*.js',
|
|
'imap-client/node_modules/inbox/src/*.js',
|
|
'imap-client/node_modules/setimmediate/setImmediate.js',
|
|
'imap-client/node_modules/inbox/node_modules/node-shims/src/*.js',
|
|
'imap-client/node_modules/inbox/node_modules/utf7/src/utf7.js',
|
|
'imap-client/node_modules/inbox/node_modules/xoauth2/src/xoauth2.js',
|
|
'imap-client/node_modules/mimelib/src/mimelib.js',
|
|
'imap-client/node_modules/mimelib/node_modules/addressparser/src/addressparser.js',
|
|
'imap-client/node_modules/mimelib/node_modules/encoding/src/encoding.js',
|
|
'imap-client/node_modules/mimelib/node_modules/encoding/node_modules/iconv-lite/src/*.js',
|
|
'imap-client/node_modules/mimelib/node_modules/encoding/node_modules/mime/src/*.js',
|
|
'imap-client/node_modules/mailparser/src/*.js',
|
|
'imap-client/node_modules/mailparser/node_modules/mime/src/mime.js',
|
|
'smtp-client/src/*.js',
|
|
'smtp-client/node_modules/mailcomposer/src/*',
|
|
'smtp-client/node_modules/nodemailer/src/*',
|
|
'smtp-client/node_modules/nodemailer/node_modules/simplesmtp/src/*',
|
|
],
|
|
dest: 'src/lib/'
|
|
},
|
|
npmDev: {
|
|
expand: true,
|
|
flatten: true,
|
|
cwd: 'node_modules/',
|
|
src: ['requirejs/require.js', 'mocha/mocha.css', 'mocha/mocha.js', 'chai/chai.js', 'sinon/pkg/sinon.js'],
|
|
dest: 'test/lib/'
|
|
},
|
|
cryptoLib: {
|
|
expand: true,
|
|
cwd: 'node_modules/crypto-lib/src/',
|
|
src: ['*.js'],
|
|
dest: 'src/js/crypto/'
|
|
},
|
|
lib: {
|
|
expand: true,
|
|
cwd: 'src/lib/',
|
|
src: ['**'],
|
|
dest: 'dist/lib/'
|
|
},
|
|
js: {
|
|
expand: true,
|
|
cwd: 'src/js/',
|
|
src: ['**'],
|
|
dest: 'dist/js/'
|
|
},
|
|
font: {
|
|
expand: true,
|
|
cwd: 'src/font/',
|
|
src: ['*'],
|
|
dest: 'dist/font/'
|
|
},
|
|
img: {
|
|
expand: true,
|
|
cwd: 'src/img/',
|
|
src: ['*'],
|
|
dest: 'dist/img/'
|
|
},
|
|
tpl: {
|
|
expand: true,
|
|
cwd: 'src/tpl/',
|
|
src: ['*'],
|
|
dest: 'dist/tpl/'
|
|
},
|
|
app: {
|
|
expand: true,
|
|
cwd: 'src/',
|
|
src: ['*.html', '*.js', '*.json'],
|
|
dest: 'dist/'
|
|
},
|
|
integration: {
|
|
expand: true,
|
|
cwd: 'src/',
|
|
src: ['**'],
|
|
dest: 'test/integration/src/'
|
|
}
|
|
}
|
|
});
|
|
|
|
// Load the plugin(s)
|
|
grunt.loadNpmTasks('grunt-contrib-connect');
|
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
|
grunt.loadNpmTasks('grunt-contrib-qunit');
|
|
grunt.loadNpmTasks('grunt-mocha');
|
|
grunt.loadNpmTasks('grunt-contrib-clean');
|
|
grunt.loadNpmTasks('grunt-csso');
|
|
grunt.loadNpmTasks('grunt-contrib-sass');
|
|
grunt.loadNpmTasks('grunt-autoprefixer');
|
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
|
grunt.loadNpmTasks('grunt-contrib-copy');
|
|
|
|
// Build tasks
|
|
grunt.registerTask('dist-npm', ['copy:npm', 'copy:npmDev', 'copy:cryptoLib']);
|
|
grunt.registerTask('dist-css', ['sass', 'autoprefixer', 'csso']);
|
|
grunt.registerTask('dist-copy', ['copy']);
|
|
grunt.registerTask('dist', ['clean', 'dist-npm', 'dist-css', 'dist-copy']);
|
|
grunt.registerTask('default', ['dist']);
|
|
|
|
// Test/Dev tasks
|
|
grunt.registerTask('dev', ['connect:dev']);
|
|
grunt.registerTask('test', ['jshint', 'connect:test', 'mocha', 'qunit']);
|
|
grunt.registerTask('prod', ['connect:prod']);
|
|
|
|
}; |