Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Anarios/return-youtube-dislike.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeon Bubova <bubova.leon@gmx.de>2021-12-15 01:13:20 +0300
committerLeon Bubova <bubova.leon@gmx.de>2021-12-15 12:14:17 +0300
commit7b9c1781b40f70a1e056eef4cb953141df331ada (patch)
tree385f67b1e93a975c6581aec40a6f72550feec7ed /webpack.config.js
parente39b52e8e725a0061e35e4a3fad5dd321c5bf4b3 (diff)
implement webpack and create scripts to bundle source
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/webpack.config.js b/webpack.config.js
new file mode 100644
index 0000000..9452fa7
--- /dev/null
+++ b/webpack.config.js
@@ -0,0 +1,13 @@
+const path = require("path");
+
+module.exports = {
+ entry: path.join(__dirname, "./Extensions/combined/ryd.content-script.js"),
+ output: {
+ filename: "bundled-content-script.js",
+ path: path.resolve(__dirname, "Extensions/combined"),
+ },
+ externals: {
+ ramda: "R",
+ },
+ module: {},
+};