2014-08-13 03:01:38 +02:00
|
|
|
module.exports = function(grunt) {
|
|
|
|
|
|
|
|
// Project configuration.
|
|
|
|
grunt.initConfig({
|
|
|
|
pkg: grunt.file.readJSON('package.json'),
|
2014-09-11 09:07:09 +02:00
|
|
|
concat: {
|
|
|
|
main: {
|
|
|
|
src: [
|
|
|
|
'js/plugins/*.js',
|
2014-09-27 23:55:53 +02:00
|
|
|
'js/<%= pkg.name %>.js'
|
2014-09-11 09:07:09 +02:00
|
|
|
],
|
2014-09-27 23:55:53 +02:00
|
|
|
dest: 'dist/js/<%= pkg.name %>.js',
|
2014-09-11 09:07:09 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
uglify: {
|
|
|
|
main: {
|
2014-09-27 23:55:53 +02:00
|
|
|
src: 'dist/js/<%= pkg.name %>.js',
|
|
|
|
dest: 'dist/js/<%= pkg.name %>.min.js'
|
2014-09-11 09:07:09 +02:00
|
|
|
}
|
|
|
|
},
|
2014-09-11 08:15:19 +02:00
|
|
|
copy: {
|
|
|
|
main: {
|
2014-09-11 09:24:29 +02:00
|
|
|
src: ['*.html', 'mail/**', 'img/**', 'less/**'],
|
2014-09-11 08:15:19 +02:00
|
|
|
dest: 'dist/',
|
|
|
|
},
|
2014-08-13 03:01:38 +02:00
|
|
|
jquery: {
|
2014-09-11 08:29:40 +02:00
|
|
|
files: [{
|
|
|
|
expand: true,
|
|
|
|
cwd: 'bower_components/jquery/dist/',
|
|
|
|
src: [
|
|
|
|
'jquery.min.js',
|
|
|
|
'jquery.js',
|
|
|
|
],
|
|
|
|
dest: 'dist/js/'
|
|
|
|
}, ]
|
2014-08-13 03:01:38 +02:00
|
|
|
},
|
|
|
|
bootstrap: {
|
2014-09-11 08:29:40 +02:00
|
|
|
files: [{
|
|
|
|
expand: true,
|
|
|
|
cwd: 'bower_components/bootstrap/dist/',
|
|
|
|
src: [
|
|
|
|
'js/bootstrap.js',
|
|
|
|
'js/bootstrap.min.js',
|
|
|
|
'css/bootstrap.css',
|
|
|
|
'css/bootstrap.min.css'
|
|
|
|
],
|
|
|
|
dest: 'dist/'
|
|
|
|
}, ]
|
2014-08-13 03:01:38 +02:00
|
|
|
},
|
2014-09-11 08:15:19 +02:00
|
|
|
glyphicons: {
|
2014-09-11 08:29:40 +02:00
|
|
|
files: [{
|
|
|
|
expand: true,
|
|
|
|
cwd: 'bower_components/bootstrap/',
|
|
|
|
src: [
|
|
|
|
'fonts/glyphicons-halflings-regular.eot',
|
|
|
|
'fonts/glyphicons-halflings-regular.svg',
|
|
|
|
'fonts/glyphicons-halflings-regular.ttf',
|
|
|
|
'fonts/glyphicons-halflings-regular.woff',
|
|
|
|
],
|
|
|
|
dest: 'dist/'
|
|
|
|
}, ]
|
2014-08-13 03:01:38 +02:00
|
|
|
},
|
|
|
|
},
|
2014-08-13 04:35:56 +02:00
|
|
|
less: {
|
2014-09-11 08:29:40 +02:00
|
|
|
expanded: {
|
2014-08-13 04:35:56 +02:00
|
|
|
options: {
|
|
|
|
paths: ["css"]
|
|
|
|
},
|
|
|
|
files: {
|
2014-09-27 23:55:53 +02:00
|
|
|
"dist/css/<%= pkg.name %>.css": "less/<%= pkg.name %>.less"
|
2014-08-13 04:35:56 +02:00
|
|
|
}
|
|
|
|
},
|
2014-09-11 08:29:40 +02:00
|
|
|
minified: {
|
2014-08-13 04:35:56 +02:00
|
|
|
options: {
|
|
|
|
paths: ["css"],
|
|
|
|
cleancss: true
|
|
|
|
},
|
|
|
|
files: {
|
2014-09-27 23:55:53 +02:00
|
|
|
"dist/css/<%= pkg.name %>.min.css": "less/<%= pkg.name %>.less"
|
2014-08-13 04:35:56 +02:00
|
|
|
}
|
|
|
|
}
|
2014-08-13 05:15:51 +02:00
|
|
|
},
|
2014-09-11 08:29:40 +02:00
|
|
|
banner: '/*!\n' +
|
2014-09-27 23:55:53 +02:00
|
|
|
' * <%= pkg.title %> v<%= pkg.version %> (<%= pkg.homepage %>)\n' +
|
2014-09-11 08:29:40 +02:00
|
|
|
' * Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
|
|
|
|
' * Licensed under <%= pkg.license.type %> (<%= pkg.license.url %>)\n' +
|
|
|
|
' */\n',
|
|
|
|
usebanner: {
|
|
|
|
dist: {
|
2014-08-15 08:45:15 +02:00
|
|
|
options: {
|
2014-09-11 08:29:40 +02:00
|
|
|
position: 'top',
|
|
|
|
banner: '<%= banner %>'
|
2014-08-15 08:45:15 +02:00
|
|
|
},
|
2014-09-11 08:29:40 +02:00
|
|
|
files: {
|
2014-09-27 23:55:53 +02:00
|
|
|
src: ['dist/css/<%= pkg.name %>.css', 'dist/css/<%= pkg.name %>.min.css', 'dist/js/<%= pkg.name %>.js', 'dist/js/<%= pkg.name %>.min.js']
|
2014-09-11 08:29:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
2014-09-11 09:07:09 +02:00
|
|
|
scripts: {
|
|
|
|
files: ['js/*.js', 'js/**/*.js'],
|
|
|
|
tasks: ['concat', 'uglify'],
|
2014-08-15 08:45:15 +02:00
|
|
|
options: {
|
|
|
|
spawn: false,
|
2014-09-11 09:07:09 +02:00
|
|
|
},
|
2014-08-15 08:45:15 +02:00
|
|
|
},
|
2014-09-11 08:29:40 +02:00
|
|
|
copy: {
|
2014-09-11 09:24:29 +02:00
|
|
|
files: ['*.html', 'mail/**', 'img/**', 'less/**'],
|
2014-08-15 09:12:52 +02:00
|
|
|
tasks: ['copy'],
|
|
|
|
options: {
|
|
|
|
spawn: false,
|
|
|
|
}
|
2014-08-15 08:45:15 +02:00
|
|
|
},
|
2014-09-11 09:07:09 +02:00
|
|
|
less: {
|
|
|
|
files: ['less/*.less'],
|
|
|
|
tasks: ['less'],
|
|
|
|
options: {
|
|
|
|
spawn: false,
|
|
|
|
}
|
|
|
|
},
|
2014-09-17 07:47:09 +02:00
|
|
|
},
|
|
|
|
bower: {
|
|
|
|
install: {
|
|
|
|
options: {
|
|
|
|
targetDir: './bower_components',
|
|
|
|
}
|
|
|
|
}
|
2014-08-13 04:35:56 +02:00
|
|
|
}
|
2014-08-13 03:01:38 +02:00
|
|
|
});
|
|
|
|
|
2014-08-14 20:52:45 +02:00
|
|
|
// Load the plugins.
|
2014-09-11 09:07:09 +02:00
|
|
|
grunt.loadNpmTasks('grunt-contrib-concat');
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-uglify');
|
2014-08-13 03:01:38 +02:00
|
|
|
grunt.loadNpmTasks('grunt-contrib-copy');
|
2014-08-13 04:35:56 +02:00
|
|
|
grunt.loadNpmTasks('grunt-contrib-less');
|
2014-09-11 08:29:40 +02:00
|
|
|
grunt.loadNpmTasks('grunt-banner');
|
2014-08-15 08:45:15 +02:00
|
|
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
2014-09-17 07:47:09 +02:00
|
|
|
grunt.loadNpmTasks('grunt-bower-task');
|
2014-08-13 03:01:38 +02:00
|
|
|
|
|
|
|
// Default task(s).
|
2014-09-17 07:47:09 +02:00
|
|
|
grunt.registerTask('default', ['concat', 'uglify', 'copy', 'less', 'usebanner', 'bower']);
|
|
|
|
grunt.registerTask('build', ['concat', 'uglify', 'copy', 'less', 'usebanner']);
|
2014-08-13 03:01:38 +02:00
|
|
|
|
|
|
|
};
|