chore(packaging): update import for the new file structure
This commit is contained in:
@ -2,11 +2,12 @@ name: benchmarks_external
|
||||
environment:
|
||||
sdk: '>=1.4.0'
|
||||
dependencies:
|
||||
e2e_test_lib:
|
||||
path: ../e2e_test_lib
|
||||
angular: '>=1.0.0 <2.0.0'
|
||||
browser: '>=0.10.0 <0.11.0'
|
||||
fixnum: '>=0.9.0 <1.0.0'
|
||||
dev_dependencies:
|
||||
angular2:
|
||||
path: ../angular2
|
||||
transformers:
|
||||
- angular:
|
||||
html_files:
|
||||
|
@ -4,7 +4,7 @@ library compiler_benchmark_ng10;
|
||||
import 'package:angular/angular.dart';
|
||||
import 'package:angular/application_factory.dart';
|
||||
import 'dart:html';
|
||||
import 'package:e2e_test_lib/src/benchmark_util.dart';
|
||||
import 'package:angular2/src/test_lib/benchmark_util.dart';
|
||||
|
||||
main() {
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// compiler benchmark in AngularJS 1.x
|
||||
import {getIntParameter, bindAction} from 'e2e_test_lib/src/benchmark_util';
|
||||
import {getIntParameter, bindAction} from 'angular2/src/test_lib/benchmark_util';
|
||||
|
||||
export function main() {
|
||||
var ngEl = document.createElement('div');
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {getIntParameter, getStringParameter, bindAction} from 'e2e_test_lib/src/benchmark_util';
|
||||
import {getIntParameter, getStringParameter, bindAction} from 'angular2/src/test_lib/benchmark_util';
|
||||
|
||||
var totalRows = getIntParameter('rows');
|
||||
var totalColumns = getIntParameter('columns');
|
||||
|
@ -3,7 +3,7 @@ library scroll_app;
|
||||
import 'dart:async';
|
||||
import 'dart:html';
|
||||
import 'package:angular/angular.dart';
|
||||
import 'package:e2e_test_lib/src/benchmark_util.dart';
|
||||
import 'package:angular2/src/test_lib/benchmark_util.dart';
|
||||
|
||||
@Component(
|
||||
selector: 'scroll-app',
|
||||
|
@ -4,7 +4,7 @@ library tree_benchmark_ng10;
|
||||
import 'package:angular/angular.dart';
|
||||
import 'package:angular/application_factory.dart';
|
||||
import 'dart:html';
|
||||
import 'package:e2e_test_lib/src/benchmark_util.dart';
|
||||
import 'package:angular2/src/test_lib/benchmark_util.dart';
|
||||
|
||||
setup() {
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
// tree benchmark in AngularJS 1.x
|
||||
import {getIntParameter, bindAction} from 'e2e_test_lib/src/benchmark_util';
|
||||
import {getIntParameter, bindAction} from 'angular2/src/test_lib/benchmark_util';
|
||||
|
||||
export function main() {
|
||||
angular.bootstrap(document.querySelector('tree'), ['app']);
|
||||
|
Reference in New Issue
Block a user