forked from sheetjs/sheetjs
SheetJS
6732eb76f8
- missing formula elements rewritten to valid defined names (see #680) - comment author length limit enforced - XLS ifmt references renamed to numFmtId for consistency with XLSB - removed circular symlink - mangle/compress with uglify - more flow comments
17 lines
477 B
Makefile
17 lines
477 B
Makefile
.PHONY: angular
|
|
angular:
|
|
# Test Angular2 build
|
|
cp package.json-angular2 package.json
|
|
npm install
|
|
if [ ! -e node_modules ]; then mkdir node_modules; fi
|
|
if [ ! -e node_modules/xlsx ]; then cd node_modules; ln -s ../../../ xlsx; cd -; fi
|
|
ng build
|
|
|
|
# Test Angular4 build
|
|
cp package.json-angular4 package.json
|
|
npm install
|
|
if [ ! -e node_modules ]; then mkdir node_modules; fi
|
|
if [ ! -e node_modules/xlsx ]; then cd node_modules; ln -s ../../../ xlsx; cd -; fi
|
|
ng build
|
|
|