surt
Version:
Smart suggest widget
85 lines (82 loc) • 2.82 kB
JavaScript
module.exports = function(grunt) {
grunt.initConfig({
'pkg': grunt.file.readJSON('package.json'),
jshint: {
appjs: {
options: {
"indent": 4,
"node": true,
"browser": true,
"jquery": true,
"eqnull": true,
"eqeqeq": false,
"devel": false,
"boss": true,
"trailing": true,
"loopfunc": true,
"-W041": true,
"-W015": true
},
src: ['src/*.js', 'demo/main.js', 'test/*.js']
}
},
concat: {
def: {
src: [
'src/ui.js',
'src/parser.js',
'src/cursor.js'
],
dest: '<%= pkg.name %>.js'
}
},
'uglify': {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("dd-mm-yyyy") %> */\n'
},
def: {
files: {
'<%= pkg.name %>.min.js': ['<%= pkg.name %>.js'],
'demo/<%= pkg.name %>.js': ['<%= pkg.name %>.js']
}
}
},
'closure-compiler': {
frontend: {
closurePath: '/usr/local/Cellar/closure-compiler/20130823/libexec',
js: '<%= pkg.name %>.js',
jsOutputFile: '<%= pkg.name %>.min.js',
maxBuffer: 500,
options: {
compilation_level: 'SIMPLE_OPTIMIZATIONS', // 'SIMPLE_OPTIMIZATIONS', // ADVANCED_OPTIMIZATIONS
language_in: 'ECMASCRIPT5_STRICT'
},
noreport: true
}
},
'mocha-phantomjs': {
options: {
view: '1024x768'
},
all: ['test/*.html']
},
'mochacli': {
options: {
reporter: 'dot'
},
all: ['src/*.spec.js']
}
});
grunt.loadTasks('tasks'); // Для grunt-mocha-phantomjs
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-closure-compiler');
grunt.loadNpmTasks('grunt-mocha-cli');
grunt.registerTask('default', ['concat:def', 'uglify:def']);
grunt.registerTask('dom', ['mocha-phantomjs']);
grunt.registerTask('test', ['mochacli', 'mocha-phantomjs']);
grunt.registerTask('unit', ['mochacli']);
grunt.registerTask('t', ['jshint', 'mochacli', 'mocha-phantomjs']);
grunt.registerTask('js', ['jshint']);
};