This commit is contained in:
Antonio Scandurra
2016-07-28 18:22:47 +02:00
parent 3c414579f3
commit bda6447f32
4 changed files with 4 additions and 4 deletions

View File

@@ -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)

View File

@@ -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)
}

View File

@@ -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)
}

View File

@@ -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)
}