Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed IE regressions #134

Merged
merged 5 commits into from
Jun 14, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Removed disastrously expensive text-encoding plugin
  • Loading branch information
texodus committed Jun 12, 2018
commit c44ed6a87f1368de588eaa8d4af5f0fcac82e880
1 change: 0 additions & 1 deletion packages/perspective/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
"less": "^2.7.2",
"less-loader": "^4.0.5",
"style-loader": "^0.18.2",
"text-encoding": "^0.6.4",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.5.6",
"wrap-loader": "^0.2.0"
Expand Down
5 changes: 1 addition & 4 deletions packages/perspective/src/config/common.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@ const webpack = require('webpack');

const plugins = [
new webpack.IgnorePlugin(/vertx/),
new webpack.ContextReplacementPlugin(/moment[\/\\]locale$/, /(en|es|fr)$/),
new webpack.ProvidePlugin({
TextDecoder: ['text-encoding', 'TextDecoder']
})
new webpack.ContextReplacementPlugin(/moment[\/\\]locale$/, /(en|es|fr)$/)
];

if (!process.env.PSP_NO_MINIFY && !process.env.PSP_DEBUG) {
Expand Down