Files
invenio-theme-iform/invenio_theme_tugraz/webpack.py
mb ed03878fe0 travis check:
invenio-assets module to install requires, removed commented lines.
2020-06-10 17:35:42 +02:00

25 lines
510 B
Python

# -*- coding: utf-8 -*-
#
# Copyright (C) 2020 TUGRAZ.
#
# invenio-theme-tugraz is free software.
"""JS/CSS Webpack bundles for theme."""
from invenio_assets.webpack import WebpackThemeBundle
theme = WebpackThemeBundle(
__name__,
'assets',
default='semantic-ui',
themes={
'semantic-ui': dict(
entry={
'invenio-theme-tugraz-theme':
'./less/invenio_theme_tugraz/theme.less',
},
dependencies={}
)
}
)