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;
 | 
					const parent = window.parent;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -8,7 +8,7 @@ module.exports = {
 | 
				
			||||||
  entry: {
 | 
					  entry: {
 | 
				
			||||||
    index: path.join(src, 'content'),
 | 
					    index: path.join(src, 'content'),
 | 
				
			||||||
    background: path.join(src, 'background'),
 | 
					    background: path.join(src, 'background'),
 | 
				
			||||||
    'command-line': path.join(src, 'command-line')
 | 
					    'command-line': path.join(src, 'command-line', 'command-line.js')
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  output: {
 | 
					  output: {
 | 
				
			||||||
| 
						 | 
					@ -43,7 +43,7 @@ module.exports = {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  plugins: [
 | 
					  plugins: [
 | 
				
			||||||
    new HtmlWebpackPlugin({
 | 
					    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'),
 | 
					      filename: path.join(dist, 'command-line.html'),
 | 
				
			||||||
      inject: false
 | 
					      inject: false
 | 
				
			||||||
    })
 | 
					    })
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue