Skip to content

build: migrate to use the new layout of the @angular/dev-infra-private package #23366

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ng-dev/caretaker.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {CaretakerConfig} from '@angular/dev-infra-private/caretaker/config';
import {CaretakerConfig} from '@angular/dev-infra-private/ng-dev/caretaker/config';

/** The configuration for `ng-dev caretaker` commands. */
export const caretaker: CaretakerConfig = {
Expand Down
2 changes: 1 addition & 1 deletion .ng-dev/commit-message.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {CommitMessageConfig} from '@angular/dev-infra-private/commit-message/config';
import {CommitMessageConfig} from '@angular/dev-infra-private/ng-dev/commit-message/config';

/**
* The configuration for `ng-dev commit-message` commands.
Expand Down
2 changes: 1 addition & 1 deletion .ng-dev/format.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {FormatConfig} from '@angular/dev-infra-private/format/config';
import {FormatConfig} from '@angular/dev-infra-private/ng-dev/format/config';

/**
* Configuration for the ng-dev format command. We currently only use the buildifier
Expand Down
5 changes: 3 additions & 2 deletions .ng-dev/github.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import {GithubConfig} from '@angular/dev-infra-private/utils/config';
import {GithubConfig} from '@angular/dev-infra-private/ng-dev/utils/config';

/**
* Github configuration for the ng-dev command. This repository is
* uses as remote for the merge script.
*/
export const github: GithubConfig = {
owner: 'angular',
name: 'components'
name: 'components',
mainBranchName: 'master',
};
4 changes: 2 additions & 2 deletions .ng-dev/merge.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {DevInfraMergeConfig} from '@angular/dev-infra-private/pr/merge/config';
import {getDefaultTargetLabelConfiguration} from '@angular/dev-infra-private/pr/merge/defaults';
import {DevInfraMergeConfig} from '@angular/dev-infra-private/ng-dev/pr/merge/config';
import {getDefaultTargetLabelConfiguration} from '@angular/dev-infra-private/ng-dev/pr/merge/defaults';
import {github} from './github';
import {release} from './release';

Expand Down
8 changes: 5 additions & 3 deletions .ng-dev/release.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import {BuiltPackage, ReleaseConfig} from '@angular/dev-infra-private/release/config';
import {ReleaseAction} from '@angular/dev-infra-private/release/publish/actions';
import {BuiltPackage, ReleaseConfig} from '@angular/dev-infra-private/ng-dev/release/config';
import {ReleaseAction} from '@angular/dev-infra-private/ng-dev/release/publish/actions';
import {SemVer} from 'semver';
import {assertValidNpmPackageOutput} from '../tools/release-checks/npm-package-output';
import {fork} from 'child_process';
import {join} from 'path';
import {FatalReleaseActionError} from '@angular/dev-infra-private/release/publish/actions-error';
import {
FatalReleaseActionError
} from '@angular/dev-infra-private/ng-dev/release/publish/actions-error';

const actionProto = ReleaseAction.prototype as any;
const _origStageFn = actionProto.stageVersionForBranchAndCreatePullRequest;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"@angular-devkit/schematics": "12.1.2",
"@angular/bazel": "https://github.com/angular/bazel-builds.git#2566cc859235399edc72749a957f1cdcba2dc121",
"@angular/compiler-cli": "12.1.2",
"@angular/dev-infra-private": "https://github.com/angular/dev-infra-private-builds.git#0057daca63205a10c26256b6733b02af835497c0",
"@angular/dev-infra-private": "https://github.com/angular/dev-infra-private-builds.git#a3bc7727bbceb6418e7b220900ea8b396cb82580",
"@angular/localize": "12.1.2",
"@angular/platform-browser-dynamic": "12.1.2",
"@angular/platform-server": "12.1.2",
Expand Down
2 changes: 1 addition & 1 deletion scripts/build-packages-dist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import {execSync} from 'child_process';
import {join} from 'path';
import {BuiltPackage} from '@angular/dev-infra-private/release/config';
import {BuiltPackage} from '@angular/dev-infra-private/ng-dev/release/config';
import {chmod, cp, mkdir, rm, set, test} from 'shelljs';

// ShellJS should exit if a command fails.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("//tools:defaults.bzl", "ng_test_library", "ng_web_test_suite", "ts_library")

package(default_visibility = ["//visibility:public"])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* found in the LICENSE file at https://angular.io/license
*/

import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';
import {USE_BENCHPRESS} from './constants';

/**
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/button/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/button/button.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

describe('button performance benchmarks', () => {
beforeAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/card/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/card/card.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

describe('card performance benchmarks', () => {
beforeAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/checkbox/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/checkbox/checkbox.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

describe('checkbox performance benchmarks', () => {
beforeAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/chips/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/chips/chips.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

describe('chip performance benchmarks', () => {
beforeAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/form-field/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

function runFormFieldRenderBenchmark(testId: string, showBtnId: string) {
return runBenchmark({
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/menu/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/menu/menu.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, by, element, ElementFinder, Key} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

// Clicking to close a menu is problematic. This is a solution that uses `.sendKeys()` avoids
// issues with `.click()`.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/radio/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/radio/radio.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

describe('radio button performance benchmarks', () => {
beforeAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/slide-toggle/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

describe('slide toggle performance benchmarks', () => {
beforeAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/table/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

component_benchmark(
name = "benchmark",
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/table/table.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

function runTableRenderBenchmark(testId: string, buttonId: string) {
return runBenchmark({
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/tabs/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/material/tabs/tabs.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser, ElementFinder} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

describe('tabs performance benchmarks', () => {
beforeAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/button/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/button/button.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

describe('button performance benchmarks', () => {
beforeAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/card/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/card/card.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

describe('card performance benchmarks', () => {
beforeAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/checkbox/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/checkbox/checkbox.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

describe('checkbox performance benchmarks', () => {
beforeAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/chips/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/chips/chips.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

async function runRenderBenchmark(testId: string, showBtnId: string) {
return runBenchmark({
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/form-field/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/form-field/form-field.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

function runFormFieldRenderBenchmark(testId: string, showBtnId: string) {
return runBenchmark({
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/menu/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/menu/menu.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, by, element, ElementFinder, Key} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

// Clicking to close a menu is problematic. This is a solution that uses `.sendKeys()` avoids
// issues with `.click()`.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/radio/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/radio/radio.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

describe('radio button performance benchmarks', () => {
beforeAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/slide-toggle/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

describe('slide toggle performance benchmarks', () => {
beforeAll(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/table/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

component_benchmark(
name = "benchmark",
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/table/table.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

function runTableRenderBenchmark(testId: string, buttonId: string) {
return runBenchmark({
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/tabs/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@npm//@angular/dev-infra-private/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")
load("@npm//@angular/dev-infra-private/bazel/benchmark/component_benchmark:component_benchmark.bzl", "component_benchmark")

# TODO(wagnermaciel): Update this target to provide indigo-pink in a way that doesn't require having to import it with
# stylesUrls inside the components once `component_benchmark` supports asset injection.
Expand Down
2 changes: 1 addition & 1 deletion test/benchmarks/mdc/tabs/tabs.perf-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/

import {$, browser, ElementFinder} from 'protractor';
import {runBenchmark} from '@angular/dev-infra-private/benchmark/driver-utilities';
import {runBenchmark} from '@angular/dev-infra-private/bazel/benchmark/driver-utilities';

describe('tabs performance benchmarks', () => {
beforeAll(() => {
Expand Down
6 changes: 4 additions & 2 deletions tools/release-checks/check-framework-peer-dependency.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import {FatalReleaseActionError} from '@angular/dev-infra-private/release/publish/actions-error';
import {error} from '@angular/dev-infra-private/utils/console';
import {
FatalReleaseActionError
} from '@angular/dev-infra-private/ng-dev/release/publish/actions-error';
import {error} from '@angular/dev-infra-private/ng-dev/utils/console';
import {SemVer} from 'semver';
import {join} from 'path';
import {existsSync, readFileSync} from 'fs';
Expand Down
Loading