2020-05-19 11:43:42 +03:00

119 lines
2.6 KiB
JavaScript

/*global module:false*/
module.exports = function(grunt) {
grunt.initConfig({
// Metadata.
pkg: grunt.file.readJSON('package.json'),
banner: '/*! \n * <%= pkg.title || pkg.name %> v<%= pkg.version %>\n' +
' * <%= pkg.homepage %>\n' +
' * Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
' * License: <%= pkg.license %>\n' +
' */\n',
// Task configuration.
uglify: {
options: {
banner: '<%= banner %>',
report: 'gzip'
},
build: {
src: ['build/hotkeys.js', 'bower_components/mousetrap/mousetrap.js'],
dest: 'build/hotkeys.min.js'
}
},
ngAnnotate: {
options: {
singleQuotes: true,
},
source: {
expand: true,
cwd: 'src',
src: ['*.js'],
dest: 'build'
}
},
cssmin: {
options: {
banner: '<%= banner %>',
report: 'gzip'
},
minify: {
src: 'src/hotkeys.css',
dest: 'build/hotkeys.min.css'
}
},
karma: {
unit: {
configFile: 'test/karma.conf.js',
singleRun: true,
coverageReporter: {
type: 'text',
dir: 'coverage/'
}
},
watch: {
configFile: 'test/karma.conf.js',
singleRun: false,
reporters: ['progress'] // Don't display coverage
}
},
jshint: {
jshintrc: '.jshintrc',
gruntfile: {
src: 'Gruntfile.js'
},
src: {
src: ['src/*.js']
}
},
concat: {
build: {
options: {
banner: '<%= banner %>'
},
files: {
'build/hotkeys.css': 'src/hotkeys.css',
'build/hotkeys.js': ['build/hotkeys.js', 'bower_components/mousetrap/mousetrap.js'],
}
}
},
watch: {
scripts: {
files: ['src/*.js'],
tasks: ['uglify', 'concat:build'],
options: {
spawn: false,
},
},
css: {
files: ['src/*.css'],
tasks: ['cssmin', 'concat:build'],
options: {
spawn: false,
},
}
},
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-ng-annotate');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-karma');
grunt.registerTask('default', ['jshint', 'karma:unit', 'ngAnnotate', 'uglify', 'cssmin', 'concat:build']);
grunt.registerTask('test', ['karma:watch']);
grunt.registerTask('build', ['default']);
};