From 28b09b13e47c0344717fd5057701c52ec2b6c3f1 Mon Sep 17 00:00:00 2001 From: Eric Schultz Date: Fri, 13 Dec 2024 22:00:57 -0600 Subject: [PATCH] Use js:routes task since the :typescript one is deprecated --- lib/tasks/js_routes.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/js_routes.rake b/lib/tasks/js_routes.rake index b216ff57d..84e2254cf 100644 --- a/lib/tasks/js_routes.rake +++ b/lib/tasks/js_routes.rake @@ -7,7 +7,7 @@ # adds support for generating js routes as part of the assets:precompile task namespace :assets do - task precompile: 'js:routes:typescript' + task precompile: 'js:routes' end # rubocop:enable Rake/Desc