Files
invenio-theme-iform/invenio_theme_tugraz/webpack.py
mb-wali 15ff93aa22 Dev (#3)
* isort

* manifest updated

* manifest updated

* tests

* tests modify
2020-05-01 19:35:42 +02:00

28 lines
545 B
Python

# -*- coding: utf-8 -*-
#
# Copyright (C) 2020 TUGRAZ.
#
# invenio-theme-tugraz is free software.
"""JS/CSS Webpack bundles for theme."""
from flask_webpackext import WebpackBundle
def theme():
"""Returns module's webpack bundle.
This is a callable function in order to lazy load `current_app`
and avoid working outside application context.
"""
return WebpackBundle(
__name__,
'assets',
entry={
# TODO:
},
dependencies={
'jquery': '3.1.0'
}
)