File tree Expand file tree Collapse file tree 11 files changed +19
-12
lines changed
samples/BundleTransformer.Sample.AspNet45.Mvc4
BundleTransformer.Autoprefixer
BundleTransformer.ConfigurationIntelliSense
BundleTransformer.NUglify
test/BundleTransformer.Tests Expand file tree Collapse file tree 11 files changed +19
-12
lines changed Original file line number Diff line number Diff line change 1
1
Change log
2
2
==========
3
3
4
+ ## v1.12.24 - November 13, 2020
5
+ * In BundleTransformer.ConfigurationIntelliSense updated definitions for configuration settings of NUglify minifiers
6
+ * In BundleTransformer.Autoprefixer added support of the Autoprefixer version 10.0.2.0
7
+ * In BundleTransformer.NUglify:
8
+ * Added support of the NUglify version 1.10.0
9
+ * In configuration settings of minifiers was added one new property - ` IndentType ` (default ` Space ` )
10
+
4
11
## v1.12.23 - November 2, 2020
5
12
* In BundleTransformer.TypeScript added support of the TypeScript version 4.0.5
6
13
* In BundleTransformer.Autoprefixer added support of the Autoprefixer version 10.0.1.1
Original file line number Diff line number Diff line change 13
13
[ assembly: ComVisible ( false ) ]
14
14
[ assembly: Guid ( "d858d771-b511-4517-bc9a-6feb6d0c4c3e" ) ]
15
15
16
- [ assembly: AssemblyVersion ( "1.12.23 .0" ) ]
17
- [ assembly: AssemblyFileVersion ( "1.12.23 .0" ) ]
16
+ [ assembly: AssemblyVersion ( "1.12.24 .0" ) ]
17
+ [ assembly: AssemblyFileVersion ( "1.12.24 .0" ) ]
Original file line number Diff line number Diff line change 243
243
<css allowEmbeddedAspNetBlocks =" false" blocksStartOnSameLine =" NewLine"
244
244
ignoreAllErrors =" false" ignoreErrorList =" "
245
245
indentSize =" 4" indentType =" Space"
246
- lineBreakThreshold =" 2147482647" outputMode =" MultipleLines "
246
+ lineBreakThreshold =" 2147482647" outputMode =" SingleLine "
247
247
preprocessorDefineList =" " termSemicolons =" false"
248
248
colorNames =" Hex" commentMode =" Important" decodeEscapes =" true"
249
249
fixIE8Fonts =" true" minifyExpressions =" true"
250
250
removeEmptyBlocks =" true" severity =" 0" />
251
251
<js allowEmbeddedAspNetBlocks =" false" blocksStartOnSameLine =" NewLine"
252
252
ignoreAllErrors =" false" ignoreErrorList =" "
253
253
indentSize =" 4" indentType =" Space"
254
- lineBreakThreshold =" 2147482647" outputMode =" MultipleLines "
254
+ lineBreakThreshold =" 2147482647" outputMode =" SingleLine "
255
255
preprocessorDefineList =" " termSemicolons =" false"
256
256
alwaysEscapeNonAscii =" false" amdSupport =" false"
257
257
collapseToLiteral =" true" constStatementsMozilla =" false"
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<Product >Bundle Transformer: Autoprefixer</Product >
5
- <VersionPrefix >1.12.23 </VersionPrefix >
5
+ <VersionPrefix >1.12.24 </VersionPrefix >
6
6
<TargetFramework >net40</TargetFramework >
7
7
<OutputType >Library</OutputType >
8
8
<TreatWarningsAsErrors >true</TreatWarningsAsErrors >
Original file line number Diff line number Diff line change 1
1
2
2
3
3
--------------------------------------------------------------------------------
4
- README file for Bundle Transformer: Autoprefixer v1.12.23
4
+ README file for Bundle Transformer: Autoprefixer v1.12.24
5
5
6
6
--------------------------------------------------------------------------------
7
7
Original file line number Diff line number Diff line change 2
2
<package xmlns =" http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd" >
3
3
<metadata >
4
4
<id >BundleTransformer.ConfigurationIntelliSense</id >
5
- <version >1.12.9 </version >
5
+ <version >1.12.24 </version >
6
6
<title >Bundle Transformer: IntelliSense</title >
7
7
<authors >Andrey Taritsyn</authors >
8
8
<owners >Andrey Taritsyn</owners >
Original file line number Diff line number Diff line change 1
1
2
2
3
3
--------------------------------------------------------------------------------
4
- README file for Bundle Transformer: IntelliSense v1.12.9
4
+ README file for Bundle Transformer: IntelliSense v1.12.24
5
5
6
6
--------------------------------------------------------------------------------
7
7
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<Product >Bundle Transformer: NUglify</Product >
5
- <VersionPrefix >1.12.23 </VersionPrefix >
5
+ <VersionPrefix >1.12.24 </VersionPrefix >
6
6
<TargetFramework >net40</TargetFramework >
7
7
<OutputType >Library</OutputType >
8
8
<TreatWarningsAsErrors >true</TreatWarningsAsErrors >
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ protected static IndentType GetIndentType(string indent)
142
142
{
143
143
IndentType indentType = IndentType . Space ;
144
144
145
- if ( ! string . IsNullOrEmpty ( indent ) )
145
+ if ( indent . Length > 0 )
146
146
{
147
147
char firstCharacter = indent [ 0 ] ;
148
148
indentType = firstCharacter == '\t ' ? IndentType . Tab : IndentType . Space ;
Original file line number Diff line number Diff line change 1
1
2
2
3
3
--------------------------------------------------------------------------------
4
- README file for Bundle Transformer: NUglify v1.12.23
4
+ README file for Bundle Transformer: NUglify v1.12.24
5
5
6
6
--------------------------------------------------------------------------------
7
7
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<Product >Bundle Transformer: Tests</Product >
5
- <VersionPrefix >1.12.23 </VersionPrefix >
5
+ <VersionPrefix >1.12.24 </VersionPrefix >
6
6
<TargetFramework >net452</TargetFramework >
7
7
<OutputType >Library</OutputType >
8
8
<TreatWarningsAsErrors >true</TreatWarningsAsErrors >
You can’t perform that action at this time.
0 commit comments