cleanup(core): stop reexporting angular2/common from angular2/core

All common directives, forms, and pipes have been moved out of angular2/core,
but we kept reexporting them to make transition easier.

This commit removes the reexports.

BREAKING CHANGE

Before

import {NgIf} from 'angular2/core';

After

import {NgIf} from 'angular2/common';

Closes #5362
This commit is contained in:
vsavkin
2015-11-18 15:55:43 -08:00
committed by Victor Savkin
parent 36a423fac8
commit 5ba9ced1ab
71 changed files with 185 additions and 222 deletions

View File

@ -14,7 +14,8 @@ import {
TestComponentBuilder
} from 'angular2/testing';
import {Injectable, NgIf, bind} from 'angular2/core';
import {Injectable, bind} from 'angular2/core';
import {NgIf} from 'angular2/common';
import {Directive, Component, View, ViewMetadata} from 'angular2/angular2';
import {XHR} from 'angular2/src/compiler/xhr';
import {XHRImpl} from 'angular2/src/platform/browser/xhr_impl';