mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-23 18:29:09 +00:00
8 lines
204 B
Bash
Executable file
8 lines
204 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ENTRY=examples/playground/src/js/app.js
|
|
OUTPUT=examples/playground/static/js/app.js
|
|
TRANSFORMS="[ babelify ]"
|
|
|
|
# Argument should be browserify or watchify
|
|
$1 $ENTRY -o $OUTPUT -t $TRANSFORMS
|