CodeSleeve / asset-pipeline

This Laravel 4 package provides a very simple and easy to use asset pipeline. It was heavily inspired by the Rails asset pipeline. We make use of the wonderful Assetic package to help with pre-compliation!
http://www.codesleeve.com
MIT License
489 stars 53 forks source link

file listing should be distinct #84

Closed kdocki closed 10 years ago

kdocki commented 10 years ago

list of files from sprockets is not unique/distinct. This means files could be included multiple times. Issue with javascript and stylesheets files.

/**
 *= require app.js
 *= require_tree.
 */

app.js will show up twice.

kdocki commented 10 years ago

Nevermind, after a test, I see this is not the case.