mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 10:17:11 +03:00
12 lines
166 B
JavaScript
12 lines
166 B
JavaScript
|
#!/usr/bin/env node
|
||
|
|
||
|
'use strict'
|
||
|
|
||
|
const transpileBabelPaths = require('./lib/transpile-babel-paths')
|
||
|
|
||
|
function transpile () {
|
||
|
transpileBabelPaths()
|
||
|
}
|
||
|
|
||
|
transpile()
|