Skip to content

Commit

Permalink
fix(git) Cleaned up issues with builds and tests that were caused by …
Browse files Browse the repository at this point in the history
…incorrectly squashing commits. This is stable.
  • Loading branch information
TheLarkInn committed Jul 14, 2016
1 parent 6e9e4ca commit 42df3a6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
2 changes: 0 additions & 2 deletions addon/ng2/models/webpack-build-common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {LoaderConfig} from '../utilities/ts-path-mappings-webpack-plugin';

const path = require('path');
const ForkCheckerPlugin = require('awesome-typescript-loader').ForkCheckerPlugin;
const PathsPlugin = require('awesome-typescript-loader').TsConfigPathsPlugin;
const CopyWebpackPlugin = require('copy-webpack-plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');

Expand All @@ -20,7 +19,6 @@ export const getWebpackCommonConfig = function(projectRoot: string) {
extensions: ['', '.ts', '.js'],
root: path.resolve(projectRoot, './src'),
plugins: [
new PathsPlugin(awesomeTypescriptLoaderConfig)
]
},
context: path.resolve(__dirname, './'),
Expand Down
5 changes: 1 addition & 4 deletions addon/ng2/models/webpack-build-material2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// .css'] => .scss']
// This allows for angular2-template-loader to transpile the sass correctly.
import * as webpack from 'webpack';
import {PathsPlugin, LoaderConfig} from '../utilities/ts-path-mappings-webpack-plugin';
import {LoaderConfig} from '../utilities/ts-path-mappings-webpack-plugin';

const path = require('path');
const ForkCheckerPlugin = require('awesome-typescript-loader').ForkCheckerPlugin;
Expand Down Expand Up @@ -53,9 +53,7 @@ export const getWebpackMaterialConfig = function(projectRoot: string) {
devtool: 'inline-source-map',
resolve: {
extensions: ['', '.webpack.js', '.web.js', '.ts', '.tsx', '.js', '.css', '.scss'],

plugins: [
new PathsPlugin(awesomeTypescriptLoaderConfig)
]
// alias: aliasMap
},
Expand Down Expand Up @@ -151,7 +149,6 @@ export const getWebpackMaterialE2EConfig = function(projectRoot: string) {
extensions: ['', '.webpack.js', '.web.js', '.ts', '.tsx', '.js', '.css', '.scss'],

plugins: [
new PathsPlugin(awesomeTypescriptLoaderConfig)
]
// alias: aliasMap
},
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@
"@types/lodash": "^4.0.25-alpha",
"@types/rimraf": "0.0.25-alpha",
"@types/webpack": "^1.12.22-alpha",
"amdefine": "^1.0.0",
"angular2-template-loader": "^0.4.0",
"awesome-typescript-loader": "2.0.1",
"awesome-typescript-loader": "1.1.1",
"chalk": "^1.1.3",
"compression-webpack-plugin": "^0.3.1",
"copy-webpack-plugin": "^3.0.1",
Expand Down

0 comments on commit 42df3a6

Please sign in to comment.