From 25ce47de8c1e113a1c84ee8c073ee9d223919c30 Mon Sep 17 00:00:00 2001 From: iBug Date: Sun, 5 May 2024 15:27:23 +0800 Subject: [PATCH] Rakefile: Add jQuery to uglify targets Regression of 0b8b5230f --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 65f5039c..a7ef8899 100644 --- a/Rakefile +++ b/Rakefile @@ -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|