pulsar/build/build.js

20 lines
650 B
JavaScript
Raw Normal View History

#!/usr/bin/env node
'use strict'
2016-07-26 15:51:51 +03:00
const cleanOutputDirectory = require('./lib/clean-output-directory')
2016-07-27 17:09:49 +03:00
const copyAssets = require('./lib/copy-assets')
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-27 17:53:38 +03:00
const transpileCsonPaths = require('./lib/transpile-cson-paths')
2016-07-28 19:18:16 +03:00
const transpilePegJsPaths = require('./lib/transpile-peg-js-paths')
const packageApplication = require('./lib/package-application')
2016-07-26 15:51:51 +03:00
cleanOutputDirectory()
2016-07-27 17:09:49 +03:00
copyAssets()
2016-07-26 15:51:07 +03:00
transpileBabelPaths()
transpileCoffeeScriptPaths()
2016-07-27 17:53:38 +03:00
transpileCsonPaths()
2016-07-28 19:18:16 +03:00
transpilePegJsPaths()
packageApplication()