Skip to content

Commit

Permalink
move icons to separated folders
Browse files Browse the repository at this point in the history
  • Loading branch information
krtek4 committed Nov 13, 2016
1 parent 0c8f2ff commit 6de43a1
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion gulpfile.js
Expand Up @@ -12,7 +12,7 @@ function assets(browser) {
var bootstrap = gulp.src('node_modules/chrome-bootstrap/chrome-bootstrap.css')
.pipe(gulp.dest('./build/' + browser + '/css'));

var assets = gulp.src(['*.html', 'images/**/*', 'css/**/*', '_locales/**/*'], {base:"."})
var assets = gulp.src(['*.html', 'icons/**/*', 'css/**/*', '_locales/**/*'], {base:"."})
.pipe(gulp.dest('./build/' + browser));

return merge(assets, bootstrap);
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
14 changes: 7 additions & 7 deletions vendor/common/manifest.json
Expand Up @@ -10,17 +10,17 @@
"default_locale": "en",

"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"48": "images/icon-48.png",
"64": "images/icon-64.png",
"128": "images/icon-128.png"
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"64": "icons/icon-64.png",
"128": "icons/icon-128.png"
},

"browser_action": {
"default_icon": {
"19": "images/icon-19.png",
"38": "images/icon-38.png"
"19": "icons/icon-19.png",
"38": "icons/icon-38.png"
},
"default_popup": "popin.html"
},
Expand Down

0 comments on commit 6de43a1

Please sign in to comment.