Updated deps

This commit is contained in:
Chen Asraf
2016-04-30 00:53:13 +03:00
parent 0017d1bce0
commit bcfe90b4c2
2 changed files with 7 additions and 5 deletions

8
app.py
View File

@@ -28,16 +28,16 @@ bower_css = [
]
receiver_js_files = [os.path.join(dirpath, f)
for dirpath, dirnames, files in os.walk(os.path.join('coffee', 'receiver'))
for dirpath, dirnames, files in sorted(os.walk(os.path.join('coffee', 'receiver')))
for f in files if f.endswith('.coffee')]
sender_js_files = [os.path.join(dirpath, f)
for dirpath, dirnames, files in os.walk(os.path.join('coffee', 'sender'))
for dirpath, dirnames, files in sorted(os.walk(os.path.join('coffee', 'sender')))
for f in files if f.endswith('.coffee')]
receiver_css_files = [os.path.join(dirpath, f)
for dirpath, dirnames, files in os.walk(os.path.join('sass', 'receiver'))
for dirpath, dirnames, files in sorted(os.walk(os.path.join('sass', 'receiver')))
for f in files if f.endswith('.scss')]
sender_css_files = [os.path.join(dirpath, f)
for dirpath, dirnames, files in os.walk(os.path.join('sass', 'sender'))
for dirpath, dirnames, files in sorted(os.walk(os.path.join('sass', 'sender')))
for f in files if f.endswith('.scss')]
receiver_js_files = map(

View File

@@ -17,6 +17,8 @@
],
"dependencies": {
"jquery": "^2.2.2",
"angularjs": "^1.5.3"
"angularjs": "^1.5.3",
"bootstrap": "~3.3.6",
"underscore": "^1.8.3"
}
}