Darrell
Darrell
Odd, so I stepped through the code and this time the file its created has contents.. I hope this isn't a race condition scenario or something ><
Oh crikey, i think this might have something to do with the fact I am using the same bundle name for my css and js bundles...
So this method in the `SmidgeController`: ``` public async Task Bundle( [FromServices]BundleModel bundle) { var found = _bundleManager.GetFiles(bundle.FileKey, Request); if (found == null || !found.Any()) { //TODO: Throw an exception,...
Haha.. yep Smidge doesn't work if you use the same name for js and css bundle. It doesn't throw any obvious exception either that I can tell. I've changed my...
Yeah.. I think perhaps the `Bundles` class, wherever it calls `_bundles.TryAdd(bundleName, )` - I assume that the TryAdd is actually returning false where that bundle name has already been added,...
No probs, no rush just a nicety from my perspective :)
Yeah JsMin would produce a sourcemap for the individual file, which maps back from the minified file, to the original (unminified) source file. I can't remember which order smidge processes...
Have started work on a c# source map library, as I looked at a few but they weren't up to scratch. Once this is complete I'll have a go at...
Made some good progress today on a c# source map library: I have a test which shows how to [build a very simple source map](https://github.com/dazinator/DotNet.SourceMaps/blob/master/src/DotNet.SourceMaps.Tests/SourceMapBuilderTests.cs#L22) Next step is to take...
Ohh wow.. going through JsMin now.. I'd like to congratulate Douglas Crockford on some of the most unreadable code ever.. `theA` ? I am going to refactor it to make...