Skip to content

Commit

Permalink
Don't update the docs version by default
Browse files Browse the repository at this point in the history
This was leading to a lot of unnecessary churn in the config file since
different YAML versions were serializing differently.
  • Loading branch information
zpao committed Sep 18, 2013
1 parent a9d53da commit 208ebd3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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]

0 comments on commit 208ebd3

Please sign in to comment.