Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • 0.1.5
  • 0.1.4
  • 0.1.3
  • 0.1.2
  • v0.1.1
6 results

Gruntfile.js

Blame
  • Gruntfile.js 347 B
    /*
     * WP CDN Rewrite
     * https://github.com/voceconnect/cdn-rewrite
     */
    
    'use strict';
    
    module.exports = function(grunt) {
    
      // Project configuration.
      grunt.initConfig({
        "build": {
          "production": ["composer:install:no-dev:optimize-autoloader:prefer-dist"],
        }
      });
    
      //load the tasks
      grunt.loadNpmTasks('grunt-voce-plugins');
    
    };