Files
atom/build/build.js
Antonio Scandurra 59d995b21d Transpile CSON
2016-07-27 16:53:38 +02:00

16 lines
475 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')
const transpileCsonPaths = require('./lib/transpile-cson-paths')
cleanOutputDirectory()
copyAssets()
transpileBabelPaths()
transpileCoffeeScriptPaths()
transpileCsonPaths()