Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2018-04-14 02:27:16 +0300
committerMike Greiling <mike@pixelcog.com>2018-04-23 08:54:20 +0300
commit0b932a7fcb421056f6f43e12030ffefa0ed50a1e (patch)
tree4daf48bf80613fa08cc1637d3a42888b19fc3962 /app/assets/javascripts/ide/stores/actions.js
parent4d828eae20c501ffb87802ec5a1fcc2d7ad7f345 (diff)
add default exports to prevent rewire plugin from breaking vuex
Diffstat (limited to 'app/assets/javascripts/ide/stores/actions.js')
-rw-r--r--app/assets/javascripts/ide/stores/actions.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/assets/javascripts/ide/stores/actions.js b/app/assets/javascripts/ide/stores/actions.js
index cecb4d215ba..fc1b1f0f164 100644
--- a/app/assets/javascripts/ide/stores/actions.js
+++ b/app/assets/javascripts/ide/stores/actions.js
@@ -141,3 +141,6 @@ export * from './actions/tree';
export * from './actions/file';
export * from './actions/project';
export * from './actions/merge_request';
+
+// prevent babel-plugin-rewire from generating an invalid default during karma tests
+export default () => {};