We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76f85ba commit 2de2e01Copy full SHA for 2de2e01
client-src/transpiled-modules/SyncBailHookFake.js
@@ -0,0 +1,10 @@
1
+'use strict';
2
+
3
+/**
4
+ * Client stub for tapable SyncBailHook
5
+ */
6
+module.exports = function clientTapableSyncBailHook() {
7
+ return {
8
+ call() {},
9
+ };
10
+};
client-src/transpiled-modules/webpack.config.js
@@ -23,6 +23,12 @@ const base = {
23
},
24
],
25
26
+ plugins: [
27
+ new webpack.NormalModuleReplacementPlugin(
28
+ /^tapable\/lib\/SyncBailHook/,
29
+ path.join(__dirname, 'SyncBailHookFake.js')
30
+ ),
31
+ ],
32
};
33
34
module.exports = [
0 commit comments