From bda6447f327fb3187f4caa75d71565c3eda60d84 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Thu, 28 Jul 2016 18:22:47 +0200 Subject: [PATCH] :art: --- build/lib/transpile-babel-paths.js | 2 +- build/lib/transpile-coffee-script-paths.js | 2 +- build/lib/transpile-cson-paths.js | 2 +- build/lib/transpile-peg-js-paths.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build/lib/transpile-babel-paths.js b/build/lib/transpile-babel-paths.js index eecd77d7e..51d243991 100644 --- a/build/lib/transpile-babel-paths.js +++ b/build/lib/transpile-babel-paths.js @@ -17,7 +17,7 @@ const PREFIX_LENGTH = Math.max.apply(null, BABEL_PREFIXES.map(prefix => prefix.l const BUFFER = Buffer(PREFIX_LENGTH) module.exports = function () { - console.log(`Transpiling Babel paths in ${CONFIG.intermediateAppPath}...`); + console.log(`Transpiling Babel paths in ${CONFIG.intermediateAppPath}...`) for (let path of getPathsToTranspile()) { if (usesBabel(path)) { transpileBabelPath(path) diff --git a/build/lib/transpile-coffee-script-paths.js b/build/lib/transpile-coffee-script-paths.js index 6a2f1183c..b832c1c2e 100644 --- a/build/lib/transpile-coffee-script-paths.js +++ b/build/lib/transpile-coffee-script-paths.js @@ -8,7 +8,7 @@ const path = require('path') const CONFIG = require('../config') module.exports = function () { - console.log(`Transpiling CoffeeScript paths in ${CONFIG.intermediateAppPath}...`); + console.log(`Transpiling CoffeeScript paths in ${CONFIG.intermediateAppPath}...`) for (let path of getPathsToTranspile()) { transpileCoffeeScriptPath(path) } diff --git a/build/lib/transpile-cson-paths.js b/build/lib/transpile-cson-paths.js index 15925a56e..4391c42bc 100644 --- a/build/lib/transpile-cson-paths.js +++ b/build/lib/transpile-cson-paths.js @@ -8,7 +8,7 @@ const path = require('path') const CONFIG = require('../config') module.exports = function () { - console.log('Transpiling CSON paths...'); + console.log(`Transpiling CSON paths in ${CONFIG.intermediateAppPath}...`) for (let path of getPathsToTranspile()) { transpileCsonPath(path) } diff --git a/build/lib/transpile-peg-js-paths.js b/build/lib/transpile-peg-js-paths.js index 75b1b53b2..10ef50a9b 100644 --- a/build/lib/transpile-peg-js-paths.js +++ b/build/lib/transpile-peg-js-paths.js @@ -8,7 +8,7 @@ const path = require('path') const CONFIG = require('../config') module.exports = function () { - console.log(`Transpiling PEG.js paths in ${CONFIG.intermediateAppPath}...`); + console.log(`Transpiling PEG.js paths in ${CONFIG.intermediateAppPath}...`) for (let path of getPathsToTranspile()) { transpilePegJsPath(path) }