deps
This commit is contained in:
parent
305c108825
commit
9ed63ca5ba
2 changed files with 9 additions and 1 deletions
|
@ -21,6 +21,8 @@
|
|||
"quill": "~0.19.14",
|
||||
"pretender": "~0.10.1",
|
||||
"lodash": "~3.7.0",
|
||||
"Faker": "~3.0.0"
|
||||
"Faker": "~3.0.0",
|
||||
"selectize": "~0.12.1",
|
||||
"jQuery UI Sortable": "jquery-ui-sortable#*"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,6 +14,8 @@ module.exports = function(defaults) {
|
|||
// quill
|
||||
app.import('bower_components/quill/dist/quill.base.css');
|
||||
app.import('bower_components/quill/dist/quill.snow.css');
|
||||
// selectize
|
||||
app.import('bower_components/selectize/dist/css/selectize.default.css');
|
||||
|
||||
// LIBS ////////////////////////////////////////////////////////////////////////
|
||||
// flakes (and deps)
|
||||
|
@ -25,6 +27,10 @@ module.exports = function(defaults) {
|
|||
app.import('bower_components/moment/moment.js');
|
||||
// quill
|
||||
app.import('bower_components/quill/dist/quill.min.js');
|
||||
// jquery ui sortable
|
||||
app.import('bower_components/jQuery UI Sortable/jquery-ui-sortable.min.js');
|
||||
// selectize
|
||||
app.import('bower_components/selectize/dist/js/standalone/selectize.min.js');
|
||||
|
||||
return app.toTree();
|
||||
};
|
||||
|
|
Reference in a new issue