From 73caf76225b1a1ab41bca00340950985633f9ef9 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Fri, 16 Mar 2012 16:09:41 -0700 Subject: [PATCH] chore(check-size): add a script to check gziped size this is useful to quickly check the resulting size during development --- check-size.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100755 check-size.sh diff --git a/check-size.sh b/check-size.sh new file mode 100755 index 000000000000..0ae5521d04db --- /dev/null +++ b/check-size.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +rake compile +gzip -c < build/angular.min.js > build/angular.min.js.gzip +ls -l build/angular.min.*