mirror of
https://github.com/chenasraf/castroulette-receiver.git
synced 2026-05-17 17:58:05 +00:00
Updated deps
This commit is contained in:
8
app.py
8
app.py
@@ -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(
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user