mirror of
https://github.com/arfct/itty-bitty.git
synced 2026-03-11 08:54:33 +00:00
9 lines
217 B
Bash
Executable file
9 lines
217 B
Bash
Executable file
#! /bin/bash
|
|
cd public
|
|
terser data.js > data-min.js
|
|
|
|
cd index.src
|
|
terser index.js > index-min.js
|
|
uglifycss index.css > index-min.css
|
|
|
|
awk '$1 == "@include"{system("cat " $2); next} 1' index.html > ../index.html
|