Created
August 9, 2017 12:54
-
-
Save tomdale/ad578f9e7ac925284f41f624fb8bf796 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const babel = require('broccoli-babel-transpiler'); | |
const uglify = require('broccoli-uglify-js'); | |
let jsTree = funnel('src', { include: ['**/*.js'] }) | |
.apply(babel, { presets: ['env'] }) | |
.apply(uglify); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment