mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 09:25:04 +00:00
e56303798c
Initial SickGear for Python 3.
12 lines
457 B
Bash
12 lines
457 B
Bash
#!/usr/bin/env bash
|
|
|
|
|
|
# install all the dependencies and pack everything into one file babel_bundle.js (converted to es2015).
|
|
npm install babel-core babel-cli babel-preset-es2015 browserify
|
|
browserify babel.js -o babel_bundle.js -t [ babelify --presets [ es2015 ] ]
|
|
|
|
# translate babel_bundle.js using js2py -> generates babel.py
|
|
echo "Generating babel.py..."
|
|
python -c "import js2py;js2py.translate_file('babel_bundle.js', 'babel.py');"
|
|
rm babel_bundle.js
|
|
|