Skip to content

Commit e06b3e3

Browse files
committed
chore(speed): require each modules separately.
1 parent 6a4cc1a commit e06b3e3

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

packages/angular-cli/models/webpack-config.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ import {
44
} from './webpack-build-typescript';
55
const webpackMerge = require('webpack-merge');
66
import { CliConfig } from './config';
7+
import { getWebpackCommonConfig } from './webpack-build-common';
8+
import { getWebpackDevConfigPartial } from './webpack-build-development';
9+
import { getWebpackProdConfigPartial } from './webpack-build-production';
710
import {
8-
getWebpackCommonConfig,
9-
getWebpackDevConfigPartial,
10-
getWebpackProdConfigPartial,
1111
getWebpackMobileConfigPartial,
1212
getWebpackMobileProdConfigPartial
13-
} from './';
13+
} from './webpack-build-mobile';
14+
1415

1516
export class NgCliWebpackConfig {
1617
// TODO: When webpack2 types are finished lets replace all these any types

0 commit comments

Comments
 (0)