romanschejbal / gassetic

Assetic replacement based on the gulp build tool

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Why extra folder?

andrewtch opened this issue · comments

files:
    style.css:
        - html/src/styles/main.less

why gassetic is creating %outputfilder%/style.css/style.css, and not just plain %outputfolder%/style.css ?

To remove the extra folder, replace this line on gassetic.coffee:
destination = path.join @getMimetypes()[type][@env].outputFolder, destinationFilenameConfigKey
To this:
destination = @getMimetypes()[type][@env].outputFolder

Thank you!