awesome-cordova-plugins/scripts/tasks/build-ngx.ts

14 lines
224 B
TypeScript
Raw Normal View History

2018-03-23 17:57:54 +08:00
import {
cleanupNgx,
generateDeclarationFiles,
modifyMetadata,
transpileNgx,
transpileNgxCore
} from '../build/ngx';
2017-12-28 20:28:44 +08:00
transpileNgxCore();
transpileNgx();
generateDeclarationFiles();
modifyMetadata();
cleanupNgx();