alanshaw / grunt-include-replace

Grunt task to include files and replace variables. Allows for parameterised includes.
MIT License
200 stars 45 forks source link

Output file missing . in name #8

Closed RyanHirsch closed 11 years ago

RyanHirsch commented 11 years ago

I am using the following config:

"grunt-include-replace": "~0.3.0"
includereplace: {
  dist: {
    files: {
      'dist/': '*.html'
    }
  }
}

Log shows:

Running "includereplace:dist" (includereplace) task
>> Processed in.html

Done, without errors.

However, the resulting file is

dist/inhtml

The '.' is omitted

alanshaw commented 11 years ago

Thanks. Fixed and released to NPM as grunt-include-replace@0.3.1

RyanHirsch commented 11 years ago

Awesome, its working as expected here, thank you so much!