Skip to content

Commit

Permalink
Remove Google Closure Compiler
Browse files Browse the repository at this point in the history
- Seems to break things unfortunately
  • Loading branch information
jdlehman committed Oct 5, 2015
1 parent dc97cdd commit 52a3b4d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
8 changes: 1 addition & 7 deletions dist/switcheroo.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@
"phantomjs": "^1.9.18",
"react": ">=0.12.0 <0.14.0",
"sinon": "git://github.com/cjohansen/Sinon.JS#b672042043517b9f84e14ed0fb8265126168778a",
"webpack": "^1.12.2",
"webpack-closure-compiler": "^1.0.0"
"webpack": "^1.12.2"
},
"peerDependencies": {
"react": ">=0.12.0 <0.14.0"
Expand Down
4 changes: 1 addition & 3 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
var webpack = require('webpack');
var ClosureCompilerPlugin = require('webpack-closure-compiler');

module.exports = {
entry: './src/index',
Expand Down Expand Up @@ -37,7 +36,6 @@ module.exports = {
}
}),
new webpack.optimize.DedupePlugin(),
new webpack.optimize.UglifyJsPlugin(),
new ClosureCompilerPlugin()
new webpack.optimize.UglifyJsPlugin()
]
};

0 comments on commit 52a3b4d

Please sign in to comment.