Personal portfolio website for Regina Carvalho. Built with Famous.js library.

Gruntfile.js 2.2KB

    module.exports = function(grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), jshint: { files: ['Gruntfile.js', 'src/**/*.js', 'test/**/*.js'], options: { globals: { jQuery: true } } }, watch: { files: ['<%= jshint.files %>'], tasks: ['jshint'] }, concat: { options: { // define a string to put between each file in the concatenated output separator: ';' }, dist: { // the files to concatenate src: ['src/**/*.js'], // the location of the resulting JS file dest: 'dist/<%= pkg.name %>.js' } }, uglify: { options: { // the banner is inserted at the top of the output banner: '/*! <%= pkg.name %> <%= grunt.template.today("dd-mm-yyyy") %> */\n' }, dist: { files: { 'dist/<%= pkg.name %>.min.js': ['<%= concat.dist.dest %>'] } } }, qunit: { files: ['test/**/*.html'] }, wiredep: { task: { // Point to the files that should be updated when // you run `grunt wiredep` src: [ 'app/*.html', 'app/views/**/*.html', // .html support... 'app/views/**/*.jade', // .jade support... 'app/styles/main.scss', // .scss & .sass support... 'app/config.yml' // and .yml & .yaml support out of the box! ], options: { // See wiredep's configuration documentation for the options // you may pass: // https://github.com/taptapship/wiredep#configuration } } }, serve: { options: { port: 8000, } } }); grunt.loadNpmTasks('grunt-contrib-uglify'); grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.loadNpmTasks('grunt-contrib-qunit'); grunt.loadNpmTasks('grunt-contrib-watch'); grunt.loadNpmTasks('grunt-contrib-concat'); grunt.loadNpmTasks('grunt-wiredep'); grunt.loadNpmTasks('grunt-serve'); // this would be run by typing "grunt test" on the command line grunt.registerTask('test', ['jshint', 'qunit']); // the default task can be run just by typing "grunt" on the command line grunt.registerTask('default', ['jshint', 'concat', 'uglify', 'wiredep']); };