angularjs-captcha
Version:
BotDetect CAPTCHA AngularJS Module (JavaScript: Angular 1.x)
26 lines (22 loc) • 561 B
JavaScript
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
options: {
sourceMap: true,
sourceMapIncludeSources: true
},
build: {
files: [{
src: 'src/angularjs-captcha.js',
dest: 'dist/angularjs-captcha.min.js'
}]
}
}
});
// Load the plugin that provides the "uglify" task.
grunt.loadNpmTasks('grunt-contrib-uglify');
// Default task(s).
grunt.registerTask('default', ['uglify']);
};