Skip to content
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
1 change: 0 additions & 1 deletion packages/angular_devkit/core/src/terminal/caps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
*/
import ReadableStream = NodeJS.ReadableStream;
import WriteStream = NodeJS.WriteStream;
import Socket = NodeJS.Socket;
const supportsColor = require('../../third_party/github.com/chalk/supports-color');

/**
Expand Down
3 changes: 1 addition & 2 deletions packages/ngtools/webpack/src/diagnostics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@
* found in the LICENSE file at https://angular.io/license
*/
import {
CompilerHost, Diagnostic, Diagnostics,
Diagnostic, Diagnostics,
Program, formatDiagnostics, isNgDiagnostic,
} from '@angular/compiler-cli';
import * as ts from 'typescript';
import { time, timeEnd } from './benchmark';
import { WebpackCompilerHost } from './compiler_host';

export enum DiagnosticMode {
Syntactic = 1 << 0,
Expand Down
1 change: 0 additions & 1 deletion packages/schematics/angular/interface/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
import { strings } from '@angular-devkit/core';
import {
Rule,
SchematicsException,
Tree,
apply,
applyTemplates,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,6 @@ describe('Migration to version 9', () => {
});

describe('schematic options', () => {
function getI18NConfig(localId: string): object {
return {
outputPath: `dist/my-project/${localId}/`,
i18nFile: `src/locale/messages.${localId}.xlf`,
i18nFormat: 'xlf',
i18nLocale: localId,
};
}

it('should replace styleext with style', async () => {
const workspace = JSON.parse(tree.readContent(workspacePath));
workspace.schematics = {
Expand Down