aboutsummaryrefslogtreecommitdiff
path: root/lib/mix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mix')
-rw-r--r--lib/mix/tasks/vendor.ex18
1 files changed, 0 insertions, 18 deletions
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