mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 00:55:35 +00:00
13 lines
325 B
Bash
Executable file
13 lines
325 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -o pipefail
|
|
set -o errexit
|
|
set -o nounset
|
|
# set -o xtrace
|
|
|
|
# Set magic variables for current file & dir
|
|
__dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
__file="${__dir}/$(basename "${BASH_SOURCE[0]}")"
|
|
__base="$(basename ${__file} .sh)"
|
|
|
|
node_modules/.bin/node-sass src/scss/ \
|
|
--output dist/
|