Better wording around transpiling packages with custom transpilers

This commit is contained in:
Michelle Tilley
2017-04-04 12:13:04 -07:00
parent 2d5b533530
commit bd31a2d166
2 changed files with 3 additions and 3 deletions

View File

@@ -43,7 +43,7 @@ const transpileBabelPaths = require('./lib/transpile-babel-paths')
const transpileCoffeeScriptPaths = require('./lib/transpile-coffee-script-paths')
const transpileCsonPaths = require('./lib/transpile-cson-paths')
const transpilePegJsPaths = require('./lib/transpile-peg-js-paths')
const transpilePerPackageTranspilationPaths = require('./lib/transpile-per-package-transpilation-paths')
const transpilePackagesWithCustomTranspilerPaths = require('./lib/transpile-packages-with-custom-transpiler-paths.js')
process.on('unhandledRejection', function (e) {
console.error(e.stack || e)
@@ -53,7 +53,7 @@ process.on('unhandledRejection', function (e) {
checkChromedriverVersion()
cleanOutputDirectory()
copyAssets()
transpilePerPackageTranspilationPaths()
transpilePackagesWithCustomTranspilerPaths()
transpileBabelPaths()
transpileCoffeeScriptPaths()
transpileCsonPaths()

View File

@@ -8,7 +8,7 @@ const path = require('path')
const CONFIG = require('../config')
module.exports = function () {
console.log(`Transpiling per-package transpilation paths in ${CONFIG.intermediateAppPath}`)
console.log(`Transpiling packages with custom transpiler configurations in ${CONFIG.intermediateAppPath}`)
let pathsToCompile = []
for (let packageName of Object.keys(CONFIG.appMetadata.packageDependencies)) {
const packagePath = path.join(CONFIG.intermediateAppPath, 'node_modules', packageName)