refactor(core): move directives, pipes, and forms into common

BREAKING CHANGE

All private exports from 'angular2/src/core/{directives,pipes,forms}' should be replaced with 'angular2/src/common/{directives,pipes,formis}'

Closes #5153
This commit is contained in:
vsavkin
2015-11-05 14:58:24 -08:00
committed by Victor Savkin
parent 6edd964a83
commit 695923dcd6
82 changed files with 166 additions and 147 deletions
+3 -3
View File
@@ -2,7 +2,7 @@ export * from '../lifecycle_hooks';
export * from '../src/core/metadata';
export * from '../src/core/util';
export * from '../src/core/di';
export * from '../src/core/pipes';
export * from '../src/common/pipes';
export * from '../src/core/facade';
// Do not export application in web_worker,
// web_worker exports its own
@@ -32,8 +32,8 @@ export {
RenderEmbeddedTemplateCmd,
RenderBeginCmd
} from '../src/core/render/render';
export * from '../src/core/directives';
export * from '../src/core/forms';
export * from '../src/common/directives';
export * from '../src/common/forms';
export * from '../src/core/debug';
export * from '../src/core/change_detection';