326 lines
8.4 KiB
JavaScript
Executable file
326 lines
8.4 KiB
JavaScript
Executable file
'use strict';
|
|
var spawn = require('child_process').spawn;
|
|
|
|
|
|
module.exports = function(grunt) {
|
|
require('jit-grunt')(grunt);
|
|
|
|
// Unified Watch Object
|
|
var watchFiles = {
|
|
serverViews: ['app/views/**/*.*'],
|
|
serverJS: ['gruntfile.js', 'server.js', 'config/**/*.js', 'app/**/*.js', '!app/tests/'],
|
|
|
|
clientViews: ['public/modules/**/views/**.html'],
|
|
clientJS: ['public/js/*.js', 'public/form_modules/**/*.js', 'public/modules/**/*.js'],
|
|
clientCSS: ['public/modules/**/*.css', 'public/form_modules/**/*.css', '!public/modules/**/demo/**/*.css', '!public/modules/**/dist/**/*.css'],
|
|
|
|
serverTests: ['app/tests/**/*.js'],
|
|
clientTests: ['public/modules/**/tests/*.js', '!public/modules/**/demo/**/*.js', '!public/modules/**/dist/**/*.js', '!public/modules/**/node_modules/**/*.js']
|
|
};
|
|
|
|
watchFiles.allTests = watchFiles.serverTests.concat(watchFiles.clientTests);
|
|
|
|
// Project Configuration
|
|
grunt.initConfig({
|
|
pkg: grunt.file.readJSON('package.json'),
|
|
watch: {
|
|
serverViews: {
|
|
files: watchFiles.serverViews,
|
|
options: {
|
|
livereload: true,
|
|
spawn: false
|
|
}
|
|
},
|
|
serverJS: {
|
|
files: watchFiles.serverJS,
|
|
tasks: ['newer:jshint'],
|
|
options: {
|
|
livereload: true,
|
|
spawn: false
|
|
}
|
|
},
|
|
clientViews: {
|
|
files: watchFiles.clientViews,
|
|
tasks: ['html2js:main'],
|
|
options: {
|
|
livereload: true,
|
|
spawn: false
|
|
}
|
|
},
|
|
clientJS: {
|
|
files: watchFiles.clientJS,
|
|
tasks: ['newer:jshint'],
|
|
options: {
|
|
livereload: true,
|
|
spawn: false
|
|
}
|
|
},
|
|
clientCSS: {
|
|
files: watchFiles.clientCSS,
|
|
tasks: ['newer:csslint'],
|
|
options: {
|
|
livereload: true,
|
|
spawn: false
|
|
}
|
|
},
|
|
mochaTests: {
|
|
files: watchFiles.serverTests,
|
|
tasks: ['test:server'],
|
|
}
|
|
},
|
|
jshint: {
|
|
all: {
|
|
src: watchFiles.clientJS.concat(watchFiles.serverJS),
|
|
options: {
|
|
jshintrc: true
|
|
}
|
|
},
|
|
allTests: {
|
|
src: watchFiles.allTests,
|
|
options: {
|
|
jshintrc: true
|
|
}
|
|
}
|
|
},
|
|
csslint: {
|
|
options: {
|
|
csslintrc: '.csslintrc'
|
|
},
|
|
all: {
|
|
src: watchFiles.clientCSS
|
|
}
|
|
},
|
|
uglify: {
|
|
production: {
|
|
options: {
|
|
mangle: false,
|
|
compress: true
|
|
},
|
|
files: {
|
|
'public/dist/application.min.js': 'public/dist/application.js',
|
|
'public/dist/form-application.min.js': 'public/dist/form-application.js'
|
|
}
|
|
}
|
|
},
|
|
cssmin: {
|
|
combine: {
|
|
files: {
|
|
'public/dist/application.min.css': '<%= applicationCSSFiles %>'
|
|
}
|
|
}
|
|
},
|
|
nodemon: {
|
|
dev: {
|
|
script: 'server.js',
|
|
options: {
|
|
nodeArgs: ['--debug'],
|
|
ext: 'js,html',
|
|
watch: watchFiles.serverViews.concat(watchFiles.serverJS)
|
|
}
|
|
}
|
|
},
|
|
'node-inspector': {
|
|
custom: {
|
|
options: {
|
|
'web-port': 1337,
|
|
'web-host': 'localhost',
|
|
'debug-port': 5858,
|
|
'save-live-edit': true,
|
|
'no-preload': true,
|
|
'stack-trace-limit': 50,
|
|
'hidden': []
|
|
}
|
|
}
|
|
},
|
|
ngAnnotate: {
|
|
production: {
|
|
files: {
|
|
'public/dist/application.js': '<%= applicationJavaScriptFiles %>',
|
|
'public/dist/form-application.js': '<%= formApplicationJavaScriptFiles %>'
|
|
}
|
|
}
|
|
},
|
|
concurrent: {
|
|
default: ['nodemon', 'watch'],
|
|
debug: ['nodemon', 'watch', 'node-inspector'],
|
|
options: {
|
|
logConcurrentOutput: true,
|
|
limit: 10
|
|
}
|
|
},
|
|
env: {
|
|
test: {
|
|
NODE_ENV: 'test',
|
|
src: '.env'
|
|
},
|
|
secure: {
|
|
NODE_ENV: 'secure',
|
|
src: '/opt/deploy/.env'
|
|
},
|
|
production: {
|
|
NODE_ENV: 'production',
|
|
src: '/opt/deploy/.env'
|
|
},
|
|
dev: {
|
|
NODE_ENV: 'development',
|
|
src: '.env'
|
|
}
|
|
},
|
|
mochaTest: {
|
|
src: watchFiles.serverTests,
|
|
options: {
|
|
reporter: 'spec',
|
|
quiet: false,
|
|
require: 'server.js',
|
|
ui: 'bdd'
|
|
}
|
|
},
|
|
karma: {
|
|
unit: {
|
|
configFile: 'karma.conf.js',
|
|
singleRun: true
|
|
}
|
|
},
|
|
protractor: {
|
|
options: {
|
|
configFile: 'protractor.conf.js',
|
|
keepAlive: true,
|
|
noColor: false
|
|
},
|
|
e2e: {
|
|
options: {
|
|
args: {} // Target-specific arguments
|
|
}
|
|
}
|
|
},
|
|
mocha_istanbul: {
|
|
coverage: {
|
|
src: watchFiles.allTests, // a folder works nicely
|
|
options: {
|
|
mask: '*.test.js',
|
|
require: ['server.js']
|
|
}
|
|
},
|
|
coverageClient: {
|
|
src: watchFiles.clientTests, // specifying file patterns works as well
|
|
options: {
|
|
coverageFolder: 'coverageClient',
|
|
mask: '*.test.js',
|
|
require: ['server.js']
|
|
}
|
|
},
|
|
coverageServer: {
|
|
src: watchFiles.serverTests,
|
|
options: {
|
|
coverageFolder: 'coverageServer',
|
|
mask: '*.test.js',
|
|
require: ['server.js']
|
|
}
|
|
},
|
|
coveralls: {
|
|
src: watchFiles.allTests, // multiple folders also works
|
|
options: {
|
|
require: ['server.js'],
|
|
coverage: true, // this will make the grunt.event.on('coverage') event listener to be triggered
|
|
root: './lib', // define where the cover task should consider the root of libraries that are covered by tests
|
|
reportFormats: ['cobertura','lcovonly']
|
|
}
|
|
}
|
|
},
|
|
istanbul_check_coverage: {
|
|
default: {
|
|
options: {
|
|
coverageFolder: 'coverage*', // will check both coverage folders and merge the coverage results
|
|
check: {
|
|
lines: 80,
|
|
statements: 80
|
|
}
|
|
}
|
|
}
|
|
},
|
|
html2js: {
|
|
options: {
|
|
base: 'public',
|
|
watch: true,
|
|
module: 'NodeForm.templates',
|
|
singleModule: true,
|
|
useStrict: true,
|
|
htmlmin: {
|
|
collapseBooleanAttributes: true,
|
|
collapseWhitespace: true,
|
|
removeAttributeQuotes: true,
|
|
removeComments: true,
|
|
removeEmptyAttributes: true,
|
|
removeRedundantAttributes: true
|
|
}
|
|
},
|
|
main: {
|
|
src: ['public/modules/**/views/**.html', 'public/modules/**/views/**/*.html'],
|
|
dest: 'public/dist/populate_template_cache.js'
|
|
}
|
|
},
|
|
execute: {
|
|
target: {
|
|
src: ['./scripts/setup.js']
|
|
}
|
|
}
|
|
});
|
|
|
|
grunt.event.on('coverage', function(lcov, done){
|
|
var coveralls = require('coveralls');
|
|
console.log(lcov);
|
|
coveralls.handleInput(lcov, function(err){
|
|
if (err) {
|
|
grunt.log.error('Failed to submit lcov file to coveralls: ' + err);
|
|
return done(err);
|
|
}
|
|
grunt.verbose.ok('Successfully submitted lcov file to coveralls');
|
|
done();
|
|
});
|
|
});
|
|
|
|
// Making grunt default to force in order not to break the project.
|
|
grunt.option('force', true);
|
|
|
|
// A Task for loading the configuration object
|
|
grunt.task.registerTask('loadConfig', 'Task that loads the config into a grunt option.', function() {
|
|
var init = require('./config/init')();
|
|
var config = require('./config/config');
|
|
|
|
grunt.config.set('applicationJavaScriptFiles', config.assets.js);
|
|
grunt.config.set('formApplicationJavaScriptFiles', config.assets.form_js);
|
|
grunt.config.set('applicationCSSFiles', config.assets.css);
|
|
});
|
|
|
|
// Code coverage tasks.
|
|
grunt.registerTask('coveralls', ['env:test','mocha_istanbul:coveralls']);
|
|
grunt.registerTask('coverage', ['env:test', 'mocha_istanbul:coverage']);
|
|
grunt.registerTask('coverage:client', ['env:test', 'mocha_istanbul:coverageClient']);
|
|
grunt.registerTask('coverage:server', ['env:test', 'mocha_istanbul:coverageServer']);
|
|
|
|
// Default task(s).
|
|
grunt.registerTask('default', ['lint', 'html2js:main', 'env', 'concurrent:default']);
|
|
grunt.registerTask('dev', ['lint', 'html2js:main', 'env:dev', 'concurrent:default']);
|
|
|
|
// Debug task.
|
|
grunt.registerTask('debug', ['lint', 'html2js:main', 'concurrent:debug']);
|
|
|
|
|
|
// Secure task(s).
|
|
grunt.registerTask('secure', ['env:secure', 'lint', 'html2js:main', 'concurrent:default']);
|
|
|
|
// Lint task(s).
|
|
grunt.registerTask('lint', ['jshint', 'csslint']);
|
|
grunt.registerTask('lint:tests', ['jshint:allTests']);
|
|
|
|
// Build task(s).
|
|
grunt.registerTask('build', ['lint', 'loadConfig', 'cssmin', 'ngAnnotate', 'uglify', 'html2js:main']);
|
|
|
|
//Setup task(s).
|
|
grunt.registerTask('setup', ['execute']);
|
|
|
|
// Test task(s).
|
|
grunt.registerTask('test', ['lint:tests', 'test:server', 'test:client']);
|
|
grunt.registerTask('test:server', ['lint:tests', 'env:test', 'mochaTest']);
|
|
grunt.registerTask('test:client', ['lint:tests', 'html2js:main', 'env:test', 'karma:unit']);
|
|
};
|