|  |  | @@ -1,12 +1,12 @@ | 
		
	
		
			
			|  |  |  | import resolve from 'rollup-plugin-node-resolve' | 
		
	
		
			
			|  |  |  | import buble from 'rollup-plugin-buble'; | 
		
	
		
			
			|  |  |  | import minify from 'rollup-plugin-minify'; | 
		
	
		
			
			|  |  |  | import copy from 'rollup-plugin-copy'; | 
		
	
		
			
			|  |  |  | import includePaths from 'rollup-plugin-includepaths'; | 
		
	
		
			
			|  |  |  | import license from 'rollup-plugin-license'; | 
		
	
		
			
			|  |  |  | import { uglify } from "rollup-plugin-uglify"; | 
		
	
		
			
			|  |  |  |  | 
		
	
		
			
			|  |  |  | export default { | 
		
	
		
			
			|  |  |  | //dest: 'dist/app.min.js', | 
		
	
		
			
			|  |  |  | // dest: 'dist/js/app.js', | 
		
	
		
			
			|  |  |  | input: 'src/js/index.js', | 
		
	
		
			
			|  |  |  | output: { | 
		
	
		
			
			|  |  |  | file: 'dist/js/app.min.js', | 
		
	
	
		
			
				|  |  | @@ -57,9 +57,7 @@ export default { | 
		
	
		
			
			|  |  |  | resolve({}), | 
		
	
		
			
			|  |  |  | license({ | 
		
	
		
			
			|  |  |  | banner: 'Copyright (C) F. Hoffmann-La Roche AG, 2020.\nAuthor: stanislaw.adaszewski@roche.com\nAll Rights Reserved.', | 
		
	
		
			
			|  |  |  | }) /* , | 
		
	
		
			
			|  |  |  | minify({ | 
		
	
		
			
			|  |  |  | iife: 'dist/app.min.js' | 
		
	
		
			
			|  |  |  | }) */ | 
		
	
		
			
			|  |  |  | }), | 
		
	
		
			
			|  |  |  | // uglify() | 
		
	
		
			
			|  |  |  | ] | 
		
	
		
			
			|  |  |  | } |