mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
9 lines
189 B
Bash
Executable file
9 lines
189 B
Bash
Executable file
#!/bin/bash
|
|
|
|
trap 'jobs -p | xargs kill' EXIT
|
|
|
|
mkdir -p dist/css
|
|
mkdir -p dist/js
|
|
|
|
sass --watch scss:dist/css --sourcemap=none &
|
|
babel --presets es2015,react --out-dir dist/js/ --watch js/
|