From 4560b07a6e336d1f75714ab6db656ec2e9891b91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Wed, 18 Sep 2013 10:40:12 -0700 Subject: [PATCH] Don't update the docs version by default This was leading to a lot of unnecessary churn in the config file since different YAML versions were serializing differently. --- Rakefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Rakefile b/Rakefile index 9d4b0396..f10e3179 100644 --- a/Rakefile +++ b/Rakefile @@ -13,7 +13,7 @@ task :js do end desc "watch css & js" -task :watch => [:update_version] do +task :watch do Process.spawn "sass --style=compressed --watch _css/react.scss:css/react.css" Process.spawn "../bin/jsx --watch _js js" Process.waitall @@ -30,8 +30,8 @@ task :update_version do end desc "build into ../../react-gh-pages" -task :release => [:default] do +task :release => [:update_version, :default] do system "jekyll build -d ../../react-gh-pages" end -task :default => [:update_version, :css, :js] +task :default => [:css, :js]