mirror of
https://github.com/atom/atom.git
synced 2026-01-24 14:28:14 -05:00
🎨
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user