Merge pull request #14131 from atom/mkt-prepare-build-for-per-package-transpilation

Update build to pre-compile packages with per-package transpilation configs
This commit is contained in:
Michelle Tilley
2017-04-06 00:39:50 -07:00
committed by GitHub
5 changed files with 52 additions and 6 deletions

View File

@@ -44,6 +44,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 transpilePackagesWithCustomTranspilerPaths = require('./lib/transpile-packages-with-custom-transpiler-paths.js')
process.on('unhandledRejection', function (e) {
console.error(e.stack || e)
@@ -53,6 +54,7 @@ process.on('unhandledRejection', function (e) {
checkChromedriverVersion()
cleanOutputDirectory()
copyAssets()
transpilePackagesWithCustomTranspilerPaths()
transpileBabelPaths()
transpileCoffeeScriptPaths()
transpileCsonPaths()