Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
92bd05a4
Commit
92bd05a4
authored
Mar 30, 2022
by
Coung Ngo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Shorten JS import paths
Shorten paths for readability
parent
d31c0d1a
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
14 additions
and
15 deletions
+14
-15
app/assets/javascripts/ide/components/jobs/detail/description.vue
...ts/javascripts/ide/components/jobs/detail/description.vue
+1
-1
app/assets/javascripts/pages/admin/groups/new/index.js
app/assets/javascripts/pages/admin/groups/new/index.js
+2
-2
app/assets/javascripts/pages/projects/pipeline_schedules/shared/components/pipeline_schedules_callout.vue
...chedules/shared/components/pipeline_schedules_callout.vue
+1
-2
app/assets/javascripts/pages/projects/pipeline_schedules/shared/init_form.js
...pts/pages/projects/pipeline_schedules/shared/init_form.js
+3
-3
app/assets/javascripts/pages/projects/tags/new/index.js
app/assets/javascripts/pages/projects/tags/new/index.js
+3
-3
app/assets/javascripts/pages/projects/tree/show/index.js
app/assets/javascripts/pages/projects/tree/show/index.js
+2
-2
app/assets/javascripts/vue_shared/components/content_viewer/viewers/download_viewer.vue
...red/components/content_viewer/viewers/download_viewer.vue
+1
-1
spec/frontend/jira_connect/subscriptions/pages/sign_in_spec.js
...frontend/jira_connect/subscriptions/pages/sign_in_spec.js
+1
-1
No files found.
app/assets/javascripts/ide/components/jobs/detail/description.vue
View file @
92bd05a4
<
script
>
import
{
GlIcon
}
from
'
@gitlab/ui
'
;
import
CiIcon
from
'
../../../..
/vue_shared/components/ci_icon.vue
'
;
import
CiIcon
from
'
~
/vue_shared/components/ci_icon.vue
'
;
export
default
{
components
:
{
...
...
app/assets/javascripts/pages/admin/groups/new/index.js
View file @
92bd05a4
import
initFilePickers
from
'
~/file_pickers
'
;
import
BindInOut
from
'
../../../..
/behaviors/bind_in_out
'
;
import
Group
from
'
../../../..
/group
'
;
import
BindInOut
from
'
~
/behaviors/bind_in_out
'
;
import
Group
from
'
~
/group
'
;
(()
=>
{
BindInOut
.
initAll
();
...
...
app/assets/javascripts/pages/projects/pipeline_schedules/shared/components/pipeline_schedules_callout.vue
View file @
92bd05a4
...
...
@@ -2,8 +2,7 @@
import
{
GlButton
}
from
'
@gitlab/ui
'
;
import
Vue
from
'
vue
'
;
import
{
getCookie
,
setCookie
,
parseBoolean
}
from
'
~/lib/utils/common_utils
'
;
import
Translate
from
'
../../../../../vue_shared/translate
'
;
import
Translate
from
'
~/vue_shared/translate
'
;
Vue
.
use
(
Translate
);
...
...
app/assets/javascripts/pages/projects/pipeline_schedules/shared/init_form.js
View file @
92bd05a4
...
...
@@ -3,9 +3,9 @@ import Vue from 'vue';
import
{
__
}
from
'
~/locale
'
;
import
RefSelector
from
'
~/ref/components/ref_selector.vue
'
;
import
{
REF_TYPE_BRANCHES
,
REF_TYPE_TAGS
}
from
'
~/ref/constants
'
;
import
setupNativeFormVariableList
from
'
../../../..
/ci_variable_list/native_form_variable_list
'
;
import
GlFieldErrors
from
'
../../../..
/gl_field_errors
'
;
import
Translate
from
'
../../../..
/vue_shared/translate
'
;
import
setupNativeFormVariableList
from
'
~
/ci_variable_list/native_form_variable_list
'
;
import
GlFieldErrors
from
'
~
/gl_field_errors
'
;
import
Translate
from
'
~
/vue_shared/translate
'
;
import
intervalPatternInput
from
'
./components/interval_pattern_input.vue
'
;
import
TimezoneDropdown
from
'
./components/timezone_dropdown
'
;
...
...
app/assets/javascripts/pages/projects/tags/new/index.js
View file @
92bd05a4
import
$
from
'
jquery
'
;
import
GLForm
from
'
../../../..
/gl_form
'
;
import
RefSelectDropdown
from
'
../../../..
/ref_select_dropdown
'
;
import
ZenMode
from
'
../../../..
/zen_mode
'
;
import
GLForm
from
'
~
/gl_form
'
;
import
RefSelectDropdown
from
'
~
/ref_select_dropdown
'
;
import
ZenMode
from
'
~
/zen_mode
'
;
new
ZenMode
();
// eslint-disable-line no-new
new
GLForm
(
$
(
'
.tag-form
'
));
// eslint-disable-line no-new
...
...
app/assets/javascripts/pages/projects/tree/show/index.js
View file @
92bd05a4
import
$
from
'
jquery
'
;
import
initTree
from
'
ee_else_ce/repository
'
;
import
initBlob
from
'
~/blob_edit/blob_bundle
'
;
import
ShortcutsNavigation
from
'
../../../..
/behaviors/shortcuts/shortcuts_navigation
'
;
import
NewCommitForm
from
'
../../../..
/new_commit_form
'
;
import
ShortcutsNavigation
from
'
~
/behaviors/shortcuts/shortcuts_navigation
'
;
import
NewCommitForm
from
'
~
/new_commit_form
'
;
new
NewCommitForm
(
$
(
'
.js-create-dir-form
'
));
// eslint-disable-line no-new
initBlob
();
...
...
app/assets/javascripts/vue_shared/components/content_viewer/viewers/download_viewer.vue
View file @
92bd05a4
<
script
>
import
{
GlIcon
}
from
'
@gitlab/ui
'
;
import
{
numberToHumanSize
}
from
'
../../../..
/lib/utils/number_utils
'
;
import
{
numberToHumanSize
}
from
'
~
/lib/utils/number_utils
'
;
export
default
{
components
:
{
...
...
spec/frontend/jira_connect/subscriptions/pages/sign_in_spec.js
View file @
92bd05a4
...
...
@@ -5,7 +5,7 @@ import SignInLegacyButton from '~/jira_connect/subscriptions/components/sign_in_
import
SignInOauthButton
from
'
~/jira_connect/subscriptions/components/sign_in_oauth_button.vue
'
;
import
SubscriptionsList
from
'
~/jira_connect/subscriptions/components/subscriptions_list.vue
'
;
import
createStore
from
'
~/jira_connect/subscriptions/store
'
;
import
{
I18N_DEFAULT_SIGN_IN_BUTTON_TEXT
}
from
'
../../../../../app/assets/javascripts
/jira_connect/subscriptions/constants
'
;
import
{
I18N_DEFAULT_SIGN_IN_BUTTON_TEXT
}
from
'
~
/jira_connect/subscriptions/constants
'
;
jest
.
mock
(
'
~/jira_connect/subscriptions/utils
'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment