Questions tagged [bundletransformer]

Bundle Transformer - a modular extension for System.Web.Optimization (also known as the Microsoft ASP.NET Web Optimization Framework)

Bundle Transformer - a modular extension for System.Web.Optimization (also known as the Microsoft ASP.NET Web Optimization Framework).

42 questions
7
votes
2 answers

BundleTransformer for less complaining "Could not find a factory, that creates an instance of the JavaScript engine"

If you upgrade from version 1 to version 2 of BundleTransformer you may get this message: Could not find a factory, that creates an instance of the JavaScript engine with name MsieJsEngine. Like me, you may not even have realized you've upgraded…
Simon_Weaver
  • 140,023
  • 84
  • 646
  • 689
6
votes
1 answer

Are there any BundleTransformer JS minifiers that support ES6?

Are there any JS minifiers for BundleTransformer that support EcmaScript 6? I have tried installing: BundleTransformer.Closure BundleTransformer.YUI BundleTransformer.UglifyJs But neither seem to handle the string template syntax of ES6, such…
6
votes
2 answers

What is the proper use of IItemTransform for correcting paths in CSS Bundling with ASP.NET Web Optimization and BundleTransformer?

I'm presently working on a project that uses the ASP.NET Web Optimization library (v 1.1.0-Beta1) in conjunction with the Bundle Transformer extension (v 1.7.3-Beta1 for core, 1.7.0-Beta1 for LESS) which is used to convert LESS into CSS. Based on…
5
votes
2 answers

Stop Bundle Transformer converting relative paths in LESS

I am using Bundle Transformer for LESS compilation in an MVC5 project. My LESS bundle comprises a single main.less file which imports other files located in subfolders. Some of files contain references to image files like so - this is in the file…
Blisco
  • 601
  • 6
  • 14
5
votes
2 answers

How to remove comments with BundleTransformer YuiJsMinifier

I am using BundleTransformer to minify css and js resources
4
votes
0 answers

BundleTransformer.Less isn't processing .less files if variables are out of order

In the process of updating my nuget packages for BundleTransformer.Less from 1.9.20 to 1.9.143 my application's styles no longer appeared correctly. I tracked the issue to less not compiling a file because of the order of variable declaration and…
solipsicle
  • 864
  • 1
  • 9
  • 19
4
votes
2 answers

Running Autoprefixer with BundleTransformer / LESS in Debug mode

So I currently use BundleTransformer, LESS and I'm trying to add the Autoprefixer post processor. This plugin automatically takes css like transform: scale(1.5) and converts it to -webkit-transform and -moz-transform. If I am in release mode or have…
Simon_Weaver
  • 140,023
  • 84
  • 646
  • 689
4
votes
1 answer

Visual Studio Browser Link + Chrome Developer Tools

My Visual Studio 2013 app uses LESS, which is bundled using BundleTransformer (http://bundletransformer.codeplex.com). LESS files are imported across the entire app into a single app.less. This app.less file is then bundled. // Bundles using…
3
votes
2 answers

ASP MVC Less file gives: Exception has been thrown by the target of an invocation

I have a simple asp.net mvc 4 site that uses less files. When i run it on my local pc it works fine, but when i publish it to the server I get te following error: During the output text content of processed asset an unknown error has occurred. See…
Martijn
  • 45
  • 9
3
votes
1 answer

Javascript bundle obfuscation and Bundletransformer

I was trying to obfuscate the output of our JavaScript bundles on the fly and came across the bundletransformer (a bundling extension that uses YUI Compressor), but had no success implementing it! So far by reading the provided documentation I've…
3
votes
1 answer

Bundle Transformer for LESS and use of @import

I am using version 1.7.27 of the Bundle Transformer: LESS package here: http://www.nuget.org/packages/BundleTransformer.Less/1.7.27 I am then attempting to do the below in an MVC4 project's BundleConfig.cs file in App_Start. public static void…
Pricey
  • 5,799
  • 12
  • 60
  • 84
2
votes
1 answer

Disabling JS/CSS bundling if debug=true in Web.config

I am using BundleTransformer to bundle and minify JS/CSS in a legacy ASP.NET WebForms app. However, I'd like to disable bundling if in Web.config. Current Behavior: If debug=true, resources are still bundled together, but…
JoshG
  • 6,472
  • 2
  • 38
  • 61
2
votes
1 answer

BundleTransformer LibSass Could not be found error

I want to use BundleTransformer. I've followed all the steps stated in the docs, but still don't work. I've installed: BundleTransformer.SassAndScss BundleTransformer.Autoprefixer LisSassHost…
gabaros
  • 743
  • 1
  • 6
  • 24
2
votes
2 answers

ASP.NET Scss bundle transformations really slow

I used to use less, whiched using V8 to render the style sheets, but now I am using scss, and it is using IronRuby to compile the style sheets. With that said, my startup time in my application is SLOWW! With the debugger, I see where the pause is…
Paul Knopf
  • 9,568
  • 23
  • 77
  • 142
2
votes
1 answer

Bundling for Multi-tenant ASP MVC Application

I am developing a multi-tenant application with ASP MVC. The tenant is identified by subdomain. I am using System.Web.Optimization for bundling and minification and BundleTransformer.Less. The UI can be themed by applying a specific set of LESS…
Hernan
  • 493
  • 4
  • 23
1
2 3