Skip to content

Commit

Permalink
refactor: remove ng-dev deep imports
Browse files Browse the repository at this point in the history
These symbols are now exported from the primary entry-point.
  • Loading branch information
alan-agius4 authored and dgp1130 committed Mar 1, 2022
1 parent 38a9d9e commit f8765cc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ng-dev/commit-message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
COMMIT_TYPES,
CommitMessageConfig,
ScopeRequirement,
} from '@angular/dev-infra-private/ng-dev/commit-message/config';
} from '@angular/dev-infra-private/ng-dev';
import { packages } from '../lib/packages';

/**
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/ng-dev/format/config';
import { FormatConfig } from '@angular/dev-infra-private/ng-dev';

/**
* Configuration for the `ng-dev format` command.
Expand Down
2 changes: 1 addition & 1 deletion .ng-dev/github.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { GithubConfig } from '@angular/dev-infra-private/ng-dev/utils/config';
import { GithubConfig } from '@angular/dev-infra-private/ng-dev';

/**
* Github configuration for the ng-dev command. This repository is
Expand Down
2 changes: 1 addition & 1 deletion .ng-dev/pull-request.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { PullRequestConfig } from '@angular/dev-infra-private/ng-dev/pr/config';
import { PullRequestConfig } from '@angular/dev-infra-private/ng-dev';

/**
* Configuration for the merge tool in `ng-dev`. This sets up the labels which
Expand Down
2 changes: 1 addition & 1 deletion .ng-dev/release.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import '../lib/bootstrap-local';

import { ReleaseConfig } from '@angular/dev-infra-private/ng-dev/release/config';
import { ReleaseConfig } from '@angular/dev-infra-private/ng-dev';
import { releasePackages } from '../lib/packages';
import buildPackages from '../scripts/build';

Expand Down

0 comments on commit f8765cc

Please sign in to comment.