diff --git a/bin/build.sh b/bin/build.sh new file mode 100755 index 0000000..daa9f2f --- /dev/null +++ b/bin/build.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash + +# find and store current version number +version=$(grep '"version"' package.json | cut -d '"' -f4) + +# compress 'icons' directory into feather-[version].zip +zip -r feather-${version}.zip ./icons/* \ No newline at end of file