0.0.4 • Published 8 years ago

grunt-keycdn v0.0.4

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

grunt-keycdn

Grunt plugin to interact with the KeyCDN API.

Usage

Purge Zone Cache

grunt.initConfig({
    keycdn: {
      purgeZone: {
        options: {
          apiKey: '{your_api_key}',
          zoneId: '{zone_id}',
          method: 'get'
        }
      },
    },
  });

Purge Selected URLs

grunt.initConfig({
    keycdn: {
      purgeURL: {
        options: {
          apiKey: '{your_api_key}',
          zoneId: '{zone_id}',
          method: 'del'
        },
        files: [
          { dest: 'demo-1.kxcdn.com/css/main.css' },
          { dest: 'demo-1.kxcdn.com/img/logo.png' }
        ],
      },
    },
  });

For more details visit https://www.keycdn.com