mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04: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()
|