Skip to content

Commit

Permalink
move assets files to the output folder root
Browse files Browse the repository at this point in the history
  • Loading branch information
Serghei Paduret committed Jul 12, 2021
1 parent b998e3c commit 767b6d1
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
19 changes: 17 additions & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,24 @@
"src/IcoMoon.ttf",
"src/manifest.json",
{
"glob": "**/*",
"glob": "background.png",
"input": "src/assets/",
"output": "/assets/"
"output": "/"
},
{
"glob": "icon64.png",
"input": "src/assets/icons/",
"output": "/"
},
{
"glob": "icon512.png",
"input": "src/assets/icons/",
"output": "/"
},
{
"glob": "bitbucket64.png",
"input": "src/assets/icons/",
"output": "/"
}
],
"styles": [
Expand Down
4 changes: 2 additions & 2 deletions src/app/components/options/options.component.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="container">
<div class="title">
<img src="assets/icons/icon64.png" alt=""/>
<img src="icon64.png" alt=""/>
<h2>Extension settings</h2>
</div>

Expand Down Expand Up @@ -53,7 +53,7 @@ <h3>Notifications</h3>

<div class="options-list">
<div class="title">
<img src="assets/icons/bitbucket64.png" alt=""/>
<img src="bitbucket64.png" alt=""/>
<h3>Bitbucket</h3>
</div>
<div class="options-item">
Expand Down
4 changes: 2 additions & 2 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"version": "0.1.12",
"description": "Extension to send notifications for bitbucket pull-request events. Tested on bitbucket server.",
"icons": {
"64": "assets/icons/icon64.png",
"512": "assets/icons/icon512.png"
"64": "icon64.png",
"512": "icon512.png"
},
"browser_action": {
"default_popup": "index.html"
Expand Down

0 comments on commit 767b6d1

Please sign in to comment.