forked from sheetjs/sheetjs
		
	- dist scripts properly export library - XLS/XLSB formulae quote sheet names containing spaces - skipHidden ported to streaming CSV write - updated codepage to 1.11.0 - flow and TS updates - webpack demo example using dist scripts - requirejs demo
		
			
				
	
	
		
			16 lines
		
	
	
		
			364 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			364 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
TOOL=webpack
 | 
						|
WPOPTS=--display-modules --display-reasons --profile
 | 
						|
.PHONY: all
 | 
						|
all: $(TOOL).min.js core.out.js full.out.js
 | 
						|
 | 
						|
$(TOOL).min.js: $(TOOL).js
 | 
						|
	uglifyjs $< > $@
 | 
						|
 | 
						|
.PHONY: $(TOOL).js
 | 
						|
$(TOOL).js:
 | 
						|
	webpack main.js --output-filename $@ $(WPOPTS)
 | 
						|
 | 
						|
.PHONY: core.out.js full.out.js
 | 
						|
core.out.js full.out.js: %.out.js: %.js
 | 
						|
	webpack $< --output-filename $@ $(WPOPTS)
 |