awesome-cordova-plugins/scripts/tasks/build-ngx.ts
Johannes Korrek 85441e59ca
feat(core): use angular ivy (#4369)
* chore(deps): bump angular and typescript

- required to enable ivy output & partial compilation mode

* chore(build): enable ivy output & partial compilation mode

- change ngx builds to use ivy
- remove some code that is no longer required with ivy
2022-10-15 18:12:20 +02:00

14 lines
239 B
TypeScript

import {
cleanupNgx,
generateLegacyBundles,
generateDeclarationFiles,
transpileNgx,
transpileNgxCore,
} from '../build/ngx';
transpileNgxCore();
transpileNgx();
generateLegacyBundles();
generateDeclarationFiles();
cleanupNgx();