2018-08-09 09:23:56 -04:00
|
|
|
|
#!/bin/bash
|
|
|
|
|
|
2018-08-09 08:54:20 -04:00
|
|
|
|
set -e -x
|
2018-08-09 09:23:56 -04:00
|
|
|
|
|
|
|
|
|
PATH=$PATH:$(npm bin)
|
|
|
|
|
|
2018-08-09 10:59:10 -04:00
|
|
|
|
ivy-ngcc --help
|
|
|
|
|
|
|
|
|
|
# node --inspect-brk $(npm bin)/ivy-ngcc -f esm2015
|
|
|
|
|
ivy-ngcc
|
|
|
|
|
|
2018-08-17 17:00:00 -04:00
|
|
|
|
# Did it add the appropriate build markers?
|
2018-10-03 12:00:05 -04:00
|
|
|
|
# - fesm2015
|
|
|
|
|
ls node_modules/@angular/common | grep __modified_by_ngcc_for_fesm2015
|
|
|
|
|
if [[ $? != 0 ]]; then exit 1; fi
|
|
|
|
|
# - esm2015
|
|
|
|
|
ls node_modules/@angular/common | grep __modified_by_ngcc_for_esm2015
|
|
|
|
|
if [[ $? != 0 ]]; then exit 1; fi
|
|
|
|
|
|
|
|
|
|
# Did it replace the NGCC_PRE markers correctly?
|
|
|
|
|
grep "= R3_COMPILE_COMPONENT__POST_NGCC__" node_modules/@angular/core/fesm2015/core.js
|
|
|
|
|
if [[ $? != 0 ]]; then exit 1; fi
|
|
|
|
|
grep "= R3_COMPILE_COMPONENT__POST_NGCC__" node_modules/@angular/core/fesm5/core.js
|
|
|
|
|
if [[ $? != 0 ]]; then exit 1; fi
|
|
|
|
|
|
|
|
|
|
# Did it compile @angular/core/ApplicationModule correctly?
|
|
|
|
|
grep "ApplicationModule.ngModuleDef = ɵdefineNgModule" node_modules/@angular/core/fesm2015/core.js
|
|
|
|
|
if [[ $? != 0 ]]; then exit 1; fi
|
|
|
|
|
grep "ApplicationModule.ngModuleDef = ɵdefineNgModule" node_modules/@angular/core/fesm5/core.js
|
|
|
|
|
if [[ $? != 0 ]]; then exit 1; fi
|
|
|
|
|
grep "ApplicationModule.ngModuleDef = ɵngcc0.ɵdefineNgModule" node_modules/@angular/core/esm2015/src/application_module.js
|
|
|
|
|
if [[ $? != 0 ]]; then exit 1; fi
|
|
|
|
|
grep "ApplicationModule.ngModuleDef = ɵngcc0.ɵdefineNgModule" node_modules/@angular/core/esm5/src/application_module.js
|
|
|
|
|
if [[ $? != 0 ]]; then exit 1; fi
|
|
|
|
|
|
|
|
|
|
# Can it be safely run again (as a noop)?
|
|
|
|
|
ivy-ngcc
|
2018-08-09 10:59:10 -04:00
|
|
|
|
|
2018-10-03 12:00:05 -04:00
|
|
|
|
# Now try compiling the app using the ngcc compiled libraries
|
2018-08-09 09:23:56 -04:00
|
|
|
|
ngc -p tsconfig-app.json
|
|
|
|
|
|
2018-08-17 17:00:00 -04:00
|
|
|
|
# Did it compile the main.ts correctly?
|
2018-10-03 12:00:05 -04:00
|
|
|
|
grep "directives: \[\S*\.NgIf\]" dist/src/main.js
|
|
|
|
|
if [[ $? != 0 ]]; then exit 1; fi
|