aboutsummaryrefslogtreecommitdiffstats
path: root/library/Sortable/scripts/build.js
diff options
context:
space:
mode:
Diffstat (limited to 'library/Sortable/scripts/build.js')
-rw-r--r--library/Sortable/scripts/build.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/library/Sortable/scripts/build.js b/library/Sortable/scripts/build.js
new file mode 100644
index 000000000..11cf99d35
--- /dev/null
+++ b/library/Sortable/scripts/build.js
@@ -0,0 +1,17 @@
+import babel from 'rollup-plugin-babel';
+import json from 'rollup-plugin-json';
+import resolve from 'rollup-plugin-node-resolve';
+import banner from './banner.js';
+
+
+export default {
+ output: {
+ banner,
+ name: 'Sortable'
+ },
+ plugins: [
+ json(),
+ babel(),
+ resolve()
+ ]
+};