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

webpack 4 upgrade #16

Merged
Merged
Changes from all commits
Commits
File filter
Filter file types
Jump to
Jump to file
Failed to load files.

Always

Just for now

@@ -39,7 +39,7 @@ const mapStateToProps = (state, ownProps) => Object.assign({}, state.panel, stat
* @return {function} to be used as an argument in redux connect call
*/
const mapDispatchToProps = (dispatch, ownProps) => ({
actions: bindActionCreators(Object.assign(panelActions, { filterTrackers }), dispatch),
actions: bindActionCreators(Object.assign({}, panelActions, { filterTrackers }), dispatch),
});
/**
* Connects Panel component to the Redux store. Pass updated match, location, and history props to the wrapped component.
@@ -22,7 +22,6 @@
<div id="ghostery-app">
<div id="ghostery-content"></div>
</div>
<script src="../../dist/vendor-panel.js"></script>
<script src="../../dist/panel_react.js"></script>
</body>
</html>
@@ -80,8 +80,6 @@
],
"background": {
"scripts": [
"dist/vendor.js",
"dist/browser-core.js",
"dist/background.js"
],
"persistent": true
ProTip! Use n and p to navigate between commits in a pull request.