mirror of
https://github.com/atom/atom.git
synced 2026-02-11 07:05:11 -05:00
14 lines
408 B
JavaScript
14 lines
408 B
JavaScript
#!/usr/bin/env node
|
|
|
|
'use strict'
|
|
|
|
const cleanOutputDirectory = require('./lib/clean-output-directory')
|
|
const transpileBabelPaths = require('./lib/transpile-babel-paths')
|
|
const transpileCoffeeScriptPaths = require('./lib/transpile-coffee-script-paths')
|
|
const copyStaticAssets = require('./lib/copy-static-assets')
|
|
|
|
cleanOutputDirectory()
|
|
transpileBabelPaths()
|
|
transpileCoffeeScriptPaths()
|
|
copyStaticAssets()
|