chore(benchpress): make benchpress compile
Also adds compiling benchpress to the build scripts to verify that.
This commit is contained in:

committed by
Alex Rickabaugh

parent
c8d53d71a3
commit
3fcd6fd93f
@ -1,9 +1,9 @@
|
||||
import {bootstrap} from '@angular/platform-browser';
|
||||
import {BrowserDomAdapter} from '@angular/platform-browser/src/browser/browser_adapter';
|
||||
import {DOM} from '@angular/platform-browser/src/dom/dom_adapter';
|
||||
import {PromiseWrapper} from '@angular/facade';
|
||||
import {ListWrapper, Map, MapWrapper} from '@angular/facade';
|
||||
import {DateWrapper, Type, print, isPresent} from '@angular/facade';
|
||||
import {PromiseWrapper} from '@angular/facade/src/async';
|
||||
import {ListWrapper, Map, MapWrapper} from '@angular/facade/src/collection';
|
||||
import {DateWrapper, Type, print, isPresent} from '@angular/facade/src/lang';
|
||||
|
||||
import {
|
||||
ComponentResolver,
|
||||
|
@ -1,6 +1,6 @@
|
||||
import {SelectorMatcher} from '@angular/compiler/src/selector';
|
||||
import {CssSelector} from '@angular/compiler/src/selector';
|
||||
import {StringWrapper, Math} from '@angular/facade';
|
||||
import {StringWrapper, Math} from '@angular/facade/lang';
|
||||
import {getIntParameter, bindAction} from '@angular/testing/src/benchmark_util';
|
||||
import {BrowserDomAdapter} from '@angular/platform-browser/src/browser/browser_adapter';
|
||||
|
||||
|
@ -2,7 +2,7 @@ import {bootstrap} from '@angular/platform-browser';
|
||||
import {Component, Directive, DynamicComponentLoader, ViewContainerRef} from '@angular/core';
|
||||
import {NgIf, NgFor} from '@angular/common';
|
||||
import {ApplicationRef} from '@angular/core/src/application_ref';
|
||||
import {ListWrapper} from '@angular/facade';
|
||||
import {ListWrapper} from '@angular/facade/src/lang';
|
||||
import {getIntParameter, bindAction} from '@angular/testing/src/benchmark_util';
|
||||
|
||||
var testList = null;
|
||||
|
@ -1,5 +1,5 @@
|
||||
import {DOM} from '@angular/platform-browser/src/dom/dom_adapter';
|
||||
import {window, document, gc} from '@angular/facade';
|
||||
import {window, document, gc} from '@angular/facade/src/browser';
|
||||
import {
|
||||
getIntParameter,
|
||||
getStringParameter,
|
||||
@ -13,7 +13,7 @@ import {NgFor, NgSwitch, NgSwitchWhen, NgSwitchDefault} from '@angular/common';
|
||||
import {ApplicationRef} from '@angular/core/src/application_ref';
|
||||
import {BrowserDomAdapter} from '@angular/platform-browser/src/browser/browser_adapter';
|
||||
|
||||
import {ListWrapper} from '@angular/facade';
|
||||
import {ListWrapper} from '@angular/facade/src/collection';
|
||||
|
||||
import {Inject} from '@angular/core/src/di/decorators';
|
||||
import {reflector} from '@angular/core/src/reflection/reflection';
|
||||
|
@ -1,10 +1,10 @@
|
||||
import {isPresent} from '@angular/facade';
|
||||
import {isPresent} from '@angular/facade/src/lang';
|
||||
import {getIntParameter, bindAction} from '@angular/testing/src/benchmark_util';
|
||||
import {TimerWrapper} from '@angular/facade';
|
||||
import {TimerWrapper} from '@angular/facade/src/async';
|
||||
import {ScrollAreaComponent} from './scroll_area';
|
||||
import {NgIf, NgFor} from '@angular/common';
|
||||
import {DOM} from '@angular/platform-browser/src/dom/dom_adapter';
|
||||
import {document} from '@angular/facade';
|
||||
import {document} from '@angular/facade/src/browser';
|
||||
|
||||
import {Component, Directive} from '@angular/core';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {ListWrapper, Map} from '@angular/facade';
|
||||
import {ListWrapper, Map} from '@angular/facade/src/collection';
|
||||
import {Company, Opportunity, Offering, Account, CustomDate, STATUS_LIST} from './common';
|
||||
import {NgFor} from '@angular/common';
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
import {Math} from '@angular/facade';
|
||||
import {StringWrapper} from '@angular/facade';
|
||||
import {ListWrapper, Map, MapWrapper} from '@angular/facade';
|
||||
import {Math} from '@angular/facade/src/math';
|
||||
import {StringWrapper} from '@angular/facade/src/lang';
|
||||
import {ListWrapper, Map, MapWrapper} from '@angular/facade/src/collection';
|
||||
|
||||
export var ITEMS = 1000;
|
||||
export var ITEM_HEIGHT = 40;
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {StringWrapper} from '@angular/facade';
|
||||
import {StringWrapper} from '@angular/facade/src/lang';
|
||||
import {
|
||||
CustomDate,
|
||||
Offering,
|
||||
|
@ -1,5 +1,5 @@
|
||||
import {ListWrapper} from '@angular/facade';
|
||||
import {Math} from '@angular/facade';
|
||||
import {ListWrapper} from '@angular/facade/src/collection';
|
||||
import {Math} from '@angular/facade/src/math';
|
||||
|
||||
import {Component, Directive} from '@angular/core';
|
||||
|
||||
|
@ -5,7 +5,7 @@ import {ApplicationRef} from '@angular/core/src/application_ref';
|
||||
import {reflector} from '@angular/core/src/reflection/reflection';
|
||||
import {ReflectionCapabilities} from '@angular/core/src/reflection/reflection_capabilities';
|
||||
import {DOM} from '@angular/platform-browser/src/dom/dom_adapter';
|
||||
import {window, document, gc} from '@angular/facade';
|
||||
import {window, document, gc} from '@angular/facade/src/browser';
|
||||
import {
|
||||
getIntParameter,
|
||||
getStringParameter,
|
||||
|
@ -7,8 +7,8 @@ import {NgIf} from '@angular/common';
|
||||
|
||||
import {ApplicationRef} from '@angular/core/src/application_ref';
|
||||
import {DOM} from '@angular/platform-browser/src/dom/dom_adapter';
|
||||
import {isPresent} from '@angular/facade';
|
||||
import {window, document, gc} from '@angular/facade';
|
||||
import {isPresent} from '@angular/facade/src/lang';
|
||||
import {window, document, gc} from '@angular/facade/src/browser';
|
||||
import {
|
||||
getIntParameter,
|
||||
getStringParameter,
|
||||
|
Reference in New Issue
Block a user