Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 537 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 537 Bytes

grunt-exists

Validates that file(s) exist.

  • Version 0.0.2 has been validated to work with grunt 0.4.x
  • Version 0.0.1 has been validated to work with grunt 0.3.x

Sample Usage:

module.exports = function (grunt) {
    // ...
    grunt.initConfig({
        // ...
        exists: {
            prod_files: [
                'target/src/app/production.js',
                'target/src/app/production.css',
            ]
        }
        // ...
    });
    // ...
};