Add a new build mode to the Makefile that doesn't try to pull from external sources...
[jquery.git] / Rakefile
index 92176a6..71a7067 100644 (file)
--- a/Rakefile
+++ b/Rakefile
@@ -1,5 +1,5 @@
 # Basic Rakefile for building jQuery
-files = [ "intro", "core", "support", "data", "queue", "event", "selector", "traversing", "attributes", "manipulation", "css", "ajax", "fx", "offset", "dimensions", "outro" ]
+files = [ "intro", "core", "support", "data", "queue", "event", "selector", "traversing", "attributes", "manipulation", "css", "ajax", "effects", "offset", "dimensions", "outro" ]
 
 date = `git log -1 | grep Date: | sed 's/[^:]*: *//'`.gsub(/\n/, "")
 version = `cat version.txt`.gsub(/\n/, "")
@@ -18,7 +18,7 @@ task :jquery => [:init, :selector] do
 
        sh "cat " + files.map {|file| "src/" + file + ".js"}.join(" ") +
                " | sed 's/Date:./&" + date + "/' | " +
-               " sed s/@VERSION/" + version + "/ > dist/jquery2.js"
+               " sed s/@VERSION/" + version + "/ > dist/jquery.js"
 end
 
 task :selector do