forked from sheetjs/sheetjs
		
	- PtgList and old Ptg record support - fleshed out ftab constants from macrosheet support - reimplemented / fixed / removed shim functions - demo refresh
		
			
				
	
	
		
			20 lines
		
	
	
		
			379 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			379 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
 | 
						|
import resolve from 'rollup-plugin-node-resolve';
 | 
						|
import commonjs from 'rollup-plugin-commonjs';
 | 
						|
export default {
 | 
						|
	input: 'main.js',
 | 
						|
	output: {
 | 
						|
		file: 'rollup.node.js',
 | 
						|
		format: 'cjs'
 | 
						|
	},
 | 
						|
	entry: 'main.js',
 | 
						|
	//dest: 'rollup.node.js',
 | 
						|
	plugins: [
 | 
						|
		resolve({
 | 
						|
			module: false
 | 
						|
		}),
 | 
						|
		commonjs()
 | 
						|
	],
 | 
						|
	format: 'cjs'
 | 
						|
};
 |