aboutsummaryrefslogtreecommitdiff
path: root/javascript/ember-cli-build.js
diff options
context:
space:
mode:
authoralexwl <alexey.a.kiryushin@gmail.com>2018-10-02 13:17:04 +0300
committeralexwl <alexey.a.kiryushin@gmail.com>2018-10-02 13:17:04 +0300
commitcf2c56c7061b7ed40fdd3b40a352ddb9c9b7371f (patch)
treeb1de9ada0f1b1cb064e3a9e0d4042d1f519085bd /javascript/ember-cli-build.js
Initial commit
Diffstat (limited to 'javascript/ember-cli-build.js')
-rw-r--r--javascript/ember-cli-build.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/javascript/ember-cli-build.js b/javascript/ember-cli-build.js
new file mode 100644
index 0000000..0178882
--- /dev/null
+++ b/javascript/ember-cli-build.js
@@ -0,0 +1,21 @@
+/* eslint-env node */
+'use strict';
+
+const EmberApp = require('ember-cli/lib/broccoli/ember-app');
+
+module.exports = function(defaults) {
+ let app = new EmberApp(defaults, {
+ 'ember-cli-bootstrap-4': {
+ js: null
+ },
+ 'ember-cli-babel': {
+ includePolyfill: true
+ }
+ });
+ app.import('vendor/jquery-ui-1.12.1.custom/jquery-ui.min.js')// only draggable and resizable
+ app.import('vendor/jquery-ui-1.12.1.custom/jquery-ui.structure.min.css')
+ app.import('node_modules/jstree/dist/jstree.min.js');
+ app.import('node_modules/jstree/dist/themes/default/style.min.css');
+ app.import('node_modules/showdown/dist/showdown.min.js');
+ return app.toTree();
+};