Skip to content

Commit 06b2313

Browse files
Combined Coffee- and IcedCoffeeScript compilers
1 parent 67faa7e commit 06b2313

File tree

5 files changed

+0
-150
lines changed

5 files changed

+0
-150
lines changed

build/build.cmd

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ if not exist node.7z (
2020
echo Installing packages...
2121
call npm install flatten-packages -g --quiet > nul
2222
call npm install less --quiet > nul
23-
call npm install coffee-script --quiet > nul
2423
call npm install iced-coffee-script --quiet > nul
2524

2625

src/WebCompiler/Compile/CoffeeScriptCompiler.cs

Lines changed: 0 additions & 129 deletions
This file was deleted.

src/WebCompiler/Compile/CoffeeScriptOptions.cs

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/WebCompiler/Compile/CompilerService.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,6 @@ internal static ICompiler GetCompiler(Config config)
4343
break;
4444

4545
case ".COFFEE":
46-
Initialize();
47-
compiler = new CoffeeScriptCompiler(_path);
48-
break;
49-
5046
case ".ICED":
5147
Initialize();
5248
compiler = new IcedCoffeeScriptCompiler(_path);

src/WebCompiler/WebCompiler.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@
6767
<Compile Include="Compile\IcedCoffeeScriptCompiler.cs" />
6868
<Compile Include="Compile\CompilerService.cs" />
6969
<Compile Include="Compile\ICompiler.cs" />
70-
<Compile Include="Compile\CoffeeScriptCompiler.cs" />
71-
<Compile Include="Compile\CoffeeScriptOptions.cs" />
7270
<Compile Include="Compile\OutputStyle.cs" />
7371
<Compile Include="Compile\SassOptions.cs" />
7472
<Compile Include="Compile\LessOptions.cs" />

0 commit comments

Comments
 (0)