diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2017-05-26 11:56:54 +0100 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2017-05-26 11:57:40 +0100 |
commit | cad686cc30309532ebf9a81ad37a60a98c84577c (patch) | |
tree | 13841b1347c190a46ab70f9a4ccaef20fe7a728b /config | |
parent | 8e2fefc6c44fc3c6140e5cbc4b56c58c90dc07f3 (diff) | |
download | gitlab-ce-cad686cc30309532ebf9a81ad37a60a98c84577c.tar.gz |
Creates a mediator for pipeline details vue in order to mount several vue apps with the same data
Diffstat (limited to 'config')
-rw-r--r-- | config/webpack.config.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js index 42024739fe9..d6b92ced402 100644 --- a/config/webpack.config.js +++ b/config/webpack.config.js @@ -23,6 +23,7 @@ var config = { }, context: path.join(ROOT_PATH, 'app/assets/javascripts'), entry: { + balsamiq_viewer: './blob/balsamiq_viewer.js', blob: './blob_edit/blob_bundle.js', boards: './boards/boards_bundle.js', common: './commons/index.js', @@ -47,8 +48,7 @@ var config = { notebook_viewer: './blob/notebook_viewer.js', pdf_viewer: './blob/pdf_viewer.js', pipelines: './pipelines/index.js', - balsamiq_viewer: './blob/balsamiq_viewer.js', - pipelines_graph: './pipelines/graph_bundle.js', + pipelines_details: './pipelines/pipeline_details_bundle.js', profile: './profile/profile_bundle.js', protected_branches: './protected_branches/protected_branches_bundle.js', protected_tags: './protected_tags', @@ -146,7 +146,7 @@ var config = { 'notebook_viewer', 'pdf_viewer', 'pipelines', - 'pipelines_graph', + 'pipelines_details', 'schedule_form', 'schedules_index', 'sidebar', |