From 515c898a8e0420dfcbee7d983c82094f06e08134 Mon Sep 17 00:00:00 2001 From: Victor Häggqvist Date: Sat, 16 Jan 2016 22:41:39 +0100 Subject: --git-dir=../.git 9e7b91f --- Gruntfile.js | 89 ------------------------------------------------------------ 1 file changed, 89 deletions(-) delete mode 100644 Gruntfile.js (limited to 'Gruntfile.js') diff --git a/Gruntfile.js b/Gruntfile.js deleted file mode 100644 index 6fd1978..0000000 --- a/Gruntfile.js +++ /dev/null @@ -1,89 +0,0 @@ -/*global module:false*/ -module.exports = function(grunt) { - - // Project configuration. - grunt.initConfig({ - // Metadata. - pkg: grunt.file.readJSON('package.json'), - banner: '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - ' + - '<%= grunt.template.today("yyyy-mm-dd") %>\n' + - '<%= pkg.homepage ? "* " + pkg.homepage + "\\n" : "" %>' + - '* Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author.name %>;' + - ' Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %> */\n', - // Task configuration. - watch: { - main: { - options: { - reload: true - }, - files: ['index.php', 'sass/demo.scss'], - tasks: ['sass'] - } - }, - responsive_images: { - full: { - options: { - engine: 'im', - sizes: [{ - name: 'web', - width: 800 - }, - { - name: 'thumb', - height: 100 - }] - }, - files: [{ - expand: true, - flatten: true, - src: ['images/original/*.jpg'], - cwd: './', - custom_dest: 'images/{%= name %}/' - }] - } - }, - sass: { - main: { - options: { - style: 'compressed' - }, - files: { - 'demo.css': 'sass/demo.scss' - } - } - }, - copy: { - lightbox_js: { - expand: true, - flatten: true, - src: ['bower_components/touch-imagelightbox/dist/touch-imagelightbox.min.js'], - dest: './', - filter: 'isFile' - }, - lightbox_css: { - expand: true, - flatten: true, - src: ['bower_components/touch-imagelightbox/dist/touch-imagelightbox.min.css'], - dest: './', - filter: 'isFile' - } - }, - command : { - build: { - type: 'shell', - cmd: './build.sh' - } - } - }); - - // These plugins provide necessary tasks. - grunt.loadNpmTasks('grunt-contrib-sass'); - grunt.loadNpmTasks('grunt-contrib-copy'); - grunt.loadNpmTasks('grunt-responsive-images'); - grunt.loadNpmTasks('grunt-contrib-commands'); - grunt.loadNpmTasks('grunt-contrib-watch'); - - // Default task. - grunt.registerTask('default', ['responsive_images', 'sass', 'copy', 'command']); - -}; -- cgit v1.2.3