mirror of
https://github.com/eosswedenorg/apt
synced 2026-06-16 04:34:56 +02:00
8 lines
144 B
Bash
Executable file
8 lines
144 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
UGLIFYJS=node_modules/uglify-js/bin/uglifyjs
|
|
|
|
SRC=_scripts/app.js
|
|
TARGET=assets/scripts.js
|
|
|
|
$UGLIFYJS $SRC -c -m > $TARGET
|