Skip to content

Commit

Permalink
refactor(@angular-devkit/build-angular): move karma plugin in own folder
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-agius4 authored and clydin committed Jan 15, 2021
1 parent 7981d9f commit e368b2f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/angular_devkit/build_angular/plugins/karma.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
* found in the LICENSE file at https://angular.io/license
*/

module.exports = require('../src/webpack/plugins/karma');
module.exports = require('../src/webpack/plugins/karma/karma');
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ import * as webpack from 'webpack';
const webpackDevMiddleware = require('webpack-dev-middleware');

import { KarmaWebpackFailureCb } from './karma-webpack-failure-cb';
import { statsErrorsToString } from '../utils/stats';
import { getWebpackStatsConfig } from '../configs/stats';
import { statsErrorsToString } from '../../utils/stats';
import { getWebpackStatsConfig } from '../../configs/stats';
import { createConsoleLogger } from '@angular-devkit/core/node';
import { logging } from '@angular-devkit/core';
import { WebpackTestOptions } from '../../utils/build-options';
import { normalizeSourceMaps } from '../../utils/index';
import { WebpackTestOptions } from '../../../utils/build-options';
import { normalizeSourceMaps } from '../../../utils/index';

/**
* Enumerate needed (but not require/imported) dependencies from this file
Expand Down

0 comments on commit e368b2f

Please sign in to comment.