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
22856474
Commit
22856474
authored
Mar 21, 2017
by
Mike Greiling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move common vue script to vue_shared directory
parent
32935bc9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
4 deletions
+2
-4
app/assets/javascripts/vue_shared/common_vue.js
app/assets/javascripts/vue_shared/common_vue.js
+1
-3
config/webpack.config.js
config/webpack.config.js
+1
-1
No files found.
app/assets/javascripts/
commons/
vue.js
→
app/assets/javascripts/
vue_shared/common_
vue.js
View file @
22856474
import
Vue
from
'
vue
'
;
import
VueResource
from
'
vue-resource
'
;
Vue
.
use
(
VueResource
);
import
'
./vue_resource_interceptor
'
;
if
(
process
.
env
.
NODE_ENV
!==
'
production
'
)
{
Vue
.
config
.
productionTip
=
false
;
...
...
config/webpack.config.js
View file @
22856474
...
...
@@ -18,7 +18,7 @@ var config = {
context
:
path
.
join
(
ROOT_PATH
,
'
app/assets/javascripts
'
),
entry
:
{
common
:
'
./commons/index.js
'
,
common_vue
:
'
./commons/vue.js
'
,
common_vue
:
[
'
vue
'
,
'
./vue_shared/common_vue.js
'
]
,
common_d3
:
[
'
d3
'
],
main
:
'
./main.js
'
,
blob_edit
:
'
./blob_edit/blob_edit_bundle.js
'
,
...
...
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