Skip to content

Commit

Permalink
Version 1.13.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Taritsyn committed Apr 24, 2023
1 parent 7945a80 commit 5b1f8f9
Show file tree
Hide file tree
Showing 12 changed files with 26 additions and 15 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Change log
==========

## v1.13.4 - April 24, 2023
* In BundleTransformer.ConfigurationIntelliSense updated definitions for configuration settings of TypeScript translator
* In BundleTransformer.TypeScript:
* Added support of the TypeScript version 5.0.4
* In configuration settings of TypeScript translator was changed the default values of two properties: `ForceConsistentCasingInFileNames` (from `false` to `true`) and `Target` (from `EcmaScript3` to `EcmaScript5`), and added one new property - `IgnoreDeprecations` (default empty string)
* In BundleTransformer.Autoprefixer added support of the Autoprefixer version 10.4.14.0
* In BundleTransformer.NUglify added support of the NUglify version 1.20.6

## v1.13.3 - March 9, 2023
* In BundleTransformer.SassAndScss added support of the Dart Sass version 1.58.3

## v1.13.2 - January 27, 2023
* In BundleTransformer.Autoprefixer was updated the Autoprefixer Host to version 3.0.27
* In BundleTransformer.NUglify added support of the NUglify version 1.20.5
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
[assembly: ComVisible(false)]
[assembly: Guid("d858d771-b511-4517-bc9a-6feb6d0c4c3e")]

[assembly: AssemblyVersion("1.13.3.0")]
[assembly: AssemblyFileVersion("1.13.3.0")]
[assembly: AssemblyVersion("1.13.4.0")]
[assembly: AssemblyFileVersion("1.13.4.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Bundle Transformer: Autoprefixer</Product>
<VersionPrefix>1.13.2</VersionPrefix>
<VersionPrefix>1.13.4</VersionPrefix>
<TargetFramework>net40</TargetFramework>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
2 changes: 1 addition & 1 deletion src/BundleTransformer.Autoprefixer/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Bundle Transformer: Autoprefixer v1.13.2
README file for Bundle Transformer: Autoprefixer v1.13.4

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Bundle Transformer: IntelliSense</Product>
<VersionPrefix>1.13.0</VersionPrefix>
<VersionPrefix>1.13.4</VersionPrefix>
<TargetFramework>net40</TargetFramework>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/BundleTransformer.ConfigurationIntelliSense/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Bundle Transformer: IntelliSense v1.13.0
README file for Bundle Transformer: IntelliSense v1.13.4

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Bundle Transformer: NUglify</Product>
<VersionPrefix>1.13.2</VersionPrefix>
<VersionPrefix>1.13.4</VersionPrefix>
<TargetFramework>net40</TargetFramework>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
2 changes: 1 addition & 1 deletion src/BundleTransformer.NUglify/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Bundle Transformer: NUglify v1.13.2
README file for Bundle Transformer: NUglify v1.13.4

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Bundle Transformer: TypeScript</Product>
<VersionPrefix>1.12.54</VersionPrefix>
<VersionPrefix>1.13.4</VersionPrefix>
<TargetFramework>net40</TargetFramework>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand All @@ -19,7 +19,7 @@

BundleTransformer.TypeScript does not support external modules (CommonJS, AMD, SystemJS, UMD and ES6 modules).

As a JS engine is used the JavaScript Engine Switcher library (https://github.com/Taritsyn/JavaScriptEngineSwitcher). For correct working of this module, you need to install one of the following NuGet packages: JavaScriptEngineSwitcher.Msie (only in the Chakra “Edge” JsRT mode), JavaScriptEngineSwitcher.V8 or JavaScriptEngineSwitcher.ChakraCore.</Description>
As a JS engine is used the JavaScript Engine Switcher library (https://github.com/Taritsyn/JavaScriptEngineSwitcher). For correct working of this module, you need to install one of the following NuGet packages: JavaScriptEngineSwitcher.Msie, JavaScriptEngineSwitcher.V8 or JavaScriptEngineSwitcher.ChakraCore.</Description>
<PackageIconUrl>https://raw.githubusercontent.com/Taritsyn/BundleTransformer/master/images/icons/128/BundleTransformer_TypeScript_Logo_128x128.png</PackageIconUrl>
<PackageIconFullPath>../../images/icons/128/BundleTransformer_TypeScript_Logo_128x128.png</PackageIconFullPath>
<PackageTags>$(PackageCommonTags);JavaScript;JS;Bundling;TypeScript;Translation;Translator;Compilation;Compiler</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ public TypeScriptTranslator(Func<IJsEngine> createJsEngineInstance,
string.Format(CoreStrings.Configuration_JsEngineNotSpecified,
"typeScript",
@"
* JavaScriptEngineSwitcher.Msie (only in the Chakra “Edge” JsRT mode)
* JavaScriptEngineSwitcher.Msie
* JavaScriptEngineSwitcher.V8
* JavaScriptEngineSwitcher.ChakraCore",
"MsieJsEngine")
Expand Down
6 changes: 3 additions & 3 deletions src/BundleTransformer.TypeScript/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Bundle Transformer: TypeScript v1.12.54
README file for Bundle Transformer: TypeScript v1.13.4

--------------------------------------------------------------------------------

Expand Down Expand Up @@ -36,8 +36,8 @@
POST-INSTALL ACTIONS
====================
For correct working of this module, you need to install one of the following
NuGet packages: JavaScriptEngineSwitcher.Msie (only in the Chakra “Edge” JsRT
mode), JavaScriptEngineSwitcher.V8 or JavaScriptEngineSwitcher.ChakraCore.
NuGet packages: JavaScriptEngineSwitcher.Msie, JavaScriptEngineSwitcher.V8 or
JavaScriptEngineSwitcher.ChakraCore.
After package is installed and JS engine is registered
(https://github.com/Taritsyn/JavaScriptEngineSwitcher/wiki/Registration-of-JS-engines),
need set a name of JS engine (for example, `MsieJsEngine`) to the `name`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Bundle Transformer: Tests</Product>
<VersionPrefix>1.13.3</VersionPrefix>
<VersionPrefix>1.13.4</VersionPrefix>
<TargetFramework>net452</TargetFramework>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down

0 comments on commit 5b1f8f9

Please sign in to comment.