2016-03-23 07:40:44 +03:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
|
|
|
'use strict'
|
|
|
|
|
2016-07-26 15:51:51 +03:00
|
|
|
const cleanOutputDirectory = require('./lib/clean-output-directory')
|
2016-03-23 07:40:44 +03:00
|
|
|
const transpileBabelPaths = require('./lib/transpile-babel-paths')
|
2016-03-23 08:06:28 +03:00
|
|
|
const transpileCoffeeScriptPaths = require('./lib/transpile-coffee-script-paths')
|
2016-07-26 15:52:14 +03:00
|
|
|
const copyStaticAssets = require('./lib/copy-static-assets')
|
2016-03-23 07:40:44 +03:00
|
|
|
|
2016-07-26 15:51:51 +03:00
|
|
|
cleanOutputDirectory()
|
2016-07-26 15:51:07 +03:00
|
|
|
transpileBabelPaths()
|
|
|
|
transpileCoffeeScriptPaths()
|
2016-07-26 15:52:14 +03:00
|
|
|
copyStaticAssets()
|