From bbbf3ad38f649008e58e2eb11f0bee96722243c7 Mon Sep 17 00:00:00 2001 From: Arjun Satarkar Date: Sat, 2 Nov 2024 14:51:32 -0400 Subject: Remove Discord Activity code from this branch --- lib/mix/tasks/vendor.ex | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'lib/mix/tasks/vendor.ex') diff --git a/lib/mix/tasks/vendor.ex b/lib/mix/tasks/vendor.ex index 06e3aa5..2c20bb4 100644 --- a/lib/mix/tasks/vendor.ex +++ b/lib/mix/tasks/vendor.ex @@ -8,24 +8,6 @@ defmodule Mix.Tasks.Vendor do File.cp_r!("node_modules/video.js/dist", "priv/static/video.js") File.cp_r!("node_modules/video.js/LICENSE", "priv/static/video.js/LICENSE") - {_, 0} = System.cmd("npx", ~w(parcel build --target discord-embedded-app-sdk)) - - discord_readme_path = "priv/static/discord-embedded-app-sdk/README.md" - - File.cp_r!( - "node_modules/@discord/embedded-app-sdk/LICENSE.md", - discord_readme_path - ) - - File.write!( - discord_readme_path, - """ - This directory contains a bundled version of https://github.com/discord/embedded-app-sdk/ - See lib/mix/tasks/vendor.ex for how it was generated. The license for the \ - original library is reproduced below:\n - """ <> File.read!(discord_readme_path) - ) - nil end end -- cgit v1.2.3-57-g22cb