From d13e318fe6a7b753c49972e9448909363c52d58c Mon Sep 17 00:00:00 2001 From: Darius Rapalis Date: Wed, 14 Sep 2022 09:27:52 +0300 Subject: [PATCH] Build folder rename --- {Twitch Notes => extension}/icon.png | Bin {Twitch Notes => extension}/manifest.json | 0 {Twitch Notes => extension}/run.js | 0 {Twitch Notes => extension}/twitch-notes.bak.js | 0 {Twitch Notes => extension}/twitch-notes.js | 0 webpack.config.js | 2 +- 6 files changed, 1 insertion(+), 1 deletion(-) rename {Twitch Notes => extension}/icon.png (100%) rename {Twitch Notes => extension}/manifest.json (100%) rename {Twitch Notes => extension}/run.js (100%) rename {Twitch Notes => extension}/twitch-notes.bak.js (100%) rename {Twitch Notes => extension}/twitch-notes.js (100%) diff --git a/Twitch Notes/icon.png b/extension/icon.png similarity index 100% rename from Twitch Notes/icon.png rename to extension/icon.png diff --git a/Twitch Notes/manifest.json b/extension/manifest.json similarity index 100% rename from Twitch Notes/manifest.json rename to extension/manifest.json diff --git a/Twitch Notes/run.js b/extension/run.js similarity index 100% rename from Twitch Notes/run.js rename to extension/run.js diff --git a/Twitch Notes/twitch-notes.bak.js b/extension/twitch-notes.bak.js similarity index 100% rename from Twitch Notes/twitch-notes.bak.js rename to extension/twitch-notes.bak.js diff --git a/Twitch Notes/twitch-notes.js b/extension/twitch-notes.js similarity index 100% rename from Twitch Notes/twitch-notes.js rename to extension/twitch-notes.js diff --git a/webpack.config.js b/webpack.config.js index 3c9ca2c..d5c90cf 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -8,7 +8,7 @@ module.exports = { twitchNotes: path.resolve(__dirname, 'src/index.ts'), }, output: { - path: path.resolve(__dirname, 'Twitch Notes'), + path: path.resolve(__dirname, 'extension'), filename: "twitch-notes.js", assetModuleFilename: "[name][ext]" },