nunta/Gruntfile.js

109 lines
3.2 KiB
JavaScript
Raw Normal View History

module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
copy: {
main: {
src: ['*.html', 'mail/**', 'js/**', 'img/**'],
dest: 'dist/',
},
jquery: {
files: [
{
expand: true,
cwd: 'bower_components/jquery/dist/',
src: [
'jquery.min.js',
'jquery.js',
],
dest: 'dist/js/'
},
]
},
bootstrap: {
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/'
},
]
},
glyphicons: {
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 04:35:56 +02:00
less: {
development: {
options: {
paths: ["css"]
},
files: {
2014-08-15 08:45:15 +02:00
"dist/css/<%= pkg.name %>.css": "less/<%= pkg.name %>.less"
2014-08-13 04:35:56 +02:00
}
},
production: {
options: {
paths: ["css"],
cleancss: true
},
files: {
2014-08-15 08:45:15 +02:00
"dist/css/<%= pkg.name %>.css": "less/<%= pkg.name %>.less"
2014-08-13 04:35:56 +02:00
}
}
2014-08-13 05:15:51 +02:00
},
2014-08-15 08:45:15 +02:00
watch: {
scripts: {
files: ['js/**'],
2014-08-15 08:45:15 +02:00
tasks: ['concat'],
options: {
spawn: false,
},
},
css: {
files: ['less/*.less'],
tasks: ['less'],
options: {
spawn: false,
}
},
html: {
2014-08-15 09:12:52 +02:00
files: ['*.html', 'mail/**'],
tasks: ['copy'],
options: {
spawn: false,
}
2014-08-15 08:45:15 +02:00
},
2014-08-13 04:35:56 +02:00
}
});
2014-08-14 20:52:45 +02:00
// Load the plugins.
grunt.loadNpmTasks('grunt-contrib-copy');
2014-08-13 04:35:56 +02:00
grunt.loadNpmTasks('grunt-contrib-less');
2014-08-15 08:45:15 +02:00
grunt.loadNpmTasks('grunt-contrib-watch');
// Default task(s).
grunt.registerTask('default', ['copy', 'less']);
grunt.registerTask('less-compile', ['less']);
};