Removing redundant scope in rollup config
This commit is contained in:
		
							parent
							
								
									5b5b65d814
								
							
						
					
					
						commit
						dd04a20dfd
					
				| 
						 | 
					@ -3,12 +3,10 @@ import commonjs from '@rollup/plugin-commonjs';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default {
 | 
					export default {
 | 
				
			||||||
  input: 'src/replace-words.js',
 | 
					  input: 'src/replace-words.js',
 | 
				
			||||||
  output: [
 | 
					  output: {
 | 
				
			||||||
    {
 | 
					    file: 'src/content-script.js',
 | 
				
			||||||
      file: 'src/content-script.js',
 | 
					    format: 'iife',
 | 
				
			||||||
      format: 'iife',
 | 
					    name: 'contentScript'
 | 
				
			||||||
      name: 'contentScript'
 | 
					  },
 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
  ],
 | 
					 | 
				
			||||||
  plugins: [resolve(), commonjs()]
 | 
					  plugins: [resolve(), commonjs()]
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue