refactor(Lifecycle hooks): move the hooks to their own module (lifecycle_hooks)

BREAKING CHANGE

Lifecycle hooks now live in the `angular2/lifecycle_hooks` module.
They previously lived in the `metadata` module.
This commit is contained in:
Victor Berchet
2015-09-02 16:43:39 -07:00
parent ef88e0f804
commit 3d38ec8aac
23 changed files with 76 additions and 57 deletions
+4 -3
View File
@@ -1,4 +1,5 @@
export * from '../metadata';
export * from '../lifecycle_hooks';
export * from '../change_detection';
export * from '../core';
export * from '../di';
@@ -7,6 +8,6 @@ export * from '../forms';
export * from '../render';
export * from '../profile';
export * from '../src/web_workers/worker/application';
export * from "../src/web_workers/shared/client_message_broker";
export * from "../src/web_workers/shared/service_message_broker";
export * from "../src/web_workers/shared/serializer";
export * from '../src/web_workers/shared/client_message_broker';
export * from '../src/web_workers/shared/service_message_broker';
export * from '../src/web_workers/shared/serializer';