Skip to content

Commit

Permalink
Rakefile: Add jQuery to uglify targets
Browse files Browse the repository at this point in the history
Regression of 0b8b523
  • Loading branch information
iBug committed May 5, 2024
1 parent 256e626 commit 25ce47d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ task :copyright => COPYRIGHT_FILES

CLEAN.include(*COPYRIGHT_FILES)

JS_FILES = Dir.glob("assets/js/plugins/*.js") + ["assets/js/_main.js"]
JS_FILES = ["assets/js/vendor/jquery/jquery-3.6.0.js"] + Dir.glob("assets/js/plugins/*.js") + ["assets/js/_main.js"]
JS_TARGET = "assets/js/main.min.js"
task :js => JS_TARGET
file JS_TARGET => ["_includes/copyright.js"] + JS_FILES do |t|
Expand Down

0 comments on commit 25ce47d

Please sign in to comment.