Andrew Davey
Andrew Davey
I've been doing some work integrating Cassette and RequireJS in this project: https://github.com/andrewdavey/reference-application/tree/master/App It extends Cassette to generate AMD modules from bundles. There's a fair amount of code (specifically https://github.com/andrewdavey/reference-application/tree/master/App/Infrastructure/Amd...
Yes, the sample app wraps a bare application scripts in `define` calls. It parses the `/// ` comments to generate a modules dependencies. It also knows what each module exports...
Yes, but I've been busy with work recently. The master branch does contain the Cassette.RequireJS project, if you want to have a play with it. It's very much a work...
Sorry, this never really made it past the experimental phase.
I think having double parenthesis is invalid CSS syntax http://www.w3.org/TR/CSS21/syndata.html#uri Cassette could be enhance to throw an better exception, providing the file and line number of the error. There is...
I'm not sure I understand. What error are you getting?
Cassette doesn't work with ASP.NET's "virtual files". It only looks at the physical file system. In the past, when wanting to share some common bundles between multiple sites, I've created...
For anyone else seeing this, a potential work-around to try is disabling Cassette's HTML rewriting: ``` ```
Many thanks for this (and all the twitter feedback too!) I may refactor it and the current js html templating code into a single generalised bundle pipeline. The specific transformations...
I'm working on this now. I've got the strategy pattern in place. Now working on the configuration. I'm leaning towards using a global configuration, instead of requiring a per-bundle customization....