index.d.ts 760B

123456789101112131415161718192021
  1. export { build } from './build';
  2. export { bundle, bundleUpdate } from './bundle';
  3. export { clean } from './clean';
  4. export { cleancss } from './cleancss';
  5. export { copy, copyUpdate } from './copy';
  6. export { lint } from './lint';
  7. export { minify } from './minify';
  8. export { ngc } from './ngc';
  9. export { sass, sassUpdate } from './sass';
  10. export { serve } from './serve';
  11. export { transpile } from './transpile';
  12. export { uglifyjs } from './uglifyjs';
  13. export { watch, buildUpdate } from './watch';
  14. export * from './util/config';
  15. export * from './util/helpers';
  16. export * from './util/interfaces';
  17. export * from './util/constants';
  18. export * from './generators';
  19. export { getDeepLinkData } from './deep-linking/util';
  20. export declare function run(task: string): void;