summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/protected_branches
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2017-05-16 15:52:40 -0500
committerMike Greiling <mike@pixelcog.com>2017-05-16 15:52:40 -0500
commit5bd549187aa68604d320e3d0c1a51ee4ed34c0e3 (patch)
tree4f121959a46a895d67963919f549507947a305a5 /app/assets/javascripts/protected_branches
parentf5ad1dcbf88dc69254fe86be2fd6b20fead308c0 (diff)
downloadgitlab-ce-5bd549187aa68604d320e3d0c1a51ee4ed34c0e3.tar.gz
update remaining uses of CJS syntax to ES module syntax
Diffstat (limited to 'app/assets/javascripts/protected_branches')
-rw-r--r--app/assets/javascripts/protected_branches/protected_branches_bundle.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/assets/javascripts/protected_branches/protected_branches_bundle.js b/app/assets/javascripts/protected_branches/protected_branches_bundle.js
index 849c1e31623..874d70a1431 100644
--- a/app/assets/javascripts/protected_branches/protected_branches_bundle.js
+++ b/app/assets/javascripts/protected_branches/protected_branches_bundle.js
@@ -1,5 +1,5 @@
-require('./protected_branch_access_dropdown');
-require('./protected_branch_create');
-require('./protected_branch_dropdown');
-require('./protected_branch_edit');
-require('./protected_branch_edit_list');
+import './protected_branch_access_dropdown';
+import './protected_branch_create';
+import './protected_branch_dropdown';
+import './protected_branch_edit';
+import './protected_branch_edit_list';