diff options
-rw-r--r-- | src/command-line/command-line.html (renamed from src/command-line/index.html) | 0 | ||||
-rw-r--r-- | src/command-line/command-line.js (renamed from src/command-line/index.js) | 2 | ||||
-rw-r--r-- | src/command-line/command-line.scss (renamed from src/command-line/index.scss) | 0 | ||||
-rw-r--r-- | webpack.config.js | 4 |
4 files changed, 3 insertions, 3 deletions
diff --git a/src/command-line/index.html b/src/command-line/command-line.html index bad0b66..bad0b66 100644 --- a/src/command-line/index.html +++ b/src/command-line/command-line.html diff --git a/src/command-line/index.js b/src/command-line/command-line.js index f99afa0..34f3f35 100644 --- a/src/command-line/index.js +++ b/src/command-line/command-line.js @@ -1,4 +1,4 @@ -import './index.scss'; +import './command-line.scss'; const parent = window.parent; diff --git a/src/command-line/index.scss b/src/command-line/command-line.scss index 2256bf2..2256bf2 100644 --- a/src/command-line/index.scss +++ b/src/command-line/command-line.scss diff --git a/webpack.config.js b/webpack.config.js index 5019366..f34d203 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -8,7 +8,7 @@ module.exports = { entry: { index: path.join(src, 'content'), background: path.join(src, 'background'), - 'command-line': path.join(src, 'command-line') + 'command-line': path.join(src, 'command-line', 'command-line.js') }, output: { @@ -43,7 +43,7 @@ module.exports = { plugins: [ new HtmlWebpackPlugin({ - template: path.join(src, 'command-line', 'index.html'), + template: path.join(src, 'command-line', 'command-line.html'), filename: path.join(dist, 'command-line.html'), inject: false }) |