Skip to content

Commit

Permalink
rollup support (#394)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertohuertasm committed Oct 15, 2016
1 parent 6689869 commit 9ef5a2a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Change Log

## 3.0.5 (October 15, 2016)
- Patch: stylelint icon is now white to support dark theme. ([@robertohuertasm](https://github.com/robertohuertasm) in [#392](https://github.com/robertohuertasm/vscode-icons/pull/392))
- Feature: rollup support. ([@robertohuertasm](https://github.com/robertohuertasm) in [#394](https://github.com/robertohuertasm/vscode-icons/pull/394))
- Patch: stylelint icon is now white to support dark theme. ([@robertohuertasm](https://github.com/robertohuertasm) in [#393](https://github.com/robertohuertasm/vscode-icons/pull/393))
- Feature: prolog support. ([@jens1o](https://github.com/jens1o) in [#391](https://github.com/robertohuertasm/vscode-icons/pull/391))
- Feature: wechat support. ([@coderfe](https://github.com/coderfe) in [#390](https://github.com/robertohuertasm/vscode-icons/pull/390))
- Patch: webpack production added. ([@jens1o](https://github.com/jens1o) in [#389](https://github.com/robertohuertasm/vscode-icons/pull/389))
Expand Down
4 changes: 4 additions & 0 deletions icons.json
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,9 @@
"_f_robotframework": {
"iconPath": "./icons/file_type_robotframework@2x.png"
},
"_f_rollup": {
"iconPath": "./icons/file_type_rollup@2x.png"
},
"_f_rspec": {
"iconPath": "./icons/file_type_rspec@2x.png"
},
Expand Down Expand Up @@ -1058,6 +1061,7 @@
"paket.template": "_f_paket",
"paket.local": "_f_paket",
"phpunit.xml": "_f_phpunit",
"rollup.config.js": "_f_rollup",
"stylelint.config.js": "_f_stylelint",
".travis.yml": "_f_travis",
"vagrantfile": "_f_vagrant",
Expand Down
Binary file modified icons.zip
Binary file not shown.
Binary file added icons/file_type_rollup@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/build/supportedExtensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ exports.extensions = {
{ icon: 'rest', extensions: ['rest'] },
{ icon: 'riot', extensions: ['tag'] },
{ icon: 'robotframework', extensions: ['robot'] },
{ icon: 'rollup', extensions: ['rollup.config.js'], special: 'js', contribType: ctype.filename },
{ icon: 'rspec', extensions: ['rspec'] },
{ icon: 'ruby', extensions: ['rb', 'gemspec'] },
{ icon: 'rust', extensions: ['rs'] },
Expand Down
2 changes: 1 addition & 1 deletion src/dev/replacements.js

Large diffs are not rendered by default.

0 comments on commit 9ef5a2a

Please sign in to comment.