0.1.2 • Published 10 years ago

grunt-simple-cdnify v0.1.2

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

grunt-simple-cdnify

Grunt task for cdnify.

Sample configuration:

module.exports = function (grunt) {
  grunt.initConfig({
    cdnify: {
      dev: {
        files: [{
          expand: true,
          cwd: 'public',
          src: ['**/*.html'],
          dest: 'public',
          ext: '.html'
        }],
        options: {
          useLocal: true
        }
      },
      options: {
        incompatible: ['glob'],
        useLocal: false
      }
    }
  });

  grunt.loadNpmTasks('grunt-simple-cdnify');
};

See cdnify documentation for more information.

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago