mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
24 lines
774 B
JavaScript
24 lines
774 B
JavaScript
#!/usr/bin/env node
|
|
|
|
'use strict'
|
|
|
|
require('coffee-script/register')
|
|
|
|
const cleanOutputDirectory = require('./lib/clean-output-directory')
|
|
const copyAssets = require('./lib/copy-assets')
|
|
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 generateModuleCache = require('./lib/generate-module-cache')
|
|
const packageApplication = require('./lib/package-application')
|
|
|
|
cleanOutputDirectory()
|
|
copyAssets()
|
|
transpileBabelPaths()
|
|
transpileCoffeeScriptPaths()
|
|
transpileCsonPaths()
|
|
transpilePegJsPaths()
|
|
generateModuleCache()
|
|
packageApplication()
|