Allow for ES6 and ES7 support throughout a Fly environment.

Install
npm install -D fly-esnext
Usage
That's it!
All you have to do is install and save fly-esnext to your package.json and you can use or write flyfiles and fly-plugins with ES6 or ES7 syntax!
Note: This will NOT compile your ES6 files into ES5. You must download and setup a fly-babel task for that.
Example
Flyfile:
export default async function () {
await this.source('src/*.js')
.target('dist');
}
export async function lint() {
await this.source('src/*.js')
.target('dist');
}
Plugin:
const compiler = require('something');
export default function () {
this.filter('plugin', (data, opts) => {
});
}
License
MIT © Luke Edwards