aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-08-29 21:20:42 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-08-29 21:20:42 +0900
commit041eacf4fbea1486b00c196343bbbe2df4f0970b (patch)
treeaf4d028c4c2fbc68ac9ebfc506905cf6d5577ef4
parenta129c9665832c1c8f77bafd05bb2367221af3a51 (diff)
rename command-line files
-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.js4
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
})