From e6ae7d836dd6a778b2001d67b9459b087f790c39 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Tue, 26 Jul 2016 14:51:07 +0200 Subject: [PATCH] Inline transpile call --- build/build.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/build/build.js b/build/build.js index 94ffd895a..2129f0d0f 100644 --- a/build/build.js +++ b/build/build.js @@ -5,9 +5,5 @@ const transpileBabelPaths = require('./lib/transpile-babel-paths') const transpileCoffeeScriptPaths = require('./lib/transpile-coffee-script-paths') -function transpile () { - transpileBabelPaths() - transpileCoffeeScriptPaths() -} - -transpile() +transpileBabelPaths() +transpileCoffeeScriptPaths()