SquishIt icon indicating copy to clipboard operation
SquishIt copied to clipboard

Lets you *easily* bundle some css and javascript! Check out the Google group if you have questions!

Results 48 SquishIt issues
Sort by recently updated
recently updated
newest added

Hi, Are there any plans for releasing a .NET Core version of this awesome library?

I'm getting this exception when proccessing the following javascript function ``` arrayGroupBy: function(xs, key) { return xs.reduce(function(rv, x) { var v = key instanceof Function ? key(x) : x[key]; //...

The following code crashes in visual studio 2017 .net 4.6.1: var cssBundle = new SquishIt.Framework.CSS.CSSBundle(); Error: Object reference not set to an instance of an object. at SquishIt.Framework.CSS.CSSBundle..ctor() in c:\Users\alexu\git\SquishIt\SquishIt.Framework\CSS\CSSBundle.cs:line...

Hi, Just noticed that v1 was released on nuget (yay for the project). Are there any release notes for this version and/or any migration path for folks who are upgrading...

We're using version 0.9.8.0 of SquishIt.Framework. Starting about 2017-03-07, SquishIt constantly recreates the same files. The files that make up the bundle haven't changed. It seems like they are never...

I can't seem to find an example whether it is possible to add to a bundle in different views across the application then render the bundle in master/layout view. I...

HTTP/2 is coming to IIS on Windows Server too (soon) and a feature that will immediately become useful if not essential is being able to render referenced assets not as...

``` public string RenderCachedRawContent(string bundleName) { var cacheKey = CachePrefix + "_raw_" + bundleName; var output = rawContentCache.GetContent(cacheKey); if (output == null) { bundleState = rawContentBundleStateCache[cacheKey]; if (bundleState == null)...

We minify our css files like this: ``` var path = "/Themes/One/Styles/one.css"; var name = "one"; @MvcHtmlString.Create(Bundle.Css().Add(path).Render(string.Format("~/bdls/{0}_#.css", name)) ``` Unfortunately, for some of our files we get the output ``...