-
Notifications
You must be signed in to change notification settings - Fork 0
/
aplus-es6.js
38 lines (37 loc) · 1.15 KB
/
aplus-es6.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"use strict";
/***
* __ _ __ __
* ____ ___ ____ / /_ (_)/ /___ / /_ ___ _____ ____
* / __ `__ \ / __ \ / __ \ / // // _ \ / __ \ / _ \ / ___// __ \
* / / / / / // /_/ // /_/ // // // __// / / // __// / / /_/ /
* /_/ /_/ /_/ \____//_.___//_//_/ \___//_/ /_/ \___//_/ \____/
*
* mobile solutions for everyday heroes
*
* @file
* Alloy+ plugin for transforming ES6/ES2015 code to Alloy ES5 code
*
* @module
* @aplus/es6
*
* @author
* Brenton House <brenton.house@gmail.com>
*
* @copyright
* Copyright (c) 2016 by Superhero Studios Incorporated. All Rights Reserved.
*
* @license
* Licensed under the terms of the MIT License (MIT)
* Please see the license.md included with this distribution for details.
*
*/
module.exports.tasks = [{
"module": "@aplus/babel",
"options": {
"presets": [
"es2015"
]
},
"includes": ["**/*.js", "!backbone2.js"],
"events": ["preload", "preparse"]
}]