summaryrefslogtreecommitdiff
path: root/support/build/aggregate-bundle.js
diff options
context:
space:
mode:
Diffstat (limited to 'support/build/aggregate-bundle.js')
-rw-r--r--support/build/aggregate-bundle.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/support/build/aggregate-bundle.js b/support/build/aggregate-bundle.js
index c48b25f..9430822 100644
--- a/support/build/aggregate-bundle.js
+++ b/support/build/aggregate-bundle.js
@@ -5,11 +5,11 @@ rollup({
entry: 'build-es/index.js',
plugins: [ nodeResolve() ]
})
-.then(function ( bundle ) {
- return bundle.write({
- format: 'umd',
- moduleName: 'async',
- dest: 'build/dist/async.js'
- });
-})
-.catch((err) => { throw err; });
+ .then(( bundle ) => {
+ return bundle.write({
+ format: 'umd',
+ moduleName: 'async',
+ dest: 'build/dist/async.js'
+ });
+ })
+ .catch((err) => { throw err; });