mirror of
https://github.com/ansible/awx.git
synced 2024-11-02 01:21:21 +03:00
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
module.exports = function(grunt) {
|
|
|
|
grunt.initConfig({
|
|
|
|
pkg: grunt.file.readJSON('./package.json'),
|
|
|
|
jshint: {
|
|
options: {
|
|
jshintrc: '.jshintrc'
|
|
},
|
|
uses_defaults: ['awx/ui/static/js/*','awx/ui/static/lib/ansible/*', '!awx/ui/static/js/awx.min.js']
|
|
},
|
|
|
|
uglify: {
|
|
options: {
|
|
banner: '/*! <%= pkg.name %> - v<%= pkg.version %> - ' +
|
|
'<%= grunt.template.today("yyyy-mm-dd") %> */'
|
|
},
|
|
my_target: {
|
|
files: {
|
|
'awx/ui/static/js/awx.min.js': ['awx/ui/static/js/**/*.js', 'awx/ui/static/lib/ansible/*.js',
|
|
'!awx/ui/static/js/awx.min.js', '!awx/ui/static/js/config.js']
|
|
}
|
|
}
|
|
},
|
|
|
|
less: {
|
|
production: {
|
|
options: {
|
|
cleancss: true
|
|
},
|
|
files: {
|
|
"awx/ui/static/css/awx.min.css": "awx/ui/static/less/ansible-ui.less"
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
|
grunt.loadNpmTasks('grunt-contrib-uglify');
|
|
grunt.loadNpmTasks('grunt-contrib-less');
|
|
|
|
grunt.registerTask('default', ['jshint', 'uglify', 'less']);
|
|
}
|