From d840f1a2cf7a05799e06f114512f856994058123 Mon Sep 17 00:00:00 2001 From: Andrew Koroluk Date: Mon, 8 Aug 2016 12:12:56 -0400 Subject: [PATCH] fix(webpack): fix peerDependencies for css loaders fixes #2130 --- templates/app/_package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/app/_package.json b/templates/app/_package.json index 2cf545b61..c2da6a15d 100644 --- a/templates/app/_package.json +++ b/templates/app/_package.json @@ -131,10 +131,13 @@ "raw-loader": "^0.5.1", "style-loader": "^0.13.0", <%_ if(filters.sass) { _%> + "node-sass": "^3.8.0", "sass-loader": "^3.1.1",<% } %> <%_ if(filters.less) { _%> + "less": "^2.7.1", "less-loader": "^2.2.3",<% } %> <%_ if(filters.stylus) { _%> + "stylus": "^0.54.5", "stylus-loader": "^2.1.1",<% } %> "karma-webpack": "^1.7.0", <%# END WEBPACK %>