mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-01 12:26:13 +00:00
black
This commit is contained in:
parent
7b6ad443a1
commit
ba34a1bb7f
|
@ -83,11 +83,17 @@ def create_app(test_config=None): # pylint: disable=R0914
|
||||||
return render_template("error.html", error=error, msg=msg), error
|
return render_template("error.html", error=error, msg=msg), error
|
||||||
|
|
||||||
scripts = Bundle(
|
scripts = Bundle(
|
||||||
"js/*.js", filters="jsmin", output="gen/js.js", depends="js/*.js"
|
"js/*.js",
|
||||||
|
filters="jsmin",
|
||||||
|
output="gen/js.js",
|
||||||
|
depends="js/*.js"
|
||||||
)
|
)
|
||||||
|
|
||||||
styles = Bundle(
|
styles = Bundle(
|
||||||
"sass/*.sass", filters="libsass, cssmin", output="gen/styles.css", depends='sass/**/*.sass'
|
"sass/*.sass",
|
||||||
|
filters="libsass, cssmin",
|
||||||
|
output="gen/styles.css",
|
||||||
|
depends="sass/**/*.sass",
|
||||||
)
|
)
|
||||||
|
|
||||||
assets.register("scripts", scripts)
|
assets.register("scripts", scripts)
|
||||||
|
|
Loading…
Reference in a new issue