knapsack
knapsack copied to clipboard
Project moved to https://github.com/andrewdavey/cassette
JavaScript libraries such as jQuery UI require CSS to render correctly. So perhaps allow a JS file to reference a CSS file. Then the page only needs to reference the...
I keep getting a Resource not found error for my CSS files I'm including one from my Site.Master in my ASP.NET MVC files. I have this line: ``` ``` the...
Hi, Any chance of supporting Sass files as well? Perhaps the "SassAndCoffee" nuget package (http://nuget.org/List/Packages/SassAndCoffee) can be used for this?
Knapsack adds `Html.RenderScripts()` and `Html.RenderStylesheetLinks()`. These are returning IHtmlString and used like `@Html.RenderScripts()` This differs from the MVC helpers, such as `@Html.Partial("name")` vs `@{ Html.RenderPartial("name"); }` Should Knapsack's API be...
Allow external references, such as: `Html.ReferenceScript("http://platform.twitter.com/widgets.js");` Naive implementation can just put them after all internal scripts. A better implementation will allow dependencies to be taken on the external script, meaning...
I wrote a lot of unit tests for Knapsack on the train without access to Moq, so there are many hand-rolled mock objects in there! Let's refactor the code to...
When using [KnockoutJS](http://knockoutjs.com/), it's common to have a lot of HTML templates. I find these easier to maintain as individual files. Let's find a way to make Knapsack package the...
In my index.cshtml, I have the following ``` @{ ViewBag.Title = "File Manager"; Html.AddScriptReference("Content/js/app.files.js"); } ``` and at the top of app.files.js, I have the following ``` /// /// ///...