sheetjs/demos/angular2/Makefile

17 lines
477 B
Makefile
Raw Normal View History

2017-06-21 23:10:36 +00:00
.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
2017-06-21 23:10:36 +00:00
ng build
# Test Angular4 build
cp package.json-angular4 package.json
2017-06-21 23:10:36 +00:00
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
2017-06-21 23:10:36 +00:00
ng build