mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
14 lines
389 B
JavaScript
14 lines
389 B
JavaScript
#!/usr/bin/env node
|
|
|
|
'use strict'
|
|
|
|
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')
|
|
|
|
cleanOutputDirectory()
|
|
copyAssets()
|
|
transpileBabelPaths()
|
|
transpileCoffeeScriptPaths()
|