UNPKG

233 BJavaScriptView Raw
1'use strict'
2
3const ababel = require('ababel')
4
5void async function () {
6 await ababel('**/*.jsx', {
7 cwd: 'src',
8 out: 'dest',
9 minified: true,
10 presets: ['es2015', 'react']
11 })
12}().catch((err) => console.error(err))
13