pulsar/build/build.js

14 lines
279 B
JavaScript
Raw Normal View History

#!/usr/bin/env node
'use strict'
const transpileBabelPaths = require('./lib/transpile-babel-paths')
2016-03-23 08:06:28 +03:00
const transpileCoffeeScriptPaths = require('./lib/transpile-coffee-script-paths')
function transpile () {
2016-03-24 04:43:32 +03:00
transpileBabelPaths()
2016-03-23 08:06:28 +03:00
transpileCoffeeScriptPaths()
}
transpile()