rename command-line files
This commit is contained in:
parent
a129c96658
commit
041eacf4fb
4 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
import './index.scss';
|
||||
import './command-line.scss';
|
||||
|
||||
const parent = window.parent;
|
||||
|
|
@ -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
|
||||
})
|
||||
|
|
Reference in a new issue