chyingp / grunt-inline

Brings externally referenced resources, such as js, css and images, into a single file.
MIT License
87 stars 55 forks source link

Added options:maxSize support, grunt log #59

Open tmihalski opened 9 years ago

tmihalski commented 9 years ago

adding in Grunt log, adding in support for options: maxSize. Grunt command would look like:

grunt.initConfig({ inline: { dist: { options: { maxSize: 65536 // default to 64KB }, src: 'src/index.html', dest: 'dist/index.html' } } });