Unverified Commit 397f27da authored by Robert Knight's avatar Robert Knight Committed by GitHub

Merge pull request #1087 from hypothesis/mockable-imports-part-4

Convert mocking to mockable imports (4/4)
parents cc58249b e35e78b4
...@@ -92,9 +92,6 @@ ...@@ -92,9 +92,6 @@
"postcss-url": "^8.0.0", "postcss-url": "^8.0.0",
"preact": "10.0.0-beta.0", "preact": "10.0.0-beta.0",
"prettier": "1.17.0", "prettier": "1.17.0",
"proxyquire": "^2.1.0",
"proxyquire-universal": "^2.1.0",
"proxyquireify": "^3.2.1",
"query-string": "^3.0.1", "query-string": "^3.0.1",
"raf": "^3.1.0", "raf": "^3.1.0",
"raven-js": "^3.7.0", "raven-js": "^3.7.0",
......
...@@ -73,10 +73,6 @@ module.exports = function(config) { ...@@ -73,10 +73,6 @@ module.exports = function(config) {
browserify: { browserify: {
debug: true, debug: true,
extensions: ['.coffee'], extensions: ['.coffee'],
configure: function(bundle) {
bundle.plugin('proxyquire-universal');
},
transform: [ transform: [
'coffeeify', 'coffeeify',
[ [
......
...@@ -13,13 +13,6 @@ ...@@ -13,13 +13,6 @@
*/ */
const Raven = require('raven-js'); const Raven = require('raven-js');
// This is only used in apps where Angular is used,
// but is required globally due to
// https://github.com/thlorenz/proxyquireify/issues/40
//
// Fortunately it does not pull in Angular as a dependency but returns
// a function that takes it as an input argument.
const angularPlugin = require('raven-js/plugins/angular'); const angularPlugin = require('raven-js/plugins/angular');
/** /**
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment