From 99e5bd3cf4ef1e35de00893608060301c7ba99f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael=20Miehe?= Date: Sat, 30 Dec 2023 01:43:11 +0000 Subject: [PATCH] move stuff around --- {gfx => img}/bttv_original.png | 0 {public/img => img}/icon-128.png | 0 {public/img => img}/icon-16.png | 0 {public/img => img}/icon-32.png | 0 {public/img => img}/icon-48.png | 0 {gfx => img}/icon.xcf | 0 {public/img => img}/sb_button.png | 0 {gfx => img}/sb_button.xcf | 0 public/manifest.json => manifest.json | 2 +- webpack.config.js | 7 +------ 10 files changed, 2 insertions(+), 7 deletions(-) rename {gfx => img}/bttv_original.png (100%) rename {public/img => img}/icon-128.png (100%) rename {public/img => img}/icon-16.png (100%) rename {public/img => img}/icon-32.png (100%) rename {public/img => img}/icon-48.png (100%) rename {gfx => img}/icon.xcf (100%) rename {public/img => img}/sb_button.png (100%) rename {gfx => img}/sb_button.xcf (100%) rename public/manifest.json => manifest.json (94%) diff --git a/gfx/bttv_original.png b/img/bttv_original.png similarity index 100% rename from gfx/bttv_original.png rename to img/bttv_original.png diff --git a/public/img/icon-128.png b/img/icon-128.png similarity index 100% rename from public/img/icon-128.png rename to img/icon-128.png diff --git a/public/img/icon-16.png b/img/icon-16.png similarity index 100% rename from public/img/icon-16.png rename to img/icon-16.png diff --git a/public/img/icon-32.png b/img/icon-32.png similarity index 100% rename from public/img/icon-32.png rename to img/icon-32.png diff --git a/public/img/icon-48.png b/img/icon-48.png similarity index 100% rename from public/img/icon-48.png rename to img/icon-48.png diff --git a/gfx/icon.xcf b/img/icon.xcf similarity index 100% rename from gfx/icon.xcf rename to img/icon.xcf diff --git a/public/img/sb_button.png b/img/sb_button.png similarity index 100% rename from public/img/sb_button.png rename to img/sb_button.png diff --git a/gfx/sb_button.xcf b/img/sb_button.xcf similarity index 100% rename from gfx/sb_button.xcf rename to img/sb_button.xcf diff --git a/public/manifest.json b/manifest.json similarity index 94% rename from public/manifest.json rename to manifest.json index 235dc9c..df8eb4c 100644 --- a/public/manifest.json +++ b/manifest.json @@ -11,7 +11,7 @@ }, "content_scripts": [ { - "js": ["main.js"], + "js": ["dist/main.js"], "matches": ["*://*.lenameyerlandrut-fanclub.de/*"] } ], diff --git a/webpack.config.js b/webpack.config.js index ff06bce..8cb738b 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,5 +1,5 @@ const path = require("path"); -const CopyPlugin = require("copy-webpack-plugin"); + module.exports = { mode: "production", entry: { @@ -21,9 +21,4 @@ module.exports = { }, ], }, - plugins: [ - new CopyPlugin({ - patterns: [{ from: ".", to: ".", context: "public" }], - }), - ], };